ETH Price: $2,630.80 (-0.11%)

Token

Drink Pls (DRINK)
 

Overview

Max Total Supply

18 DRINK

Holders

18

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DRINK
0x25adf50119f91cfdd59d20318fcb70aaa0f1b26f
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:
DrinkPls

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev 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 contracts/DrinkPls.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;


contract DrinkPls is ERC721, Ownable {
    uint256 public globalCounter = 0;
    string private baseUri;

    function baseTokenUri() public view returns (string memory) {
        return baseUri;
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return string(abi.encodePacked(baseUri, Strings.toString(_tokenId)));
    }

    function totalSupply() public view returns (uint256) {
        return globalCounter;
    }

    function mintTo(address _recipient) public onlyOwner {
        globalCounter++;
        _safeMint(_recipient, globalCounter);
    }

    constructor(string memory _metadataBaseUri) ERC721("Drink Pls", "DRINK") {
        baseUri = _metadataBaseUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_metadataBaseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenUri","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":[],"name":"globalCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_recipient","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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"}]

608060405260006007553480156200001657600080fd5b50604051620030663803806200306683398181016040528101906200003c91906200030c565b6040518060400160405280600981526020017f4472696e6b20506c7300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4452494e4b0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c0929190620001ea565b508060019080519060200190620000d9929190620001ea565b505050620000fc620000f06200011c60201b60201c565b6200012460201b60201c565b806008908051906020019062000114929190620001ea565b5050620004c1565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f890620003e6565b90600052602060002090601f0160209004810192826200021c576000855562000268565b82601f106200023757805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002675782518255916020019190600101906200024a565b5b5090506200027791906200027b565b5090565b5b80821115620002965760008160009055506001016200027c565b5090565b6000620002b1620002ab846200037a565b62000351565b905082815260208101848484011115620002ca57600080fd5b620002d7848285620003b0565b509392505050565b600082601f830112620002f157600080fd5b8151620003038482602086016200029a565b91505092915050565b6000602082840312156200031f57600080fd5b600082015167ffffffffffffffff8111156200033a57600080fd5b6200034884828501620002df565b91505092915050565b60006200035d62000370565b90506200036b82826200041c565b919050565b6000604051905090565b600067ffffffffffffffff82111562000398576200039762000481565b5b620003a382620004b0565b9050602081019050919050565b60005b83811015620003d0578082015181840152602081019050620003b3565b83811115620003e0576000848401525b50505050565b60006002820490506001821680620003ff57607f821691505b6020821081141562000416576200041562000452565b5b50919050565b6200042782620004b0565b810181811067ffffffffffffffff8211171562000449576200044862000481565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612b9580620004d16000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063755edd17116100b8578063a22cb4651161007c578063a22cb46514610328578063b88d4fde14610344578063c87b56dd14610360578063d396a7a914610390578063e985e9c5146103ae578063f2fde38b146103de57610137565b8063755edd17146102965780637a0101a2146102b25780638da5cb5b146102d057806395d89b41146102ee578063a0bcfc7f1461030c57610137565b806323b872dd116100ff57806323b872dd146101f457806342842e0e146102105780636352211e1461022c57806370a082311461025c578063715018a61461028c57610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190611d6f565b6103fa565b60405161016391906121cc565b60405180910390f35b6101746104dc565b60405161018191906121e7565b60405180910390f35b6101a4600480360381019061019f9190611e02565b61056e565b6040516101b19190612165565b60405180910390f35b6101d460048036038101906101cf9190611d33565b6105b4565b005b6101de6106cc565b6040516101eb91906123a9565b60405180910390f35b61020e60048036038101906102099190611c2d565b6106d6565b005b61022a60048036038101906102259190611c2d565b610736565b005b61024660048036038101906102419190611e02565b610756565b6040516102539190612165565b60405180910390f35b61027660048036038101906102719190611bc8565b610808565b60405161028391906123a9565b60405180910390f35b6102946108c0565b005b6102b060048036038101906102ab9190611bc8565b6108d4565b005b6102ba610903565b6040516102c791906121e7565b60405180910390f35b6102d8610995565b6040516102e59190612165565b60405180910390f35b6102f66109bf565b60405161030391906121e7565b60405180910390f35b61032660048036038101906103219190611dc1565b610a51565b005b610342600480360381019061033d9190611cf7565b610a73565b005b61035e60048036038101906103599190611c7c565b610a89565b005b61037a60048036038101906103759190611e02565b610aeb565b60405161038791906121e7565b60405180910390f35b610398610b1f565b6040516103a591906123a9565b60405180910390f35b6103c860048036038101906103c39190611bf1565b610b25565b6040516103d591906121cc565b60405180910390f35b6103f860048036038101906103f39190611bc8565b610bb9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d557506104d482610c3d565b5b9050919050565b6060600080546104eb90612614565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612614565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057982610ca7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105bf82610756565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062790612369565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661064f610cf2565b73ffffffffffffffffffffffffffffffffffffffff16148061067e575061067d81610678610cf2565b610b25565b5b6106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b4906122e9565b60405180910390fd5b6106c78383610cfa565b505050565b6000600754905090565b6106e76106e1610cf2565b82610db3565b610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90612389565b60405180910390fd5b610731838383610e48565b505050565b61075183838360405180602001604052806000815250610a89565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f690612349565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610870906122c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c86110af565b6108d2600061112d565b565b6108dc6110af565b600760008154809291906108ef90612677565b9190505550610900816007546111f3565b50565b60606008805461091290612614565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90612614565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546109ce90612614565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90612614565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b610a596110af565b8060089080519060200190610a6f9291906119ec565b5050565b610a85610a7e610cf2565b8383611211565b5050565b610a9a610a94610cf2565b83610db3565b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090612389565b60405180910390fd5b610ae58484848461137e565b50505050565b60606008610af8836113da565b604051602001610b09929190612141565b6040516020818303038152906040529050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610bc16110af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612229565b60405180910390fd5b610c3a8161112d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610cb081611587565b610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690612349565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d6d83610756565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610dbf83610756565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e015750610e008185610b25565b5b80610e3f57508373ffffffffffffffffffffffffffffffffffffffff16610e278461056e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e6882610756565b73ffffffffffffffffffffffffffffffffffffffff1614610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612249565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612289565b60405180910390fd5b610f398383836115f3565b610f44600082610cfa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f94919061252a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610feb91906124a3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110aa8383836115f8565b505050565b6110b7610cf2565b73ffffffffffffffffffffffffffffffffffffffff166110d5610995565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612329565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120d8282604051806020016040528060008152506115fd565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906122a9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137191906121cc565b60405180910390a3505050565b611389848484610e48565b61139584848484611658565b6113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612209565b60405180910390fd5b50505050565b60606000821415611422576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611582565b600082905060005b6000821461145457808061143d90612677565b915050600a8261144d91906124f9565b915061142a565b60008167ffffffffffffffff811115611496577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114c85781602001600182028036833780820191505090505b5090505b6000851461157b576001826114e1919061252a565b9150600a856114f091906126c0565b60306114fc91906124a3565b60f81b818381518110611538577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561157491906124f9565b94506114cc565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61160783836117ef565b6116146000848484611658565b611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90612209565b60405180910390fd5b505050565b60006116798473ffffffffffffffffffffffffffffffffffffffff166119c9565b156117e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116a2610cf2565b8786866040518563ffffffff1660e01b81526004016116c49493929190612180565b602060405180830381600087803b1580156116de57600080fd5b505af192505050801561170f57506040513d601f19601f8201168201806040525081019061170c9190611d98565b60015b611792573d806000811461173f576040519150601f19603f3d011682016040523d82523d6000602084013e611744565b606091505b5060008151141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190612209565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506117e7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690612309565b60405180910390fd5b61186881611587565b156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90612269565b60405180910390fd5b6118b4600083836115f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461190491906124a3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119c5600083836115f8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546119f890612614565b90600052602060002090601f016020900481019282611a1a5760008555611a61565b82601f10611a3357805160ff1916838001178555611a61565b82800160010185558215611a61579182015b82811115611a60578251825591602001919060010190611a45565b5b509050611a6e9190611a72565b5090565b5b80821115611a8b576000816000905550600101611a73565b5090565b6000611aa2611a9d846123e9565b6123c4565b905082815260208101848484011115611aba57600080fd5b611ac58482856125d2565b509392505050565b6000611ae0611adb8461241a565b6123c4565b905082815260208101848484011115611af857600080fd5b611b038482856125d2565b509392505050565b600081359050611b1a81612b03565b92915050565b600081359050611b2f81612b1a565b92915050565b600081359050611b4481612b31565b92915050565b600081519050611b5981612b31565b92915050565b600082601f830112611b7057600080fd5b8135611b80848260208601611a8f565b91505092915050565b600082601f830112611b9a57600080fd5b8135611baa848260208601611acd565b91505092915050565b600081359050611bc281612b48565b92915050565b600060208284031215611bda57600080fd5b6000611be884828501611b0b565b91505092915050565b60008060408385031215611c0457600080fd5b6000611c1285828601611b0b565b9250506020611c2385828601611b0b565b9150509250929050565b600080600060608486031215611c4257600080fd5b6000611c5086828701611b0b565b9350506020611c6186828701611b0b565b9250506040611c7286828701611bb3565b9150509250925092565b60008060008060808587031215611c9257600080fd5b6000611ca087828801611b0b565b9450506020611cb187828801611b0b565b9350506040611cc287828801611bb3565b925050606085013567ffffffffffffffff811115611cdf57600080fd5b611ceb87828801611b5f565b91505092959194509250565b60008060408385031215611d0a57600080fd5b6000611d1885828601611b0b565b9250506020611d2985828601611b20565b9150509250929050565b60008060408385031215611d4657600080fd5b6000611d5485828601611b0b565b9250506020611d6585828601611bb3565b9150509250929050565b600060208284031215611d8157600080fd5b6000611d8f84828501611b35565b91505092915050565b600060208284031215611daa57600080fd5b6000611db884828501611b4a565b91505092915050565b600060208284031215611dd357600080fd5b600082013567ffffffffffffffff811115611ded57600080fd5b611df984828501611b89565b91505092915050565b600060208284031215611e1457600080fd5b6000611e2284828501611bb3565b91505092915050565b611e348161255e565b82525050565b611e4381612570565b82525050565b6000611e5482612460565b611e5e8185612476565b9350611e6e8185602086016125e1565b611e77816127ad565b840191505092915050565b6000611e8d8261246b565b611e978185612487565b9350611ea78185602086016125e1565b611eb0816127ad565b840191505092915050565b6000611ec68261246b565b611ed08185612498565b9350611ee08185602086016125e1565b80840191505092915050565b60008154611ef981612614565b611f038186612498565b94506001821660008114611f1e5760018114611f2f57611f62565b60ff19831686528186019350611f62565b611f388561244b565b60005b83811015611f5a57815481890152600182019150602081019050611f3b565b838801955050505b50505092915050565b6000611f78603283612487565b9150611f83826127be565b604082019050919050565b6000611f9b602683612487565b9150611fa68261280d565b604082019050919050565b6000611fbe602583612487565b9150611fc98261285c565b604082019050919050565b6000611fe1601c83612487565b9150611fec826128ab565b602082019050919050565b6000612004602483612487565b915061200f826128d4565b604082019050919050565b6000612027601983612487565b915061203282612923565b602082019050919050565b600061204a602983612487565b91506120558261294c565b604082019050919050565b600061206d603e83612487565b91506120788261299b565b604082019050919050565b6000612090602083612487565b915061209b826129ea565b602082019050919050565b60006120b3602083612487565b91506120be82612a13565b602082019050919050565b60006120d6601883612487565b91506120e182612a3c565b602082019050919050565b60006120f9602183612487565b915061210482612a65565b604082019050919050565b600061211c602e83612487565b915061212782612ab4565b604082019050919050565b61213b816125c8565b82525050565b600061214d8285611eec565b91506121598284611ebb565b91508190509392505050565b600060208201905061217a6000830184611e2b565b92915050565b60006080820190506121956000830187611e2b565b6121a26020830186611e2b565b6121af6040830185612132565b81810360608301526121c18184611e49565b905095945050505050565b60006020820190506121e16000830184611e3a565b92915050565b600060208201905081810360008301526122018184611e82565b905092915050565b6000602082019050818103600083015261222281611f6b565b9050919050565b6000602082019050818103600083015261224281611f8e565b9050919050565b6000602082019050818103600083015261226281611fb1565b9050919050565b6000602082019050818103600083015261228281611fd4565b9050919050565b600060208201905081810360008301526122a281611ff7565b9050919050565b600060208201905081810360008301526122c28161201a565b9050919050565b600060208201905081810360008301526122e28161203d565b9050919050565b6000602082019050818103600083015261230281612060565b9050919050565b6000602082019050818103600083015261232281612083565b9050919050565b60006020820190508181036000830152612342816120a6565b9050919050565b60006020820190508181036000830152612362816120c9565b9050919050565b60006020820190508181036000830152612382816120ec565b9050919050565b600060208201905081810360008301526123a28161210f565b9050919050565b60006020820190506123be6000830184612132565b92915050565b60006123ce6123df565b90506123da8282612646565b919050565b6000604051905090565b600067ffffffffffffffff8211156124045761240361277e565b5b61240d826127ad565b9050602081019050919050565b600067ffffffffffffffff8211156124355761243461277e565b5b61243e826127ad565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124ae826125c8565b91506124b9836125c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ee576124ed6126f1565b5b828201905092915050565b6000612504826125c8565b915061250f836125c8565b92508261251f5761251e612720565b5b828204905092915050565b6000612535826125c8565b9150612540836125c8565b925082821015612553576125526126f1565b5b828203905092915050565b6000612569826125a8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125ff5780820151818401526020810190506125e4565b8381111561260e576000848401525b50505050565b6000600282049050600182168061262c57607f821691505b602082108114156126405761263f61274f565b5b50919050565b61264f826127ad565b810181811067ffffffffffffffff8211171561266e5761266d61277e565b5b80604052505050565b6000612682826125c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156126b5576126b46126f1565b5b600182019050919050565b60006126cb826125c8565b91506126d6836125c8565b9250826126e6576126e5612720565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b612b0c8161255e565b8114612b1757600080fd5b50565b612b2381612570565b8114612b2e57600080fd5b50565b612b3a8161257c565b8114612b4557600080fd5b50565b612b51816125c8565b8114612b5c57600080fd5b5056fea2646970667358221220c76f053fdfea9890bf0db7362971d8b4a797712e036dd38e42eba9d2893e194164736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6472696e6b706c732d6d61696e2d7a717768756f6d646a612d65772e612e72756e2e6170702f000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063755edd17116100b8578063a22cb4651161007c578063a22cb46514610328578063b88d4fde14610344578063c87b56dd14610360578063d396a7a914610390578063e985e9c5146103ae578063f2fde38b146103de57610137565b8063755edd17146102965780637a0101a2146102b25780638da5cb5b146102d057806395d89b41146102ee578063a0bcfc7f1461030c57610137565b806323b872dd116100ff57806323b872dd146101f457806342842e0e146102105780636352211e1461022c57806370a082311461025c578063715018a61461028c57610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190611d6f565b6103fa565b60405161016391906121cc565b60405180910390f35b6101746104dc565b60405161018191906121e7565b60405180910390f35b6101a4600480360381019061019f9190611e02565b61056e565b6040516101b19190612165565b60405180910390f35b6101d460048036038101906101cf9190611d33565b6105b4565b005b6101de6106cc565b6040516101eb91906123a9565b60405180910390f35b61020e60048036038101906102099190611c2d565b6106d6565b005b61022a60048036038101906102259190611c2d565b610736565b005b61024660048036038101906102419190611e02565b610756565b6040516102539190612165565b60405180910390f35b61027660048036038101906102719190611bc8565b610808565b60405161028391906123a9565b60405180910390f35b6102946108c0565b005b6102b060048036038101906102ab9190611bc8565b6108d4565b005b6102ba610903565b6040516102c791906121e7565b60405180910390f35b6102d8610995565b6040516102e59190612165565b60405180910390f35b6102f66109bf565b60405161030391906121e7565b60405180910390f35b61032660048036038101906103219190611dc1565b610a51565b005b610342600480360381019061033d9190611cf7565b610a73565b005b61035e60048036038101906103599190611c7c565b610a89565b005b61037a60048036038101906103759190611e02565b610aeb565b60405161038791906121e7565b60405180910390f35b610398610b1f565b6040516103a591906123a9565b60405180910390f35b6103c860048036038101906103c39190611bf1565b610b25565b6040516103d591906121cc565b60405180910390f35b6103f860048036038101906103f39190611bc8565b610bb9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d557506104d482610c3d565b5b9050919050565b6060600080546104eb90612614565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612614565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057982610ca7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105bf82610756565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062790612369565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661064f610cf2565b73ffffffffffffffffffffffffffffffffffffffff16148061067e575061067d81610678610cf2565b610b25565b5b6106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b4906122e9565b60405180910390fd5b6106c78383610cfa565b505050565b6000600754905090565b6106e76106e1610cf2565b82610db3565b610726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071d90612389565b60405180910390fd5b610731838383610e48565b505050565b61075183838360405180602001604052806000815250610a89565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f690612349565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610870906122c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c86110af565b6108d2600061112d565b565b6108dc6110af565b600760008154809291906108ef90612677565b9190505550610900816007546111f3565b50565b60606008805461091290612614565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90612614565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546109ce90612614565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90612614565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b610a596110af565b8060089080519060200190610a6f9291906119ec565b5050565b610a85610a7e610cf2565b8383611211565b5050565b610a9a610a94610cf2565b83610db3565b610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090612389565b60405180910390fd5b610ae58484848461137e565b50505050565b60606008610af8836113da565b604051602001610b09929190612141565b6040516020818303038152906040529050919050565b60075481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610bc16110af565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890612229565b60405180910390fd5b610c3a8161112d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610cb081611587565b610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690612349565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610d6d83610756565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610dbf83610756565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e015750610e008185610b25565b5b80610e3f57508373ffffffffffffffffffffffffffffffffffffffff16610e278461056e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610e6882610756565b73ffffffffffffffffffffffffffffffffffffffff1614610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612249565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612289565b60405180910390fd5b610f398383836115f3565b610f44600082610cfa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f94919061252a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610feb91906124a3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110aa8383836115f8565b505050565b6110b7610cf2565b73ffffffffffffffffffffffffffffffffffffffff166110d5610995565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290612329565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61120d8282604051806020016040528060008152506115fd565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611280576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611277906122a9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137191906121cc565b60405180910390a3505050565b611389848484610e48565b61139584848484611658565b6113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90612209565b60405180910390fd5b50505050565b60606000821415611422576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611582565b600082905060005b6000821461145457808061143d90612677565b915050600a8261144d91906124f9565b915061142a565b60008167ffffffffffffffff811115611496577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114c85781602001600182028036833780820191505090505b5090505b6000851461157b576001826114e1919061252a565b9150600a856114f091906126c0565b60306114fc91906124a3565b60f81b818381518110611538577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561157491906124f9565b94506114cc565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61160783836117ef565b6116146000848484611658565b611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90612209565b60405180910390fd5b505050565b60006116798473ffffffffffffffffffffffffffffffffffffffff166119c9565b156117e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116a2610cf2565b8786866040518563ffffffff1660e01b81526004016116c49493929190612180565b602060405180830381600087803b1580156116de57600080fd5b505af192505050801561170f57506040513d601f19601f8201168201806040525081019061170c9190611d98565b60015b611792573d806000811461173f576040519150601f19603f3d011682016040523d82523d6000602084013e611744565b606091505b5060008151141561178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190612209565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506117e7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690612309565b60405180910390fd5b61186881611587565b156118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f90612269565b60405180910390fd5b6118b4600083836115f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461190491906124a3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119c5600083836115f8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546119f890612614565b90600052602060002090601f016020900481019282611a1a5760008555611a61565b82601f10611a3357805160ff1916838001178555611a61565b82800160010185558215611a61579182015b82811115611a60578251825591602001919060010190611a45565b5b509050611a6e9190611a72565b5090565b5b80821115611a8b576000816000905550600101611a73565b5090565b6000611aa2611a9d846123e9565b6123c4565b905082815260208101848484011115611aba57600080fd5b611ac58482856125d2565b509392505050565b6000611ae0611adb8461241a565b6123c4565b905082815260208101848484011115611af857600080fd5b611b038482856125d2565b509392505050565b600081359050611b1a81612b03565b92915050565b600081359050611b2f81612b1a565b92915050565b600081359050611b4481612b31565b92915050565b600081519050611b5981612b31565b92915050565b600082601f830112611b7057600080fd5b8135611b80848260208601611a8f565b91505092915050565b600082601f830112611b9a57600080fd5b8135611baa848260208601611acd565b91505092915050565b600081359050611bc281612b48565b92915050565b600060208284031215611bda57600080fd5b6000611be884828501611b0b565b91505092915050565b60008060408385031215611c0457600080fd5b6000611c1285828601611b0b565b9250506020611c2385828601611b0b565b9150509250929050565b600080600060608486031215611c4257600080fd5b6000611c5086828701611b0b565b9350506020611c6186828701611b0b565b9250506040611c7286828701611bb3565b9150509250925092565b60008060008060808587031215611c9257600080fd5b6000611ca087828801611b0b565b9450506020611cb187828801611b0b565b9350506040611cc287828801611bb3565b925050606085013567ffffffffffffffff811115611cdf57600080fd5b611ceb87828801611b5f565b91505092959194509250565b60008060408385031215611d0a57600080fd5b6000611d1885828601611b0b565b9250506020611d2985828601611b20565b9150509250929050565b60008060408385031215611d4657600080fd5b6000611d5485828601611b0b565b9250506020611d6585828601611bb3565b9150509250929050565b600060208284031215611d8157600080fd5b6000611d8f84828501611b35565b91505092915050565b600060208284031215611daa57600080fd5b6000611db884828501611b4a565b91505092915050565b600060208284031215611dd357600080fd5b600082013567ffffffffffffffff811115611ded57600080fd5b611df984828501611b89565b91505092915050565b600060208284031215611e1457600080fd5b6000611e2284828501611bb3565b91505092915050565b611e348161255e565b82525050565b611e4381612570565b82525050565b6000611e5482612460565b611e5e8185612476565b9350611e6e8185602086016125e1565b611e77816127ad565b840191505092915050565b6000611e8d8261246b565b611e978185612487565b9350611ea78185602086016125e1565b611eb0816127ad565b840191505092915050565b6000611ec68261246b565b611ed08185612498565b9350611ee08185602086016125e1565b80840191505092915050565b60008154611ef981612614565b611f038186612498565b94506001821660008114611f1e5760018114611f2f57611f62565b60ff19831686528186019350611f62565b611f388561244b565b60005b83811015611f5a57815481890152600182019150602081019050611f3b565b838801955050505b50505092915050565b6000611f78603283612487565b9150611f83826127be565b604082019050919050565b6000611f9b602683612487565b9150611fa68261280d565b604082019050919050565b6000611fbe602583612487565b9150611fc98261285c565b604082019050919050565b6000611fe1601c83612487565b9150611fec826128ab565b602082019050919050565b6000612004602483612487565b915061200f826128d4565b604082019050919050565b6000612027601983612487565b915061203282612923565b602082019050919050565b600061204a602983612487565b91506120558261294c565b604082019050919050565b600061206d603e83612487565b91506120788261299b565b604082019050919050565b6000612090602083612487565b915061209b826129ea565b602082019050919050565b60006120b3602083612487565b91506120be82612a13565b602082019050919050565b60006120d6601883612487565b91506120e182612a3c565b602082019050919050565b60006120f9602183612487565b915061210482612a65565b604082019050919050565b600061211c602e83612487565b915061212782612ab4565b604082019050919050565b61213b816125c8565b82525050565b600061214d8285611eec565b91506121598284611ebb565b91508190509392505050565b600060208201905061217a6000830184611e2b565b92915050565b60006080820190506121956000830187611e2b565b6121a26020830186611e2b565b6121af6040830185612132565b81810360608301526121c18184611e49565b905095945050505050565b60006020820190506121e16000830184611e3a565b92915050565b600060208201905081810360008301526122018184611e82565b905092915050565b6000602082019050818103600083015261222281611f6b565b9050919050565b6000602082019050818103600083015261224281611f8e565b9050919050565b6000602082019050818103600083015261226281611fb1565b9050919050565b6000602082019050818103600083015261228281611fd4565b9050919050565b600060208201905081810360008301526122a281611ff7565b9050919050565b600060208201905081810360008301526122c28161201a565b9050919050565b600060208201905081810360008301526122e28161203d565b9050919050565b6000602082019050818103600083015261230281612060565b9050919050565b6000602082019050818103600083015261232281612083565b9050919050565b60006020820190508181036000830152612342816120a6565b9050919050565b60006020820190508181036000830152612362816120c9565b9050919050565b60006020820190508181036000830152612382816120ec565b9050919050565b600060208201905081810360008301526123a28161210f565b9050919050565b60006020820190506123be6000830184612132565b92915050565b60006123ce6123df565b90506123da8282612646565b919050565b6000604051905090565b600067ffffffffffffffff8211156124045761240361277e565b5b61240d826127ad565b9050602081019050919050565b600067ffffffffffffffff8211156124355761243461277e565b5b61243e826127ad565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124ae826125c8565b91506124b9836125c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124ee576124ed6126f1565b5b828201905092915050565b6000612504826125c8565b915061250f836125c8565b92508261251f5761251e612720565b5b828204905092915050565b6000612535826125c8565b9150612540836125c8565b925082821015612553576125526126f1565b5b828203905092915050565b6000612569826125a8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125ff5780820151818401526020810190506125e4565b8381111561260e576000848401525b50505050565b6000600282049050600182168061262c57607f821691505b602082108114156126405761263f61274f565b5b50919050565b61264f826127ad565b810181811067ffffffffffffffff8211171561266e5761266d61277e565b5b80604052505050565b6000612682826125c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156126b5576126b46126f1565b5b600182019050919050565b60006126cb826125c8565b91506126d6836125c8565b9250826126e6576126e5612720565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b612b0c8161255e565b8114612b1757600080fd5b50565b612b2381612570565b8114612b2e57600080fd5b50565b612b3a8161257c565b8114612b4557600080fd5b50565b612b51816125c8565b8114612b5c57600080fd5b5056fea2646970667358221220c76f053fdfea9890bf0db7362971d8b4a797712e036dd38e42eba9d2893e194164736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6472696e6b706c732d6d61696e2d7a717768756f6d646a612d65772e612e72756e2e6170702f000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _metadataBaseUri (string): https://drinkpls-main-zqwhuomdja-ew.a.run.app/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [2] : 68747470733a2f2f6472696e6b706c732d6d61696e2d7a717768756f6d646a61
Arg [3] : 2d65772e612e72756e2e6170702f000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38129:903:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22145:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23072:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24585:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24102:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38669:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25285:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25692:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22783:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22514:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37214:103;;;:::i;:::-;;38769:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38243:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36566:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23241:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38344:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24828:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25948:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38452:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38173:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25054:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37472:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22145:305;22247:4;22299:25;22284:40;;;:11;:40;;;;:105;;;;22356:33;22341:48;;;:11;:48;;;;22284:105;:158;;;;22406:36;22430:11;22406:23;:36::i;:::-;22284:158;22264:178;;22145:305;;;:::o;23072:100::-;23126:13;23159:5;23152:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23072:100;:::o;24585:171::-;24661:7;24681:23;24696:7;24681:14;:23::i;:::-;24724:15;:24;24740:7;24724:24;;;;;;;;;;;;;;;;;;;;;24717:31;;24585:171;;;:::o;24102:417::-;24183:13;24199:23;24214:7;24199:14;:23::i;:::-;24183:39;;24247:5;24241:11;;:2;:11;;;;24233:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24341:5;24325:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24350:37;24367:5;24374:12;:10;:12::i;:::-;24350:16;:37::i;:::-;24325:62;24303:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;24490:21;24499:2;24503:7;24490:8;:21::i;:::-;24102:417;;;:::o;38669:92::-;38713:7;38740:13;;38733:20;;38669:92;:::o;25285:336::-;25480:41;25499:12;:10;:12::i;:::-;25513:7;25480:18;:41::i;:::-;25472:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25585:28;25595:4;25601:2;25605:7;25585:9;:28::i;:::-;25285:336;;;:::o;25692:185::-;25830:39;25847:4;25853:2;25857:7;25830:39;;;;;;;;;;;;:16;:39::i;:::-;25692:185;;;:::o;22783:222::-;22855:7;22875:13;22891:7;:16;22899:7;22891:16;;;;;;;;;;;;;;;;;;;;;22875:32;;22943:1;22926:19;;:5;:19;;;;22918:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;22992:5;22985:12;;;22783:222;;;:::o;22514:207::-;22586:7;22631:1;22614:19;;:5;:19;;;;22606:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22697:9;:16;22707:5;22697:16;;;;;;;;;;;;;;;;22690:23;;22514:207;;;:::o;37214:103::-;36452:13;:11;:13::i;:::-;37279:30:::1;37306:1;37279:18;:30::i;:::-;37214:103::o:0;38769:134::-;36452:13;:11;:13::i;:::-;38833::::1;;:15;;;;;;;;;:::i;:::-;;;;;;38859:36;38869:10;38881:13;;38859:9;:36::i;:::-;38769:134:::0;:::o;38243:93::-;38288:13;38321:7;38314:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38243:93;:::o;36566:87::-;36612:7;36639:6;;;;;;;;;;;36632:13;;36566:87;:::o;23241:104::-;23297:13;23330:7;23323:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23241:104;:::o;38344:100::-;36452:13;:11;:13::i;:::-;38428:8:::1;38418:7;:18;;;;;;;;;;;;:::i;:::-;;38344:100:::0;:::o;24828:155::-;24923:52;24942:12;:10;:12::i;:::-;24956:8;24966;24923:18;:52::i;:::-;24828:155;;:::o;25948:323::-;26122:41;26141:12;:10;:12::i;:::-;26155:7;26122:18;:41::i;:::-;26114:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26225:38;26239:4;26245:2;26249:7;26258:4;26225:13;:38::i;:::-;25948:323;;;;:::o;38452:209::-;38554:13;38616:7;38625:26;38642:8;38625:16;:26::i;:::-;38599:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38585:68;;38452:209;;;:::o;38173:32::-;;;;:::o;25054:164::-;25151:4;25175:18;:25;25194:5;25175:25;;;;;;;;;;;;;;;:35;25201:8;25175:35;;;;;;;;;;;;;;;;;;;;;;;;;25168:42;;25054:164;;;;:::o;37472:201::-;36452:13;:11;:13::i;:::-;37581:1:::1;37561:22;;:8;:22;;;;37553:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37637:28;37656:8;37637:18;:28::i;:::-;37472:201:::0;:::o;20570:157::-;20655:4;20694:25;20679:40;;;:11;:40;;;;20672:47;;20570:157;;;:::o;32560:135::-;32642:16;32650:7;32642;:16::i;:::-;32634:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;32560:135;:::o;16984:98::-;17037:7;17064:10;17057:17;;16984:98;:::o;31839:174::-;31941:2;31914:15;:24;31930:7;31914:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31997:7;31993:2;31959:46;;31968:23;31983:7;31968:14;:23::i;:::-;31959:46;;;;;;;;;;;;31839:174;;:::o;28072:264::-;28165:4;28182:13;28198:23;28213:7;28198:14;:23::i;:::-;28182:39;;28251:5;28240:16;;:7;:16;;;:52;;;;28260:32;28277:5;28284:7;28260:16;:32::i;:::-;28240:52;:87;;;;28320:7;28296:31;;:20;28308:7;28296:11;:20::i;:::-;:31;;;28240:87;28232:96;;;28072:264;;;;:::o;31095:625::-;31254:4;31227:31;;:23;31242:7;31227:14;:23::i;:::-;:31;;;31219:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31333:1;31319:16;;:2;:16;;;;31311:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31389:39;31410:4;31416:2;31420:7;31389:20;:39::i;:::-;31493:29;31510:1;31514:7;31493:8;:29::i;:::-;31554:1;31535:9;:15;31545:4;31535:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31583:1;31566:9;:13;31576:2;31566:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31614:2;31595:7;:16;31603:7;31595:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31653:7;31649:2;31634:27;;31643:4;31634:27;;;;;;;;;;;;31674:38;31694:4;31700:2;31704:7;31674:19;:38::i;:::-;31095:625;;;:::o;36731:132::-;36806:12;:10;:12::i;:::-;36795:23;;:7;:5;:7::i;:::-;:23;;;36787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36731:132::o;37833:191::-;37907:16;37926:6;;;;;;;;;;;37907:25;;37952:8;37943:6;;:17;;;;;;;;;;;;;;;;;;38007:8;37976:40;;37997:8;37976:40;;;;;;;;;;;;37833:191;;:::o;28678:110::-;28754:26;28764:2;28768:7;28754:26;;;;;;;;;;;;:9;:26::i;:::-;28678:110;;:::o;32156:315::-;32311:8;32302:17;;:5;:17;;;;32294:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32398:8;32360:18;:25;32379:5;32360:25;;;;;;;;;;;;;;;:35;32386:8;32360:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32444:8;32422:41;;32437:5;32422:41;;;32454:8;32422:41;;;;;;:::i;:::-;;;;;;;;32156:315;;;:::o;27152:313::-;27308:28;27318:4;27324:2;27328:7;27308:9;:28::i;:::-;27355:47;27378:4;27384:2;27388:7;27397:4;27355:22;:47::i;:::-;27347:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27152:313;;;;:::o;17634:723::-;17690:13;17920:1;17911:5;:10;17907:53;;;17938:10;;;;;;;;;;;;;;;;;;;;;17907:53;17970:12;17985:5;17970:20;;18001:14;18026:78;18041:1;18033:4;:9;18026:78;;18059:8;;;;;:::i;:::-;;;;18090:2;18082:10;;;;;:::i;:::-;;;18026:78;;;18114:19;18146:6;18136:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18114:39;;18164:154;18180:1;18171:5;:10;18164:154;;18208:1;18198:11;;;;;:::i;:::-;;;18275:2;18267:5;:10;;;;:::i;:::-;18254:2;:24;;;;:::i;:::-;18241:39;;18224:6;18231;18224:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18304:2;18295:11;;;;;:::i;:::-;;;18164:154;;;18342:6;18328:21;;;;;17634:723;;;;:::o;27778:127::-;27843:4;27895:1;27867:30;;:7;:16;27875:7;27867:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27860:37;;27778:127;;;:::o;34684:126::-;;;;:::o;35195:125::-;;;;:::o;29015:319::-;29144:18;29150:2;29154:7;29144:5;:18::i;:::-;29195:53;29226:1;29230:2;29234:7;29243:4;29195:22;:53::i;:::-;29173:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;29015:319;;;:::o;33259:853::-;33413:4;33434:15;:2;:13;;;:15::i;:::-;33430:675;;;33486:2;33470:36;;;33507:12;:10;:12::i;:::-;33521:4;33527:7;33536:4;33470:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33466:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33728:1;33711:6;:13;:18;33707:328;;;33754:60;;;;;;;;;;:::i;:::-;;;;;;;;33707:328;33985:6;33979:13;33970:6;33966:2;33962:15;33955:38;33466:584;33602:41;;;33592:51;;;:6;:51;;;;33585:58;;;;;33430:675;34089:4;34082:11;;33259:853;;;;;;;:::o;29670:439::-;29764:1;29750:16;;:2;:16;;;;29742:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29823:16;29831:7;29823;:16::i;:::-;29822:17;29814:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29885:45;29914:1;29918:2;29922:7;29885:20;:45::i;:::-;29960:1;29943:9;:13;29953:2;29943:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29991:2;29972:7;:16;29980:7;29972:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30036:7;30032:2;30011:33;;30028:1;30011:33;;;;;;;;;;;;30057:44;30085:1;30089:2;30093:7;30057:19;:44::i;:::-;29670:439;;:::o;8979:326::-;9039:4;9296:1;9274:7;:19;;;:23;9267:30;;8979:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7468:845::-;7571:3;7608:5;7602:12;7637:36;7663:9;7637:36;:::i;:::-;7689:89;7771:6;7766:3;7689:89;:::i;:::-;7682:96;;7809:1;7798:9;7794:17;7825:1;7820:137;;;;7971:1;7966:341;;;;7787:520;;7820:137;7904:4;7900:9;7889;7885:25;7880:3;7873:38;7940:6;7935:3;7931:16;7924:23;;7820:137;;7966:341;8033:38;8065:5;8033:38;:::i;:::-;8093:1;8107:154;8121:6;8118:1;8115:13;8107:154;;;8195:7;8189:14;8185:1;8180:3;8176:11;8169:35;8245:1;8236:7;8232:15;8221:26;;8143:4;8140:1;8136:12;8131:17;;8107:154;;;8290:6;8285:3;8281:16;8274:23;;7973:334;;7787:520;;7575:738;;;;;;:::o;8319:366::-;8461:3;8482:67;8546:2;8541:3;8482:67;:::i;:::-;8475:74;;8558:93;8647:3;8558:93;:::i;:::-;8676:2;8671:3;8667:12;8660:19;;8465:220;;;:::o;8691:366::-;8833:3;8854:67;8918:2;8913:3;8854:67;:::i;:::-;8847:74;;8930:93;9019:3;8930:93;:::i;:::-;9048:2;9043:3;9039:12;9032:19;;8837:220;;;:::o;9063:366::-;9205:3;9226:67;9290:2;9285:3;9226:67;:::i;:::-;9219:74;;9302:93;9391:3;9302:93;:::i;:::-;9420:2;9415:3;9411:12;9404:19;;9209:220;;;:::o;9435:366::-;9577:3;9598:67;9662:2;9657:3;9598:67;:::i;:::-;9591:74;;9674:93;9763:3;9674:93;:::i;:::-;9792:2;9787:3;9783:12;9776:19;;9581:220;;;:::o;9807:366::-;9949:3;9970:67;10034:2;10029:3;9970:67;:::i;:::-;9963:74;;10046:93;10135:3;10046:93;:::i;:::-;10164:2;10159:3;10155:12;10148:19;;9953:220;;;:::o;10179:366::-;10321:3;10342:67;10406:2;10401:3;10342:67;:::i;:::-;10335:74;;10418:93;10507:3;10418:93;:::i;:::-;10536:2;10531:3;10527:12;10520:19;;10325:220;;;:::o;10551:366::-;10693:3;10714:67;10778:2;10773:3;10714:67;:::i;:::-;10707:74;;10790:93;10879:3;10790:93;:::i;:::-;10908:2;10903:3;10899:12;10892:19;;10697:220;;;:::o;10923:366::-;11065:3;11086:67;11150:2;11145:3;11086:67;:::i;:::-;11079:74;;11162:93;11251:3;11162:93;:::i;:::-;11280:2;11275:3;11271:12;11264:19;;11069:220;;;:::o;11295:366::-;11437:3;11458:67;11522:2;11517:3;11458:67;:::i;:::-;11451:74;;11534:93;11623:3;11534:93;:::i;:::-;11652:2;11647:3;11643:12;11636:19;;11441:220;;;:::o;11667:366::-;11809:3;11830:67;11894:2;11889:3;11830:67;:::i;:::-;11823:74;;11906:93;11995:3;11906:93;:::i;:::-;12024:2;12019:3;12015:12;12008:19;;11813:220;;;:::o;12039:366::-;12181:3;12202:67;12266:2;12261:3;12202:67;:::i;:::-;12195:74;;12278:93;12367:3;12278:93;:::i;:::-;12396:2;12391:3;12387:12;12380:19;;12185:220;;;:::o;12411:366::-;12553:3;12574:67;12638:2;12633:3;12574:67;:::i;:::-;12567:74;;12650:93;12739:3;12650:93;:::i;:::-;12768:2;12763:3;12759:12;12752:19;;12557:220;;;:::o;12783:366::-;12925:3;12946:67;13010:2;13005:3;12946:67;:::i;:::-;12939:74;;13022:93;13111:3;13022:93;:::i;:::-;13140:2;13135:3;13131:12;13124:19;;12929:220;;;:::o;13155:118::-;13242:24;13260:5;13242:24;:::i;:::-;13237:3;13230:37;13220:53;;:::o;13279:429::-;13456:3;13478:92;13566:3;13557:6;13478:92;:::i;:::-;13471:99;;13587:95;13678:3;13669:6;13587:95;:::i;:::-;13580:102;;13699:3;13692:10;;13460:248;;;;;:::o;13714:222::-;13807:4;13845:2;13834:9;13830:18;13822:26;;13858:71;13926:1;13915:9;13911:17;13902:6;13858:71;:::i;:::-;13812:124;;;;:::o;13942:640::-;14137:4;14175:3;14164:9;14160:19;14152:27;;14189:71;14257:1;14246:9;14242:17;14233:6;14189:71;:::i;:::-;14270:72;14338:2;14327:9;14323:18;14314:6;14270:72;:::i;:::-;14352;14420:2;14409:9;14405:18;14396:6;14352:72;:::i;:::-;14471:9;14465:4;14461:20;14456:2;14445:9;14441:18;14434:48;14499:76;14570:4;14561:6;14499:76;:::i;:::-;14491:84;;14142:440;;;;;;;:::o;14588:210::-;14675:4;14713:2;14702:9;14698:18;14690:26;;14726:65;14788:1;14777:9;14773:17;14764:6;14726:65;:::i;:::-;14680:118;;;;:::o;14804:313::-;14917:4;14955:2;14944:9;14940:18;14932:26;;15004:9;14998:4;14994:20;14990:1;14979:9;14975:17;14968:47;15032:78;15105:4;15096:6;15032:78;:::i;:::-;15024:86;;14922:195;;;;:::o;15123:419::-;15289:4;15327:2;15316:9;15312:18;15304:26;;15376:9;15370:4;15366:20;15362:1;15351:9;15347:17;15340:47;15404:131;15530:4;15404:131;:::i;:::-;15396:139;;15294:248;;;:::o;15548:419::-;15714:4;15752:2;15741:9;15737:18;15729:26;;15801:9;15795:4;15791:20;15787:1;15776:9;15772:17;15765:47;15829:131;15955:4;15829:131;:::i;:::-;15821:139;;15719:248;;;:::o;15973:419::-;16139:4;16177:2;16166:9;16162:18;16154:26;;16226:9;16220:4;16216:20;16212:1;16201:9;16197:17;16190:47;16254:131;16380:4;16254:131;:::i;:::-;16246:139;;16144:248;;;:::o;16398:419::-;16564:4;16602:2;16591:9;16587:18;16579:26;;16651:9;16645:4;16641:20;16637:1;16626:9;16622:17;16615:47;16679:131;16805:4;16679:131;:::i;:::-;16671:139;;16569:248;;;:::o;16823:419::-;16989:4;17027:2;17016:9;17012:18;17004:26;;17076:9;17070:4;17066:20;17062:1;17051:9;17047:17;17040:47;17104:131;17230:4;17104:131;:::i;:::-;17096:139;;16994:248;;;:::o;17248:419::-;17414:4;17452:2;17441:9;17437:18;17429:26;;17501:9;17495:4;17491:20;17487:1;17476:9;17472:17;17465:47;17529:131;17655:4;17529:131;:::i;:::-;17521:139;;17419:248;;;:::o;17673:419::-;17839:4;17877:2;17866:9;17862:18;17854:26;;17926:9;17920:4;17916:20;17912:1;17901:9;17897:17;17890:47;17954:131;18080:4;17954:131;:::i;:::-;17946:139;;17844:248;;;:::o;18098:419::-;18264:4;18302:2;18291:9;18287:18;18279:26;;18351:9;18345:4;18341:20;18337:1;18326:9;18322:17;18315:47;18379:131;18505:4;18379:131;:::i;:::-;18371:139;;18269:248;;;:::o;18523:419::-;18689:4;18727:2;18716:9;18712:18;18704:26;;18776:9;18770:4;18766:20;18762:1;18751:9;18747:17;18740:47;18804:131;18930:4;18804:131;:::i;:::-;18796:139;;18694:248;;;:::o;18948:419::-;19114:4;19152:2;19141:9;19137:18;19129:26;;19201:9;19195:4;19191:20;19187:1;19176:9;19172:17;19165:47;19229:131;19355:4;19229:131;:::i;:::-;19221:139;;19119:248;;;:::o;19373:419::-;19539:4;19577:2;19566:9;19562:18;19554:26;;19626:9;19620:4;19616:20;19612:1;19601:9;19597:17;19590:47;19654:131;19780:4;19654:131;:::i;:::-;19646:139;;19544:248;;;:::o;19798:419::-;19964:4;20002:2;19991:9;19987:18;19979:26;;20051:9;20045:4;20041:20;20037:1;20026:9;20022:17;20015:47;20079:131;20205:4;20079:131;:::i;:::-;20071:139;;19969:248;;;:::o;20223:419::-;20389:4;20427:2;20416:9;20412:18;20404:26;;20476:9;20470:4;20466:20;20462:1;20451:9;20447:17;20440:47;20504:131;20630:4;20504:131;:::i;:::-;20496:139;;20394:248;;;:::o;20648:222::-;20741:4;20779:2;20768:9;20764:18;20756:26;;20792:71;20860:1;20849:9;20845:17;20836:6;20792:71;:::i;:::-;20746:124;;;;:::o;20876:129::-;20910:6;20937:20;;:::i;:::-;20927:30;;20966:33;20994:4;20986:6;20966:33;:::i;:::-;20917:88;;;:::o;21011:75::-;21044:6;21077:2;21071:9;21061:19;;21051:35;:::o;21092:307::-;21153:4;21243:18;21235:6;21232:30;21229:2;;;21265:18;;:::i;:::-;21229:2;21303:29;21325:6;21303:29;:::i;:::-;21295:37;;21387:4;21381;21377:15;21369:23;;21158:241;;;:::o;21405:308::-;21467:4;21557:18;21549:6;21546:30;21543:2;;;21579:18;;:::i;:::-;21543:2;21617:29;21639:6;21617:29;:::i;:::-;21609:37;;21701:4;21695;21691:15;21683:23;;21472:241;;;:::o;21719:141::-;21768:4;21791:3;21783:11;;21814:3;21811:1;21804:14;21848:4;21845:1;21835:18;21827:26;;21773:87;;;:::o;21866:98::-;21917:6;21951:5;21945:12;21935:22;;21924:40;;;:::o;21970:99::-;22022:6;22056:5;22050:12;22040:22;;22029:40;;;:::o;22075:168::-;22158:11;22192:6;22187:3;22180:19;22232:4;22227:3;22223:14;22208:29;;22170:73;;;;:::o;22249:169::-;22333:11;22367:6;22362:3;22355:19;22407:4;22402:3;22398:14;22383:29;;22345:73;;;;:::o;22424:148::-;22526:11;22563:3;22548:18;;22538:34;;;;:::o;22578:305::-;22618:3;22637:20;22655:1;22637:20;:::i;:::-;22632:25;;22671:20;22689:1;22671:20;:::i;:::-;22666:25;;22825:1;22757:66;22753:74;22750:1;22747:81;22744:2;;;22831:18;;:::i;:::-;22744:2;22875:1;22872;22868:9;22861:16;;22622:261;;;;:::o;22889:185::-;22929:1;22946:20;22964:1;22946:20;:::i;:::-;22941:25;;22980:20;22998:1;22980:20;:::i;:::-;22975:25;;23019:1;23009:2;;23024:18;;:::i;:::-;23009:2;23066:1;23063;23059:9;23054:14;;22931:143;;;;:::o;23080:191::-;23120:4;23140:20;23158:1;23140:20;:::i;:::-;23135:25;;23174:20;23192:1;23174:20;:::i;:::-;23169:25;;23213:1;23210;23207:8;23204:2;;;23218:18;;:::i;:::-;23204:2;23263:1;23260;23256:9;23248:17;;23125:146;;;;:::o;23277:96::-;23314:7;23343:24;23361:5;23343:24;:::i;:::-;23332:35;;23322:51;;;:::o;23379:90::-;23413:7;23456:5;23449:13;23442:21;23431:32;;23421:48;;;:::o;23475:149::-;23511:7;23551:66;23544:5;23540:78;23529:89;;23519:105;;;:::o;23630:126::-;23667:7;23707:42;23700:5;23696:54;23685:65;;23675:81;;;:::o;23762:77::-;23799:7;23828:5;23817:16;;23807:32;;;:::o;23845:154::-;23929:6;23924:3;23919;23906:30;23991:1;23982:6;23977:3;23973:16;23966:27;23896:103;;;:::o;24005:307::-;24073:1;24083:113;24097:6;24094:1;24091:13;24083:113;;;24182:1;24177:3;24173:11;24167:18;24163:1;24158:3;24154:11;24147:39;24119:2;24116:1;24112:10;24107:15;;24083:113;;;24214:6;24211:1;24208:13;24205:2;;;24294:1;24285:6;24280:3;24276:16;24269:27;24205:2;24054:258;;;;:::o;24318:320::-;24362:6;24399:1;24393:4;24389:12;24379:22;;24446:1;24440:4;24436:12;24467:18;24457:2;;24523:4;24515:6;24511:17;24501:27;;24457:2;24585;24577:6;24574:14;24554:18;24551:38;24548:2;;;24604:18;;:::i;:::-;24548:2;24369:269;;;;:::o;24644:281::-;24727:27;24749:4;24727:27;:::i;:::-;24719:6;24715:40;24857:6;24845:10;24842:22;24821:18;24809:10;24806:34;24803:62;24800:2;;;24868:18;;:::i;:::-;24800:2;24908:10;24904:2;24897:22;24687:238;;;:::o;24931:233::-;24970:3;24993:24;25011:5;24993:24;:::i;:::-;24984:33;;25039:66;25032:5;25029:77;25026:2;;;25109:18;;:::i;:::-;25026:2;25156:1;25149:5;25145:13;25138:20;;24974:190;;;:::o;25170:176::-;25202:1;25219:20;25237:1;25219:20;:::i;:::-;25214:25;;25253:20;25271:1;25253:20;:::i;:::-;25248:25;;25292:1;25282:2;;25297:18;;:::i;:::-;25282:2;25338:1;25335;25331:9;25326:14;;25204:142;;;;:::o;25352:180::-;25400:77;25397:1;25390:88;25497:4;25494:1;25487:15;25521:4;25518:1;25511:15;25538:180;25586:77;25583:1;25576:88;25683:4;25680:1;25673:15;25707:4;25704:1;25697:15;25724:180;25772:77;25769:1;25762:88;25869:4;25866:1;25859:15;25893:4;25890:1;25883:15;25910:180;25958:77;25955:1;25948:88;26055:4;26052:1;26045:15;26079:4;26076:1;26069:15;26096:102;26137:6;26188:2;26184:7;26179:2;26172:5;26168:14;26164:28;26154:38;;26144:54;;;:::o;26204:237::-;26344:34;26340:1;26332:6;26328:14;26321:58;26413:20;26408:2;26400:6;26396:15;26389:45;26310:131;:::o;26447:225::-;26587:34;26583:1;26575:6;26571:14;26564:58;26656:8;26651:2;26643:6;26639:15;26632:33;26553:119;:::o;26678:224::-;26818:34;26814:1;26806:6;26802:14;26795:58;26887:7;26882:2;26874:6;26870:15;26863:32;26784:118;:::o;26908:178::-;27048:30;27044:1;27036:6;27032:14;27025:54;27014:72;:::o;27092:223::-;27232:34;27228:1;27220:6;27216:14;27209:58;27301:6;27296:2;27288:6;27284:15;27277:31;27198:117;:::o;27321:175::-;27461:27;27457:1;27449:6;27445:14;27438:51;27427:69;:::o;27502:228::-;27642:34;27638:1;27630:6;27626:14;27619:58;27711:11;27706:2;27698:6;27694:15;27687:36;27608:122;:::o;27736:249::-;27876:34;27872:1;27864:6;27860:14;27853:58;27945:32;27940:2;27932:6;27928:15;27921:57;27842:143;:::o;27991:182::-;28131:34;28127:1;28119:6;28115:14;28108:58;28097:76;:::o;28179:182::-;28319:34;28315:1;28307:6;28303:14;28296:58;28285:76;:::o;28367:174::-;28507:26;28503:1;28495:6;28491:14;28484:50;28473:68;:::o;28547:220::-;28687:34;28683:1;28675:6;28671:14;28664:58;28756:3;28751:2;28743:6;28739:15;28732:28;28653:114;:::o;28773:233::-;28913:34;28909:1;28901:6;28897:14;28890:58;28982:16;28977:2;28969:6;28965:15;28958:41;28879:127;:::o;29012:122::-;29085:24;29103:5;29085:24;:::i;:::-;29078:5;29075:35;29065:2;;29124:1;29121;29114:12;29065:2;29055:79;:::o;29140:116::-;29210:21;29225:5;29210:21;:::i;:::-;29203:5;29200:32;29190:2;;29246:1;29243;29236:12;29190:2;29180:76;:::o;29262:120::-;29334:23;29351:5;29334:23;:::i;:::-;29327:5;29324:34;29314:2;;29372:1;29369;29362:12;29314:2;29304:78;:::o;29388:122::-;29461:24;29479:5;29461:24;:::i;:::-;29454:5;29451:35;29441:2;;29500:1;29497;29490:12;29441:2;29431:79;:::o

Swarm Source

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