ETH Price: $3,440.26 (+7.77%)
Gas: 15 Gwei

Token

DarkNightWorld (DNW)
 

Overview

Max Total Supply

7,777 DNW

Holders

1,176

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DNW
0x9ea557a085405cE471Bc91556002e9D4F3a0e29A
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:
darkworld

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: darkworld.sol


/**
 *Submitted for verification at Etherscan.io on 2022-06-08
*/

// File: contracts/NATURE.sol

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

/**
 * @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/[email protected]


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



/**
 * @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/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



/**
 * @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/[email protected]


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



/**
 * @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/token/ERC721/extensions/[email protected]


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



/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @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/utils/[email protected]


// 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/utils/[email protected]


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



/**
 * @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/introspection/[email protected]


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



/**
 * @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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

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

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

        // 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/NATURE.sol


contract darkworld is ERC721A, Ownable {

    string public baseURI = "ipfs://QmUHh2o4ZDPB3ok2VPrfYUp9w4PbxRjR5QthppFvz7DTmz/";
    address public constant proxyRegistryAddress = 0xf73ad95B3ed22C7331331589F6caE07AA6A6dFc3;

    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_PER_FREE = 1;
    uint256 public constant FREE_MAX_SUPPLY = 7777;
    uint256 public MAX_SUPPLY = 7777;
    uint256 public price = 0.005 ether;

    bool public paused = false;

    constructor() ERC721A("DarkNightWorld", "DNW") {}

    function mint(uint256 _amount) external payable 
    {
        uint cost = price;
        uint maxfree = MAX_PER_TX;
        if(totalSupply() + _amount < FREE_MAX_SUPPLY + 1) {
            cost = 0;
            maxfree = 5;
        }
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(maxfree >= _amount , "Excess max per tx");
        require(_amount * cost <= msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

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

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }



    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }


    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function Ownermint(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }

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

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId), ".json"
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":"MintedQueryForZeroAddress","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":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"Ownermint","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620040ac60369139600990805190602001906200003592919062000223565b50611e61600a556611c37937e08000600b556000600c60006101000a81548160ff0219169083151502179055503480156200006f57600080fd5b506040518060400160405280600e81526020017f4461726b4e69676874576f726c640000000000000000000000000000000000008152506040518060400160405280600381526020017f444e5700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f492919062000223565b5080600390805190602001906200010d92919062000223565b506200011e6200014c60201b60201c565b6000819055505050620001466200013a6200015560201b60201c565b6200015d60201b60201c565b62000337565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002319062000302565b90600052602060002090601f016020900481019282620002555760008555620002a1565b82601f106200027057805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a057825182559160200191906001019062000283565b5b509050620002b09190620002b4565b5090565b5b80821115620002cf576000816000905550600101620002b5565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031b57607f821691505b602082108103620003315762000330620002d3565b5b50919050565b613d6580620003476000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106a4578063cd7c0326146106e1578063e985e9c51461070c578063f2fde38b14610749578063f43a22dc14610772576101ee565b8063a0712d681461060d578063a22cb46514610629578063b88d4fde14610652578063c6119f301461067b576101ee565b80638da5cb5b116100dc5780638da5cb5b1461056357806391b7f5ed1461058e57806395d89b41146105b7578063a035b1fe146105e2576101ee565b806370a08231146104b9578063715018a6146104f65780638069876d1461050d57806381511e2314610538576101ee565b806332cb6b0c116101855780635c975abb116101545780635c975abb1461040f5780636352211e1461043a578063698982ba146104775780636c0360eb1461048e576101ee565b806332cb6b0c1461037b5780633ccfd60b146103a657806342842e0e146103bd57806355f804b3146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea5780631e7269c51461031557806323b872dd14610352576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d09565b61079d565b6040516102279190612d51565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612d98565b61087f565b005b34801561026557600080fd5b5061026e610918565b60405161027b9190612e5e565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612eb6565b6109aa565b6040516102b89190612f24565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f6b565b610a26565b005b3480156102f657600080fd5b506102ff610b30565b60405161030c9190612fba565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612fd5565b610b47565b6040516103499190612fba565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613002565b610b59565b005b34801561038757600080fd5b50610390610b69565b60405161039d9190612fba565b60405180910390f35b3480156103b257600080fd5b506103bb610b6f565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613002565b610ca7565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061318a565b610cc7565b005b34801561041b57600080fd5b50610424610d5d565b6040516104319190612d51565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612eb6565b610d70565b60405161046e9190612f24565b60405180910390f35b34801561048357600080fd5b5061048c610d86565b005b34801561049a57600080fd5b506104a3610e16565b6040516104b09190612e5e565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612fd5565b610ea4565b6040516104ed9190612fba565b60405180910390f35b34801561050257600080fd5b5061050b610f73565b005b34801561051957600080fd5b50610522610ffb565b60405161052f9190612fba565b60405180910390f35b34801561054457600080fd5b5061054d611001565b60405161055a9190612fba565b60405180910390f35b34801561056f57600080fd5b50610578611006565b6040516105859190612f24565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612eb6565b611030565b005b3480156105c357600080fd5b506105cc6110b6565b6040516105d99190612e5e565b60405180910390f35b3480156105ee57600080fd5b506105f7611148565b6040516106049190612fba565b60405180910390f35b61062760048036038101906106229190612eb6565b61114e565b005b34801561063557600080fd5b50610650600480360381019061064b91906131d3565b611391565b005b34801561065e57600080fd5b50610679600480360381019061067491906132b4565b611508565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612eb6565b611584565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612eb6565b61160a565b6040516106d89190612e5e565b60405180910390f35b3480156106ed57600080fd5b506106f66116b2565b6040516107039190612f24565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613337565b6116ca565b6040516107409190612d51565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fd5565b6117ae565b005b34801561077e57600080fd5b506107876118a5565b6040516107949190612fba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108785750610877826118aa565b5b9050919050565b610887611914565b73ffffffffffffffffffffffffffffffffffffffff166108a5611006565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f2906133c3565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461092790613412565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613412565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b58261191c565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab7611914565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae95750610ae781610ae2611914565b6116ca565b155b15610b20576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2b83838361196a565b505050565b6000610b3a611a1c565b6001546000540303905090565b6000610b5282611a25565b9050919050565b610b64838383611af4565b505050565b600a5481565b610b77611914565b73ffffffffffffffffffffffffffffffffffffffff16610b95611006565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906133c3565b60405180910390fd5b60004790506000610bfa611914565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c1d90613474565b60006040518083038185875af1925050503d8060008114610c5a576040519150601f19603f3d011682016040523d82523d6000602084013e610c5f565b606091505b5050905080610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906134d5565b60405180910390fd5b5050565b610cc283838360405180602001604052806000815250611508565b505050565b610ccf611914565b73ffffffffffffffffffffffffffffffffffffffff16610ced611006565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906133c3565b60405180910390fd5b8060099080519060200190610d59929190612bb7565b5050565b600c60009054906101000a900460ff1681565b6000610d7b82611fe3565b600001519050919050565b610d8e611914565b73ffffffffffffffffffffffffffffffffffffffff16610dac611006565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906133c3565b60405180910390fd5b610e14610e0d611914565b6001612272565b565b60098054610e2390613412565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90613412565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f7b611914565b73ffffffffffffffffffffffffffffffffffffffff16610f99611006565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906133c3565b60405180910390fd5b610ff96000612290565b565b611e6181565b600181565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611038611914565b73ffffffffffffffffffffffffffffffffffffffff16611056611006565b73ffffffffffffffffffffffffffffffffffffffff16146110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906133c3565b60405180910390fd5b80600b8190555050565b6060600380546110c590613412565b80601f01602080910402602001604051908101604052809291908181526020018280546110f190613412565b801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a90506001611e6161116a9190613524565b83611173610b30565b61117d9190613524565b101561118c5760009150600590505b6000611196611914565b9050600c60009054906101000a900460ff16156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906135c6565b60405180910390fd5b836111f1610b30565b6111fb9190613524565b600a54101561123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613632565b60405180910390fd5b60008411611282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112799061369e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e79061370a565b60405180910390fd5b83821015611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613776565b60405180910390fd5b3483856113409190613796565b1115611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061383c565b60405180910390fd5b61138b8185612272565b50505050565b611399611914565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061140a611914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b7611914565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc9190612d51565b60405180910390a35050565b611513848484611af4565b6115328373ffffffffffffffffffffffffffffffffffffffff16612356565b8015611547575061154584848484612379565b155b1561157e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61158c611914565b73ffffffffffffffffffffffffffffffffffffffff166115aa611006565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906133c3565b60405180910390fd5b80600a8190555050565b60606116158261191c565b611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b906138a8565b60405180910390fd5b60006009805461166390613412565b90501161167f57604051806020016040528060008152506116ab565b600961168a836124c9565b60405160200161169b9291906139e4565b6040516020818303038152906040525b9050919050565b73f73ad95b3ed22c7331331589f6cae07aa6a6dfc381565b60008073f73ad95b3ed22c7331331589f6cae07aa6a6dfc390508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117349190612f24565b602060405180830381865afa158015611751573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117759190613a51565b73ffffffffffffffffffffffffffffffffffffffff160361179a5760019150506117a8565b6117a48484612629565b9150505b92915050565b6117b6611914565b73ffffffffffffffffffffffffffffffffffffffff166117d4611006565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906133c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613af0565b60405180910390fd5b6118a281612290565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611927611a1c565b11158015611936575060005482105b8015611963575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8c576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611aff82611fe3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b26611914565b73ffffffffffffffffffffffffffffffffffffffff161480611b595750611b588260000151611b53611914565b6116ca565b5b80611b9e5750611b67611914565b73ffffffffffffffffffffffffffffffffffffffff16611b86846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bd7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c40576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb385858560016126bd565b611cc3600084846000015161196a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f7357600054811015611f725782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fdc85858560016126c3565b5050505050565b611feb612c3d565b600082905080611ff9611a1c565b11158015612008575060005481105b1561223b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161223957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211d57809250505061226d565b5b60011561223857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223357809250505061226d565b61211e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61228c8282604051806020016040528060008152506126c9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261239f611914565b8786866040518563ffffffff1660e01b81526004016123c19493929190613b65565b6020604051808303816000875af19250505080156123fd57506040513d601f19601f820116820180604052508101906123fa9190613bc6565b60015b612476573d806000811461242d576040519150601f19603f3d011682016040523d82523d6000602084013e612432565b606091505b50600081510361246e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612510576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612624565b600082905060005b6000821461254257808061252b90613bf3565b915050600a8261253b9190613c6a565b9150612518565b60008167ffffffffffffffff81111561255e5761255d61305f565b5b6040519080825280601f01601f1916602001820160405280156125905781602001600182028036833780820191505090505b5090505b6000851461261d576001826125a99190613c9b565b9150600a856125b89190613ccf565b60306125c49190613524565b60f81b8183815181106125da576125d9613d00565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126169190613c6a565b9450612594565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126d683838360016126db565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612747576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612781576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278e60008683876126bd565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061281b5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612865575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156128a057600080600090505b615ecd81101561289d57818061288790613bf3565b925050808061289590613bf3565b915050612872565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a6a5750612a698773ffffffffffffffffffffffffffffffffffffffff16612356565b5b15612b2f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612adf6000888480600101955088612379565b612b15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612a70578260005414612b2a57600080fd5b612b9a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b30575b816000819055505050612bb060008683876126c3565b5050505050565b828054612bc390613412565b90600052602060002090601f016020900481019282612be55760008555612c2c565b82601f10612bfe57805160ff1916838001178555612c2c565b82800160010185558215612c2c579182015b82811115612c2b578251825591602001919060010190612c10565b5b509050612c399190612c80565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c99576000816000905550600101612c81565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce681612cb1565b8114612cf157600080fd5b50565b600081359050612d0381612cdd565b92915050565b600060208284031215612d1f57612d1e612ca7565b5b6000612d2d84828501612cf4565b91505092915050565b60008115159050919050565b612d4b81612d36565b82525050565b6000602082019050612d666000830184612d42565b92915050565b612d7581612d36565b8114612d8057600080fd5b50565b600081359050612d9281612d6c565b92915050565b600060208284031215612dae57612dad612ca7565b5b6000612dbc84828501612d83565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dff578082015181840152602081019050612de4565b83811115612e0e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3082612dc5565b612e3a8185612dd0565b9350612e4a818560208601612de1565b612e5381612e14565b840191505092915050565b60006020820190508181036000830152612e788184612e25565b905092915050565b6000819050919050565b612e9381612e80565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612ca7565b5b6000612eda84828501612ea1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0e82612ee3565b9050919050565b612f1e81612f03565b82525050565b6000602082019050612f396000830184612f15565b92915050565b612f4881612f03565b8114612f5357600080fd5b50565b600081359050612f6581612f3f565b92915050565b60008060408385031215612f8257612f81612ca7565b5b6000612f9085828601612f56565b9250506020612fa185828601612ea1565b9150509250929050565b612fb481612e80565b82525050565b6000602082019050612fcf6000830184612fab565b92915050565b600060208284031215612feb57612fea612ca7565b5b6000612ff984828501612f56565b91505092915050565b60008060006060848603121561301b5761301a612ca7565b5b600061302986828701612f56565b935050602061303a86828701612f56565b925050604061304b86828701612ea1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309782612e14565b810181811067ffffffffffffffff821117156130b6576130b561305f565b5b80604052505050565b60006130c9612c9d565b90506130d5828261308e565b919050565b600067ffffffffffffffff8211156130f5576130f461305f565b5b6130fe82612e14565b9050602081019050919050565b82818337600083830152505050565b600061312d613128846130da565b6130bf565b9050828152602081018484840111156131495761314861305a565b5b61315484828561310b565b509392505050565b600082601f83011261317157613170613055565b5b813561318184826020860161311a565b91505092915050565b6000602082840312156131a05761319f612ca7565b5b600082013567ffffffffffffffff8111156131be576131bd612cac565b5b6131ca8482850161315c565b91505092915050565b600080604083850312156131ea576131e9612ca7565b5b60006131f885828601612f56565b925050602061320985828601612d83565b9150509250929050565b600067ffffffffffffffff82111561322e5761322d61305f565b5b61323782612e14565b9050602081019050919050565b600061325761325284613213565b6130bf565b9050828152602081018484840111156132735761327261305a565b5b61327e84828561310b565b509392505050565b600082601f83011261329b5761329a613055565b5b81356132ab848260208601613244565b91505092915050565b600080600080608085870312156132ce576132cd612ca7565b5b60006132dc87828801612f56565b94505060206132ed87828801612f56565b93505060406132fe87828801612ea1565b925050606085013567ffffffffffffffff81111561331f5761331e612cac565b5b61332b87828801613286565b91505092959194509250565b6000806040838503121561334e5761334d612ca7565b5b600061335c85828601612f56565b925050602061336d85828601612f56565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133ad602083612dd0565b91506133b882613377565b602082019050919050565b600060208201905081810360008301526133dc816133a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342a57607f821691505b60208210810361343d5761343c6133e3565b5b50919050565b600081905092915050565b50565b600061345e600083613443565b91506134698261344e565b600082019050919050565b600061347f82613451565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006134bf600e83612dd0565b91506134ca82613489565b602082019050919050565b600060208201905081810360008301526134ee816134b2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352f82612e80565b915061353a83612e80565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356f5761356e6134f5565b5b828201905092915050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006135b0600683612dd0565b91506135bb8261357a565b602082019050919050565b600060208201905081810360008301526135df816135a3565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061361c601283612dd0565b9150613627826135e6565b602082019050919050565b6000602082019050818103600083015261364b8161360f565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613688600a83612dd0565b915061369382613652565b602082019050919050565b600060208201905081810360008301526136b78161367b565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006136f4600c83612dd0565b91506136ff826136be565b602082019050919050565b60006020820190508181036000830152613723816136e7565b9050919050565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b6000613760601183612dd0565b915061376b8261372a565b602082019050919050565b6000602082019050818103600083015261378f81613753565b9050919050565b60006137a182612e80565b91506137ac83612e80565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e5576137e46134f5565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613826601683612dd0565b9150613831826137f0565b602082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613892601583612dd0565b915061389d8261385c565b602082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138f581613412565b6138ff81866138c8565b9450600182166000811461391a576001811461392b5761395e565b60ff1983168652818601935061395e565b613934856138d3565b60005b8381101561395657815481890152600182019150602081019050613937565b838801955050505b50505092915050565b600061397282612dc5565b61397c81856138c8565b935061398c818560208601612de1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139ce6005836138c8565b91506139d982613998565b600582019050919050565b60006139f082856138e8565b91506139fc8284613967565b9150613a07826139c1565b91508190509392505050565b6000613a1e82612f03565b9050919050565b613a2e81613a13565b8114613a3957600080fd5b50565b600081519050613a4b81613a25565b92915050565b600060208284031215613a6757613a66612ca7565b5b6000613a7584828501613a3c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ada602683612dd0565b9150613ae582613a7e565b604082019050919050565b60006020820190508181036000830152613b0981613acd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3782613b10565b613b418185613b1b565b9350613b51818560208601612de1565b613b5a81612e14565b840191505092915050565b6000608082019050613b7a6000830187612f15565b613b876020830186612f15565b613b946040830185612fab565b8181036060830152613ba68184613b2c565b905095945050505050565b600081519050613bc081612cdd565b92915050565b600060208284031215613bdc57613bdb612ca7565b5b6000613bea84828501613bb1565b91505092915050565b6000613bfe82612e80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3057613c2f6134f5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7582612e80565b9150613c8083612e80565b925082613c9057613c8f613c3b565b5b828204905092915050565b6000613ca682612e80565b9150613cb183612e80565b925082821015613cc457613cc36134f5565b5b828203905092915050565b6000613cda82612e80565b9150613ce583612e80565b925082613cf557613cf4613c3b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dbe74782967d68e7ced03e34882643bf0881d6d09a36b5395375f9315bd976d864736f6c634300080e0033697066733a2f2f516d554868326f345a445042336f6b3256507266595570397734506278526a5235517468707046767a3744546d7a2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106a4578063cd7c0326146106e1578063e985e9c51461070c578063f2fde38b14610749578063f43a22dc14610772576101ee565b8063a0712d681461060d578063a22cb46514610629578063b88d4fde14610652578063c6119f301461067b576101ee565b80638da5cb5b116100dc5780638da5cb5b1461056357806391b7f5ed1461058e57806395d89b41146105b7578063a035b1fe146105e2576101ee565b806370a08231146104b9578063715018a6146104f65780638069876d1461050d57806381511e2314610538576101ee565b806332cb6b0c116101855780635c975abb116101545780635c975abb1461040f5780636352211e1461043a578063698982ba146104775780636c0360eb1461048e576101ee565b806332cb6b0c1461037b5780633ccfd60b146103a657806342842e0e146103bd57806355f804b3146103e6576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806318160ddd146102ea5780631e7269c51461031557806323b872dd14610352576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d09565b61079d565b6040516102279190612d51565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612d98565b61087f565b005b34801561026557600080fd5b5061026e610918565b60405161027b9190612e5e565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612eb6565b6109aa565b6040516102b89190612f24565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f6b565b610a26565b005b3480156102f657600080fd5b506102ff610b30565b60405161030c9190612fba565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612fd5565b610b47565b6040516103499190612fba565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613002565b610b59565b005b34801561038757600080fd5b50610390610b69565b60405161039d9190612fba565b60405180910390f35b3480156103b257600080fd5b506103bb610b6f565b005b3480156103c957600080fd5b506103e460048036038101906103df9190613002565b610ca7565b005b3480156103f257600080fd5b5061040d6004803603810190610408919061318a565b610cc7565b005b34801561041b57600080fd5b50610424610d5d565b6040516104319190612d51565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612eb6565b610d70565b60405161046e9190612f24565b60405180910390f35b34801561048357600080fd5b5061048c610d86565b005b34801561049a57600080fd5b506104a3610e16565b6040516104b09190612e5e565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612fd5565b610ea4565b6040516104ed9190612fba565b60405180910390f35b34801561050257600080fd5b5061050b610f73565b005b34801561051957600080fd5b50610522610ffb565b60405161052f9190612fba565b60405180910390f35b34801561054457600080fd5b5061054d611001565b60405161055a9190612fba565b60405180910390f35b34801561056f57600080fd5b50610578611006565b6040516105859190612f24565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612eb6565b611030565b005b3480156105c357600080fd5b506105cc6110b6565b6040516105d99190612e5e565b60405180910390f35b3480156105ee57600080fd5b506105f7611148565b6040516106049190612fba565b60405180910390f35b61062760048036038101906106229190612eb6565b61114e565b005b34801561063557600080fd5b50610650600480360381019061064b91906131d3565b611391565b005b34801561065e57600080fd5b50610679600480360381019061067491906132b4565b611508565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612eb6565b611584565b005b3480156106b057600080fd5b506106cb60048036038101906106c69190612eb6565b61160a565b6040516106d89190612e5e565b60405180910390f35b3480156106ed57600080fd5b506106f66116b2565b6040516107039190612f24565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e9190613337565b6116ca565b6040516107409190612d51565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190612fd5565b6117ae565b005b34801561077e57600080fd5b506107876118a5565b6040516107949190612fba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108785750610877826118aa565b5b9050919050565b610887611914565b73ffffffffffffffffffffffffffffffffffffffff166108a5611006565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f2906133c3565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60606002805461092790613412565b80601f016020809104026020016040519081016040528092919081815260200182805461095390613412565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b5050505050905090565b60006109b58261191c565b6109eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab7611914565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ae95750610ae781610ae2611914565b6116ca565b155b15610b20576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2b83838361196a565b505050565b6000610b3a611a1c565b6001546000540303905090565b6000610b5282611a25565b9050919050565b610b64838383611af4565b505050565b600a5481565b610b77611914565b73ffffffffffffffffffffffffffffffffffffffff16610b95611006565b73ffffffffffffffffffffffffffffffffffffffff1614610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906133c3565b60405180910390fd5b60004790506000610bfa611914565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c1d90613474565b60006040518083038185875af1925050503d8060008114610c5a576040519150601f19603f3d011682016040523d82523d6000602084013e610c5f565b606091505b5050905080610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a906134d5565b60405180910390fd5b5050565b610cc283838360405180602001604052806000815250611508565b505050565b610ccf611914565b73ffffffffffffffffffffffffffffffffffffffff16610ced611006565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906133c3565b60405180910390fd5b8060099080519060200190610d59929190612bb7565b5050565b600c60009054906101000a900460ff1681565b6000610d7b82611fe3565b600001519050919050565b610d8e611914565b73ffffffffffffffffffffffffffffffffffffffff16610dac611006565b73ffffffffffffffffffffffffffffffffffffffff1614610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906133c3565b60405180910390fd5b610e14610e0d611914565b6001612272565b565b60098054610e2390613412565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4f90613412565b8015610e9c5780601f10610e7157610100808354040283529160200191610e9c565b820191906000526020600020905b815481529060010190602001808311610e7f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f0b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f7b611914565b73ffffffffffffffffffffffffffffffffffffffff16610f99611006565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906133c3565b60405180910390fd5b610ff96000612290565b565b611e6181565b600181565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611038611914565b73ffffffffffffffffffffffffffffffffffffffff16611056611006565b73ffffffffffffffffffffffffffffffffffffffff16146110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a3906133c3565b60405180910390fd5b80600b8190555050565b6060600380546110c590613412565b80601f01602080910402602001604051908101604052809291908181526020018280546110f190613412565b801561113e5780601f106111135761010080835404028352916020019161113e565b820191906000526020600020905b81548152906001019060200180831161112157829003601f168201915b5050505050905090565b600b5481565b6000600b5490506000600a90506001611e6161116a9190613524565b83611173610b30565b61117d9190613524565b101561118c5760009150600590505b6000611196611914565b9050600c60009054906101000a900460ff16156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906135c6565b60405180910390fd5b836111f1610b30565b6111fb9190613524565b600a54101561123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613632565b60405180910390fd5b60008411611282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112799061369e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e79061370a565b60405180910390fd5b83821015611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a90613776565b60405180910390fd5b3483856113409190613796565b1115611381576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113789061383c565b60405180910390fd5b61138b8185612272565b50505050565b611399611914565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113fd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061140a611914565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114b7611914565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114fc9190612d51565b60405180910390a35050565b611513848484611af4565b6115328373ffffffffffffffffffffffffffffffffffffffff16612356565b8015611547575061154584848484612379565b155b1561157e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b61158c611914565b73ffffffffffffffffffffffffffffffffffffffff166115aa611006565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906133c3565b60405180910390fd5b80600a8190555050565b60606116158261191c565b611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b906138a8565b60405180910390fd5b60006009805461166390613412565b90501161167f57604051806020016040528060008152506116ab565b600961168a836124c9565b60405160200161169b9291906139e4565b6040516020818303038152906040525b9050919050565b73f73ad95b3ed22c7331331589f6cae07aa6a6dfc381565b60008073f73ad95b3ed22c7331331589f6cae07aa6a6dfc390508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117349190612f24565b602060405180830381865afa158015611751573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117759190613a51565b73ffffffffffffffffffffffffffffffffffffffff160361179a5760019150506117a8565b6117a48484612629565b9150505b92915050565b6117b6611914565b73ffffffffffffffffffffffffffffffffffffffff166117d4611006565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906133c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613af0565b60405180910390fd5b6118a281612290565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611927611a1c565b11158015611936575060005482105b8015611963575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8c576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611aff82611fe3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b26611914565b73ffffffffffffffffffffffffffffffffffffffff161480611b595750611b588260000151611b53611914565b6116ca565b5b80611b9e5750611b67611914565b73ffffffffffffffffffffffffffffffffffffffff16611b86846109aa565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bd7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c40576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ca6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb385858560016126bd565b611cc3600084846000015161196a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f7357600054811015611f725782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fdc85858560016126c3565b5050505050565b611feb612c3d565b600082905080611ff9611a1c565b11158015612008575060005481105b1561223b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161223957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461211d57809250505061226d565b5b60011561223857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461223357809250505061226d565b61211e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b61228c8282604051806020016040528060008152506126c9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261239f611914565b8786866040518563ffffffff1660e01b81526004016123c19493929190613b65565b6020604051808303816000875af19250505080156123fd57506040513d601f19601f820116820180604052508101906123fa9190613bc6565b60015b612476573d806000811461242d576040519150601f19603f3d011682016040523d82523d6000602084013e612432565b606091505b50600081510361246e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203612510576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612624565b600082905060005b6000821461254257808061252b90613bf3565b915050600a8261253b9190613c6a565b9150612518565b60008167ffffffffffffffff81111561255e5761255d61305f565b5b6040519080825280601f01601f1916602001820160405280156125905781602001600182028036833780820191505090505b5090505b6000851461261d576001826125a99190613c9b565b9150600a856125b89190613ccf565b60306125c49190613524565b60f81b8183815181106125da576125d9613d00565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126169190613c6a565b9450612594565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126d683838360016126db565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612747576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612781576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278e60008683876126bd565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061281b5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612865575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156128a057600080600090505b615ecd81101561289d57818061288790613bf3565b925050808061289590613bf3565b915050612872565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a6a5750612a698773ffffffffffffffffffffffffffffffffffffffff16612356565b5b15612b2f575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612adf6000888480600101955088612379565b612b15576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612a70578260005414612b2a57600080fd5b612b9a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b30575b816000819055505050612bb060008683876126c3565b5050505050565b828054612bc390613412565b90600052602060002090601f016020900481019282612be55760008555612c2c565b82601f10612bfe57805160ff1916838001178555612c2c565b82800160010185558215612c2c579182015b82811115612c2b578251825591602001919060010190612c10565b5b509050612c399190612c80565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c99576000816000905550600101612c81565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce681612cb1565b8114612cf157600080fd5b50565b600081359050612d0381612cdd565b92915050565b600060208284031215612d1f57612d1e612ca7565b5b6000612d2d84828501612cf4565b91505092915050565b60008115159050919050565b612d4b81612d36565b82525050565b6000602082019050612d666000830184612d42565b92915050565b612d7581612d36565b8114612d8057600080fd5b50565b600081359050612d9281612d6c565b92915050565b600060208284031215612dae57612dad612ca7565b5b6000612dbc84828501612d83565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dff578082015181840152602081019050612de4565b83811115612e0e576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3082612dc5565b612e3a8185612dd0565b9350612e4a818560208601612de1565b612e5381612e14565b840191505092915050565b60006020820190508181036000830152612e788184612e25565b905092915050565b6000819050919050565b612e9381612e80565b8114612e9e57600080fd5b50565b600081359050612eb081612e8a565b92915050565b600060208284031215612ecc57612ecb612ca7565b5b6000612eda84828501612ea1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0e82612ee3565b9050919050565b612f1e81612f03565b82525050565b6000602082019050612f396000830184612f15565b92915050565b612f4881612f03565b8114612f5357600080fd5b50565b600081359050612f6581612f3f565b92915050565b60008060408385031215612f8257612f81612ca7565b5b6000612f9085828601612f56565b9250506020612fa185828601612ea1565b9150509250929050565b612fb481612e80565b82525050565b6000602082019050612fcf6000830184612fab565b92915050565b600060208284031215612feb57612fea612ca7565b5b6000612ff984828501612f56565b91505092915050565b60008060006060848603121561301b5761301a612ca7565b5b600061302986828701612f56565b935050602061303a86828701612f56565b925050604061304b86828701612ea1565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61309782612e14565b810181811067ffffffffffffffff821117156130b6576130b561305f565b5b80604052505050565b60006130c9612c9d565b90506130d5828261308e565b919050565b600067ffffffffffffffff8211156130f5576130f461305f565b5b6130fe82612e14565b9050602081019050919050565b82818337600083830152505050565b600061312d613128846130da565b6130bf565b9050828152602081018484840111156131495761314861305a565b5b61315484828561310b565b509392505050565b600082601f83011261317157613170613055565b5b813561318184826020860161311a565b91505092915050565b6000602082840312156131a05761319f612ca7565b5b600082013567ffffffffffffffff8111156131be576131bd612cac565b5b6131ca8482850161315c565b91505092915050565b600080604083850312156131ea576131e9612ca7565b5b60006131f885828601612f56565b925050602061320985828601612d83565b9150509250929050565b600067ffffffffffffffff82111561322e5761322d61305f565b5b61323782612e14565b9050602081019050919050565b600061325761325284613213565b6130bf565b9050828152602081018484840111156132735761327261305a565b5b61327e84828561310b565b509392505050565b600082601f83011261329b5761329a613055565b5b81356132ab848260208601613244565b91505092915050565b600080600080608085870312156132ce576132cd612ca7565b5b60006132dc87828801612f56565b94505060206132ed87828801612f56565b93505060406132fe87828801612ea1565b925050606085013567ffffffffffffffff81111561331f5761331e612cac565b5b61332b87828801613286565b91505092959194509250565b6000806040838503121561334e5761334d612ca7565b5b600061335c85828601612f56565b925050602061336d85828601612f56565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133ad602083612dd0565b91506133b882613377565b602082019050919050565b600060208201905081810360008301526133dc816133a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342a57607f821691505b60208210810361343d5761343c6133e3565b5b50919050565b600081905092915050565b50565b600061345e600083613443565b91506134698261344e565b600082019050919050565b600061347f82613451565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006134bf600e83612dd0565b91506134ca82613489565b602082019050919050565b600060208201905081810360008301526134ee816134b2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061352f82612e80565b915061353a83612e80565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561356f5761356e6134f5565b5b828201905092915050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006135b0600683612dd0565b91506135bb8261357a565b602082019050919050565b600060208201905081810360008301526135df816135a3565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061361c601283612dd0565b9150613627826135e6565b602082019050919050565b6000602082019050818103600083015261364b8161360f565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613688600a83612dd0565b915061369382613652565b602082019050919050565b600060208201905081810360008301526136b78161367b565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006136f4600c83612dd0565b91506136ff826136be565b602082019050919050565b60006020820190508181036000830152613723816136e7565b9050919050565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b6000613760601183612dd0565b915061376b8261372a565b602082019050919050565b6000602082019050818103600083015261378f81613753565b9050919050565b60006137a182612e80565b91506137ac83612e80565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e5576137e46134f5565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613826601683612dd0565b9150613831826137f0565b602082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613892601583612dd0565b915061389d8261385c565b602082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138f581613412565b6138ff81866138c8565b9450600182166000811461391a576001811461392b5761395e565b60ff1983168652818601935061395e565b613934856138d3565b60005b8381101561395657815481890152600182019150602081019050613937565b838801955050505b50505092915050565b600061397282612dc5565b61397c81856138c8565b935061398c818560208601612de1565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139ce6005836138c8565b91506139d982613998565b600582019050919050565b60006139f082856138e8565b91506139fc8284613967565b9150613a07826139c1565b91508190509392505050565b6000613a1e82612f03565b9050919050565b613a2e81613a13565b8114613a3957600080fd5b50565b600081519050613a4b81613a25565b92915050565b600060208284031215613a6757613a66612ca7565b5b6000613a7584828501613a3c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ada602683612dd0565b9150613ae582613a7e565b604082019050919050565b60006020820190508181036000830152613b0981613acd565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b3782613b10565b613b418185613b1b565b9350613b51818560208601612de1565b613b5a81612e14565b840191505092915050565b6000608082019050613b7a6000830187612f15565b613b876020830186612f15565b613b946040830185612fab565b8181036060830152613ba68184613b2c565b905095945050505050565b600081519050613bc081612cdd565b92915050565b600060208284031215613bdc57613bdb612ca7565b5b6000613bea84828501613bb1565b91505092915050565b6000613bfe82612e80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c3057613c2f6134f5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7582612e80565b9150613c8083612e80565b925082613c9057613c8f613c3b565b5b828204905092915050565b6000613ca682612e80565b9150613cb183612e80565b925082821015613cc457613cc36134f5565b5b828203905092915050565b6000613cda82612e80565b9150613ce583612e80565b925082613cf557613cf4613c3b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dbe74782967d68e7ced03e34882643bf0881d6d09a36b5395375f9315bd976d864736f6c634300080e0033

Deployed Bytecode Sourcemap

46194:2963:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28315:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48616:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31700:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33203:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32766:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27564:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47995:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34060:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46573:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48116:209;;;;;;;;;;;;;:::i;:::-;;34301:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48705:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46655:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31509:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48335:83;;;;;;;;;;;;;:::i;:::-;;46242:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28684:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2789:103;;;;;;;;;;;;;:::i;:::-;;46520:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46473:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2138:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48522:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31869:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46612:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46747:678;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33479:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34557:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48426:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48813:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46329:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47542:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3047:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46427:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28315:305;28417:4;28469:25;28454:40;;;:11;:40;;;;:105;;;;28526:33;28511:48;;;:11;:48;;;;28454:105;:158;;;;28576:36;28600:11;28576:23;:36::i;:::-;28454:158;28434:178;;28315:305;;;:::o;48616:81::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48683:6:::1;48674;;:15;;;;;;;;;;;;;;;;;;48616:81:::0;:::o;31700:100::-;31754:13;31787:5;31780:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31700:100;:::o;33203:204::-;33271:7;33296:16;33304:7;33296;:16::i;:::-;33291:64;;33321:34;;;;;;;;;;;;;;33291:64;33375:15;:24;33391:7;33375:24;;;;;;;;;;;;;;;;;;;;;33368:31;;33203:204;;;:::o;32766:371::-;32839:13;32855:24;32871:7;32855:15;:24::i;:::-;32839:40;;32900:5;32894:11;;:2;:11;;;32890:48;;32914:24;;;;;;;;;;;;;;32890:48;32971:5;32955:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32981:37;32998:5;33005:12;:10;:12::i;:::-;32981:16;:37::i;:::-;32980:38;32955:63;32951:138;;;33042:35;;;;;;;;;;;;;;32951:138;33101:28;33110:2;33114:7;33123:5;33101:8;:28::i;:::-;32828:309;32766:371;;:::o;27564:303::-;27608:7;27833:15;:13;:15::i;:::-;27818:12;;27802:13;;:28;:46;27795:53;;27564:303;:::o;47995:109::-;48048:7;48075:21;48089:6;48075:13;:21::i;:::-;48068:28;;47995:109;;;:::o;34060:170::-;34194:28;34204:4;34210:2;34214:7;34194:9;:28::i;:::-;34060:170;;;:::o;46573:32::-;;;;:::o;48116:209::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48166:15:::1;48184:21;48166:39;;48217:12;48235;:10;:12::i;:::-;:17;;48260:7;48235:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48216:56;;;48291:7;48283:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48155:170;;48116:209::o:0;34301:185::-;34439:39;34456:4;34462:2;34466:7;34439:39;;;;;;;;;;;;:16;:39::i;:::-;34301:185;;;:::o;48705:100::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48789:8:::1;48779:7;:18;;;;;;;;;;;;:::i;:::-;;48705:100:::0;:::o;46655:26::-;;;;;;;;;;;;;:::o;31509:124::-;31573:7;31600:20;31612:7;31600:11;:20::i;:::-;:25;;;31593:32;;31509:124;;;:::o;48335:83::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48384:26:::1;48394:12;:10;:12::i;:::-;48408:1;48384:9;:26::i;:::-;48335:83::o:0;46242:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28684:206::-;28748:7;28789:1;28772:19;;:5;:19;;;28768:60;;28800:28;;;;;;;;;;;;;;28768:60;28854:12;:19;28867:5;28854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28846:36;;28839:43;;28684:206;;;:::o;2789:103::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2854:30:::1;2881:1;2854:18;:30::i;:::-;2789:103::o:0;46520:46::-;46562:4;46520:46;:::o;46473:40::-;46512:1;46473:40;:::o;2138:87::-;2184:7;2211:6;;;;;;;;;;;2204:13;;2138:87;:::o;48522:86::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48594:6:::1;48586:5;:14;;;;48522:86:::0;:::o;31869:104::-;31925:13;31958:7;31951:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31869:104;:::o;46612:34::-;;;;:::o;46747:678::-;46812:9;46824:5;;46812:17;;46840:12;46464:2;46840:25;;46923:1;46562:4;46905:19;;;;:::i;:::-;46895:7;46879:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:45;46876:111;;;46948:1;46941:8;;46974:1;46964:11;;46876:111;46997:15;47015:12;:10;:12::i;:::-;46997:30;;47047:6;;;;;;;;;;;47046:7;47038:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47113:7;47097:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47083:10;;:37;;47075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47172:1;47162:7;:11;47154:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47220:7;47207:20;;:9;:20;;;47199:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47274:7;47263;:18;;47255:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;47341:9;47333:4;47323:7;:14;;;;:::i;:::-;:27;;47315:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47390:27;47400:7;47409;47390:9;:27::i;:::-;46801:624;;;46747:678;:::o;33479:279::-;33582:12;:10;:12::i;:::-;33570:24;;:8;:24;;;33566:54;;33603:17;;;;;;;;;;;;;;33566:54;33678:8;33633:18;:32;33652:12;:10;:12::i;:::-;33633:32;;;;;;;;;;;;;;;:42;33666:8;33633:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33731:8;33702:48;;33717:12;:10;:12::i;:::-;33702:48;;;33741:8;33702:48;;;;;;:::i;:::-;;;;;;;;33479:279;;:::o;34557:369::-;34724:28;34734:4;34740:2;34744:7;34724:9;:28::i;:::-;34767:15;:2;:13;;;:15::i;:::-;:76;;;;;34787:56;34818:4;34824:2;34828:7;34837:5;34787:30;:56::i;:::-;34786:57;34767:76;34763:156;;;34867:40;;;;;;;;;;;;;;34763:156;34557:369;;;;:::o;48426:88::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48502:4:::1;48489:10;:17;;;;48426:88:::0;:::o;48813:341::-;48879:13;48913:17;48921:8;48913:7;:17::i;:::-;48905:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48998:1;48980:7;48974:21;;;;;:::i;:::-;;;:25;:172;;;;;;;;;;;;;;;;;49056:7;49080:26;49097:8;49080:16;:26::i;:::-;49023:107;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48974:172;48967:179;;48813:341;;;:::o;46329:89::-;46376:42;46329:89;:::o;47542:445::-;47667:4;47752:27;46376:42;47752:65;;47873:8;47832:49;;47840:13;:21;;;47862:5;47840:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47832:49;;;47828:93;;47905:4;47898:11;;;;;47828:93;47940:39;47963:5;47970:8;47940:22;:39::i;:::-;47933:46;;;47542:445;;;;;:::o;3047:201::-;2369:12;:10;:12::i;:::-;2358:23;;:7;:5;:7::i;:::-;:23;;;2350:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3156:1:::1;3136:22;;:8;:22;;::::0;3128:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3212:28;3231:8;3212:18;:28::i;:::-;3047:201:::0;:::o;46427:39::-;46464:2;46427:39;:::o;23696:157::-;23781:4;23820:25;23805:40;;;:11;:40;;;;23798:47;;23696:157;;;:::o;879:98::-;932:7;959:10;952:17;;879:98;:::o;35181:187::-;35238:4;35281:7;35262:15;:13;:15::i;:::-;:26;;:53;;;;;35302:13;;35292:7;:23;35262:53;:98;;;;;35333:11;:20;35345:7;35333:20;;;;;;;;;;;:27;;;;;;;;;;;;35332:28;35262:98;35255:105;;35181:187;;;:::o;43172:196::-;43314:2;43287:15;:24;43303:7;43287:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43352:7;43348:2;43332:28;;43341:5;43332:28;;;;;;;;;;;;43172:196;;;:::o;47433:101::-;47498:7;47525:1;47518:8;;47433:101;:::o;28972:207::-;29033:7;29074:1;29057:19;;:5;:19;;;29053:59;;29085:27;;;;;;;;;;;;;;29053:59;29138:12;:19;29151:5;29138:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29130:41;;29123:48;;28972:207;;;:::o;38674:2112::-;38789:35;38827:20;38839:7;38827:11;:20::i;:::-;38789:58;;38860:22;38902:13;:18;;;38886:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38937:50;38954:13;:18;;;38974:12;:10;:12::i;:::-;38937:16;:50::i;:::-;38886:101;:154;;;;39028:12;:10;:12::i;:::-;39004:36;;:20;39016:7;39004:11;:20::i;:::-;:36;;;38886:154;38860:181;;39059:17;39054:66;;39085:35;;;;;;;;;;;;;;39054:66;39157:4;39135:26;;:13;:18;;;:26;;;39131:67;;39170:28;;;;;;;;;;;;;;39131:67;39227:1;39213:16;;:2;:16;;;39209:52;;39238:23;;;;;;;;;;;;;;39209:52;39274:43;39296:4;39302:2;39306:7;39315:1;39274:21;:43::i;:::-;39382:49;39399:1;39403:7;39412:13;:18;;;39382:8;:49::i;:::-;39757:1;39727:12;:18;39740:4;39727:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39801:1;39773:12;:16;39786:2;39773:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39847:2;39819:11;:20;39831:7;39819:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39909:15;39864:11;:20;39876:7;39864:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40177:19;40209:1;40199:7;:11;40177:33;;40270:1;40229:43;;:11;:24;40241:11;40229:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40225:445;;40454:13;;40440:11;:27;40436:219;;;40524:13;:18;;;40492:11;:24;40504:11;40492:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40607:13;:28;;;40565:11;:24;40577:11;40565:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40436:219;40225:445;39702:979;40717:7;40713:2;40698:27;;40707:4;40698:27;;;;;;;;;;;;40736:42;40757:4;40763:2;40767:7;40776:1;40736:20;:42::i;:::-;38778:2008;;38674:2112;;;:::o;30339:1108::-;30400:21;;:::i;:::-;30434:12;30449:7;30434:22;;30517:4;30498:15;:13;:15::i;:::-;:23;;:47;;;;;30532:13;;30525:4;:20;30498:47;30494:886;;;30566:31;30600:11;:17;30612:4;30600:17;;;;;;;;;;;30566:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30641:9;:16;;;30636:729;;30712:1;30686:28;;:9;:14;;;:28;;;30682:101;;30750:9;30743:16;;;;;;30682:101;31085:261;31092:4;31085:261;;;31125:6;;;;;;;;31170:11;:17;31182:4;31170:17;;;;;;;;;;;31158:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31244:1;31218:28;;:9;:14;;;:28;;;31214:109;;31286:9;31279:16;;;;;;31214:109;31085:261;;;30636:729;30547:833;30494:886;31408:31;;;;;;;;;;;;;;30339:1108;;;;:::o;35376:104::-;35445:27;35455:2;35459:8;35445:27;;;;;;;;;;;;:9;:27::i;:::-;35376:104;;:::o;3408:191::-;3482:16;3501:6;;;;;;;;;;;3482:25;;3527:8;3518:6;;:17;;;;;;;;;;;;;;;;;;3582:8;3551:40;;3572:8;3551:40;;;;;;;;;;;;3471:128;3408:191;:::o;13469:326::-;13529:4;13786:1;13764:7;:19;;;:23;13757:30;;13469:326;;;:::o;43860:667::-;44023:4;44060:2;44044:36;;;44081:12;:10;:12::i;:::-;44095:4;44101:7;44110:5;44044:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44040:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44295:1;44278:6;:13;:18;44274:235;;44324:40;;;;;;;;;;;;;;44274:235;44467:6;44461:13;44452:6;44448:2;44444:15;44437:38;44040:480;44173:45;;;44163:55;;;:6;:55;;;;44156:62;;;43860:667;;;;;;:::o;21089:723::-;21145:13;21375:1;21366:5;:10;21362:53;;21393:10;;;;;;;;;;;;;;;;;;;;;21362:53;21425:12;21440:5;21425:20;;21456:14;21481:78;21496:1;21488:4;:9;21481:78;;21514:8;;;;;:::i;:::-;;;;21545:2;21537:10;;;;;:::i;:::-;;;21481:78;;;21569:19;21601:6;21591:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21569:39;;21619:154;21635:1;21626:5;:10;21619:154;;21663:1;21653:11;;;;;:::i;:::-;;;21730:2;21722:5;:10;;;;:::i;:::-;21709:2;:24;;;;:::i;:::-;21696:39;;21679:6;21686;21679:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21759:2;21750:11;;;;;:::i;:::-;;;21619:154;;;21797:6;21783:21;;;;;21089:723;;;;:::o;33829:164::-;33926:4;33950:18;:25;33969:5;33950:25;;;;;;;;;;;;;;;:35;33976:8;33950:35;;;;;;;;;;;;;;;;;;;;;;;;;33943:42;;33829:164;;;;:::o;45175:159::-;;;;;:::o;45993:158::-;;;;;:::o;35843:163::-;35966:32;35972:2;35976:8;35986:5;35993:4;35966:5;:32::i;:::-;35843:163;;;:::o;36265:2155::-;36404:20;36427:13;;36404:36;;36469:1;36455:16;;:2;:16;;;36451:48;;36480:19;;;;;;;;;;;;;;36451:48;36526:1;36514:8;:13;36510:44;;36536:18;;;;;;;;;;;;;;36510:44;36567:61;36597:1;36601:2;36605:12;36619:8;36567:21;:61::i;:::-;36694:42;36688:48;;:2;:48;;;:113;;;;36759:42;36753:48;;:2;:48;;;36688:113;:178;;;;36824:42;36818:48;;:2;:48;;;36688:178;36671:338;;;36892:15;36927:6;36936:1;36927:10;;36922:76;36943:5;36939:1;:9;36922:76;;;36973:9;;;;;:::i;:::-;;;;36950:3;;;;;:::i;:::-;;;;36922:76;;;;36877:132;36671:338;37320:8;37285:12;:16;37298:2;37285:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37384:8;37344:12;:16;37357:2;37344:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37443:2;37410:11;:25;37422:12;37410:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37510:15;37460:11;:25;37472:12;37460:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37543:20;37566:12;37543:35;;37593:11;37622:8;37607:12;:23;37593:37;;37651:4;:23;;;;;37659:15;:2;:13;;;:15::i;:::-;37651:23;37647:641;;;37695:314;37751:12;37747:2;37726:38;;37743:1;37726:38;;;;;;;;;;;;37792:69;37831:1;37835:2;37839:14;;;;;;37855:5;37792:30;:69::i;:::-;37787:174;;37897:40;;;;;;;;;;;;;;37787:174;38004:3;37988:12;:19;37695:314;;38090:12;38073:13;;:29;38069:43;;38104:8;;;38069:43;37647:641;;;38153:120;38209:14;;;;;;38205:2;38184:40;;38201:1;38184:40;;;;;;;;;;;;38268:3;38252:12;:19;38153:120;;37647:641;38318:12;38302:13;:28;;;;37260:1082;;38352:60;38381:1;38385:2;38389:12;38403:8;38352:20;:60::i;:::-;36393:2027;36265:2155;;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:329::-;5939:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;5880:329;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:180::-;16024:77;16021:1;16014:88;16121:4;16118:1;16111:15;16145:4;16142:1;16135:15;16162:305;16202:3;16221:20;16239:1;16221:20;:::i;:::-;16216:25;;16255:20;16273:1;16255:20;:::i;:::-;16250:25;;16409:1;16341:66;16337:74;16334:1;16331:81;16328:107;;;16415:18;;:::i;:::-;16328:107;16459:1;16456;16452:9;16445:16;;16162:305;;;;:::o;16473:156::-;16613:8;16609:1;16601:6;16597:14;16590:32;16473:156;:::o;16635:365::-;16777:3;16798:66;16862:1;16857:3;16798:66;:::i;:::-;16791:73;;16873:93;16962:3;16873:93;:::i;:::-;16991:2;16986:3;16982:12;16975:19;;16635:365;;;:::o;17006:419::-;17172:4;17210:2;17199:9;17195:18;17187:26;;17259:9;17253:4;17249:20;17245:1;17234:9;17230:17;17223:47;17287:131;17413:4;17287:131;:::i;:::-;17279:139;;17006:419;;;:::o;17431:168::-;17571:20;17567:1;17559:6;17555:14;17548:44;17431:168;:::o;17605:366::-;17747:3;17768:67;17832:2;17827:3;17768:67;:::i;:::-;17761:74;;17844:93;17933:3;17844:93;:::i;:::-;17962:2;17957:3;17953:12;17946:19;;17605:366;;;:::o;17977:419::-;18143:4;18181:2;18170:9;18166:18;18158:26;;18230:9;18224:4;18220:20;18216:1;18205:9;18201:17;18194:47;18258:131;18384:4;18258:131;:::i;:::-;18250:139;;17977:419;;;:::o;18402:160::-;18542:12;18538:1;18530:6;18526:14;18519:36;18402:160;:::o;18568:366::-;18710:3;18731:67;18795:2;18790:3;18731:67;:::i;:::-;18724:74;;18807:93;18896:3;18807:93;:::i;:::-;18925:2;18920:3;18916:12;18909:19;;18568:366;;;:::o;18940:419::-;19106:4;19144:2;19133:9;19129:18;19121:26;;19193:9;19187:4;19183:20;19179:1;19168:9;19164:17;19157:47;19221:131;19347:4;19221:131;:::i;:::-;19213:139;;18940:419;;;:::o;19365:162::-;19505:14;19501:1;19493:6;19489:14;19482:38;19365:162;:::o;19533:366::-;19675:3;19696:67;19760:2;19755:3;19696:67;:::i;:::-;19689:74;;19772:93;19861:3;19772:93;:::i;:::-;19890:2;19885:3;19881:12;19874:19;;19533:366;;;:::o;19905:419::-;20071:4;20109:2;20098:9;20094:18;20086:26;;20158:9;20152:4;20148:20;20144:1;20133:9;20129:17;20122:47;20186:131;20312:4;20186:131;:::i;:::-;20178:139;;19905:419;;;:::o;20330:167::-;20470:19;20466:1;20458:6;20454:14;20447:43;20330:167;:::o;20503:366::-;20645:3;20666:67;20730:2;20725:3;20666:67;:::i;:::-;20659:74;;20742:93;20831:3;20742:93;:::i;:::-;20860:2;20855:3;20851:12;20844:19;;20503:366;;;:::o;20875:419::-;21041:4;21079:2;21068:9;21064:18;21056:26;;21128:9;21122:4;21118:20;21114:1;21103:9;21099:17;21092:47;21156:131;21282:4;21156:131;:::i;:::-;21148:139;;20875:419;;;:::o;21300:348::-;21340:7;21363:20;21381:1;21363:20;:::i;:::-;21358:25;;21397:20;21415:1;21397:20;:::i;:::-;21392:25;;21585:1;21517:66;21513:74;21510:1;21507:81;21502:1;21495:9;21488:17;21484:105;21481:131;;;21592:18;;:::i;:::-;21481:131;21640:1;21637;21633:9;21622:20;;21300:348;;;;:::o;21654:172::-;21794:24;21790:1;21782:6;21778:14;21771:48;21654:172;:::o;21832:366::-;21974:3;21995:67;22059:2;22054:3;21995:67;:::i;:::-;21988:74;;22071:93;22160:3;22071:93;:::i;:::-;22189:2;22184:3;22180:12;22173:19;;21832:366;;;:::o;22204:419::-;22370:4;22408:2;22397:9;22393:18;22385:26;;22457:9;22451:4;22447:20;22443:1;22432:9;22428:17;22421:47;22485:131;22611:4;22485:131;:::i;:::-;22477:139;;22204:419;;;:::o;22629:171::-;22769:23;22765:1;22757:6;22753:14;22746:47;22629:171;:::o;22806:366::-;22948:3;22969:67;23033:2;23028:3;22969:67;:::i;:::-;22962:74;;23045:93;23134:3;23045:93;:::i;:::-;23163:2;23158:3;23154:12;23147:19;;22806:366;;;:::o;23178:419::-;23344:4;23382:2;23371:9;23367:18;23359:26;;23431:9;23425:4;23421:20;23417:1;23406:9;23402:17;23395:47;23459:131;23585:4;23459:131;:::i;:::-;23451:139;;23178:419;;;:::o;23603:148::-;23705:11;23742:3;23727:18;;23603:148;;;;:::o;23757:141::-;23806:4;23829:3;23821:11;;23852:3;23849:1;23842:14;23886:4;23883:1;23873:18;23865:26;;23757:141;;;:::o;23928:845::-;24031:3;24068:5;24062:12;24097:36;24123:9;24097:36;:::i;:::-;24149:89;24231:6;24226:3;24149:89;:::i;:::-;24142:96;;24269:1;24258:9;24254:17;24285:1;24280:137;;;;24431:1;24426:341;;;;24247:520;;24280:137;24364:4;24360:9;24349;24345:25;24340:3;24333:38;24400:6;24395:3;24391:16;24384:23;;24280:137;;24426:341;24493:38;24525:5;24493:38;:::i;:::-;24553:1;24567:154;24581:6;24578:1;24575:13;24567:154;;;24655:7;24649:14;24645:1;24640:3;24636:11;24629:35;24705:1;24696:7;24692:15;24681:26;;24603:4;24600:1;24596:12;24591:17;;24567:154;;;24750:6;24745:3;24741:16;24734:23;;24433:334;;24247:520;;24035:738;;23928:845;;;;:::o;24779:377::-;24885:3;24913:39;24946:5;24913:39;:::i;:::-;24968:89;25050:6;25045:3;24968:89;:::i;:::-;24961:96;;25066:52;25111:6;25106:3;25099:4;25092:5;25088:16;25066:52;:::i;:::-;25143:6;25138:3;25134:16;25127:23;;24889:267;24779:377;;;;:::o;25162:155::-;25302:7;25298:1;25290:6;25286:14;25279:31;25162:155;:::o;25323:400::-;25483:3;25504:84;25586:1;25581:3;25504:84;:::i;:::-;25497:91;;25597:93;25686:3;25597:93;:::i;:::-;25715:1;25710:3;25706:11;25699:18;;25323:400;;;:::o;25729:695::-;26007:3;26029:92;26117:3;26108:6;26029:92;:::i;:::-;26022:99;;26138:95;26229:3;26220:6;26138:95;:::i;:::-;26131:102;;26250:148;26394:3;26250:148;:::i;:::-;26243:155;;26415:3;26408:10;;25729:695;;;;;:::o;26430:125::-;26496:7;26525:24;26543:5;26525:24;:::i;:::-;26514:35;;26430:125;;;:::o;26561:180::-;26663:53;26710:5;26663:53;:::i;:::-;26656:5;26653:64;26643:92;;26731:1;26728;26721:12;26643:92;26561:180;:::o;26747:201::-;26833:5;26864:6;26858:13;26849:22;;26880:62;26936:5;26880:62;:::i;:::-;26747:201;;;;:::o;26954:409::-;27053:6;27102:2;27090:9;27081:7;27077:23;27073:32;27070:119;;;27108:79;;:::i;:::-;27070:119;27228:1;27253:93;27338:7;27329:6;27318:9;27314:22;27253:93;:::i;:::-;27243:103;;27199:157;26954:409;;;;:::o;27369:225::-;27509:34;27505:1;27497:6;27493:14;27486:58;27578:8;27573:2;27565:6;27561:15;27554:33;27369:225;:::o;27600:366::-;27742:3;27763:67;27827:2;27822:3;27763:67;:::i;:::-;27756:74;;27839:93;27928:3;27839:93;:::i;:::-;27957:2;27952:3;27948:12;27941:19;;27600:366;;;:::o;27972:419::-;28138:4;28176:2;28165:9;28161:18;28153:26;;28225:9;28219:4;28215:20;28211:1;28200:9;28196:17;28189:47;28253:131;28379:4;28253:131;:::i;:::-;28245:139;;27972:419;;;:::o;28397:98::-;28448:6;28482:5;28476:12;28466:22;;28397:98;;;:::o;28501:168::-;28584:11;28618:6;28613:3;28606:19;28658:4;28653:3;28649:14;28634:29;;28501:168;;;;:::o;28675:360::-;28761:3;28789:38;28821:5;28789:38;:::i;:::-;28843:70;28906:6;28901:3;28843:70;:::i;:::-;28836:77;;28922:52;28967:6;28962:3;28955:4;28948:5;28944:16;28922:52;:::i;:::-;28999:29;29021:6;28999:29;:::i;:::-;28994:3;28990:39;28983:46;;28765:270;28675:360;;;;:::o;29041:640::-;29236:4;29274:3;29263:9;29259:19;29251:27;;29288:71;29356:1;29345:9;29341:17;29332:6;29288:71;:::i;:::-;29369:72;29437:2;29426:9;29422:18;29413:6;29369:72;:::i;:::-;29451;29519:2;29508:9;29504:18;29495:6;29451:72;:::i;:::-;29570:9;29564:4;29560:20;29555:2;29544:9;29540:18;29533:48;29598:76;29669:4;29660:6;29598:76;:::i;:::-;29590:84;;29041:640;;;;;;;:::o;29687:141::-;29743:5;29774:6;29768:13;29759:22;;29790:32;29816:5;29790:32;:::i;:::-;29687:141;;;;:::o;29834:349::-;29903:6;29952:2;29940:9;29931:7;29927:23;29923:32;29920:119;;;29958:79;;:::i;:::-;29920:119;30078:1;30103:63;30158:7;30149:6;30138:9;30134:22;30103:63;:::i;:::-;30093:73;;30049:127;29834:349;;;;:::o;30189:233::-;30228:3;30251:24;30269:5;30251:24;:::i;:::-;30242:33;;30297:66;30290:5;30287:77;30284:103;;30367:18;;:::i;:::-;30284:103;30414:1;30407:5;30403:13;30396:20;;30189:233;;;:::o;30428:180::-;30476:77;30473:1;30466:88;30573:4;30570:1;30563:15;30597:4;30594:1;30587:15;30614:185;30654:1;30671:20;30689:1;30671:20;:::i;:::-;30666:25;;30705:20;30723:1;30705:20;:::i;:::-;30700:25;;30744:1;30734:35;;30749:18;;:::i;:::-;30734:35;30791:1;30788;30784:9;30779:14;;30614:185;;;;:::o;30805:191::-;30845:4;30865:20;30883:1;30865:20;:::i;:::-;30860:25;;30899:20;30917:1;30899:20;:::i;:::-;30894:25;;30938:1;30935;30932:8;30929:34;;;30943:18;;:::i;:::-;30929:34;30988:1;30985;30981:9;30973:17;;30805:191;;;;:::o;31002:176::-;31034:1;31051:20;31069:1;31051:20;:::i;:::-;31046:25;;31085:20;31103:1;31085:20;:::i;:::-;31080:25;;31124:1;31114:35;;31129:18;;:::i;:::-;31114:35;31170:1;31167;31163:9;31158:14;;31002:176;;;;:::o;31184:180::-;31232:77;31229:1;31222:88;31329:4;31326:1;31319:15;31353:4;31350:1;31343:15

Swarm Source

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