ETH Price: $3,319.07 (-1.61%)
Gas: 1 Gwei

Token

Modern Poker Club (MPC)
 

Overview

Max Total Supply

1,207 MPC

Holders

189

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MPC
0xDbeCd8E7790E2f053ae1F47D64BC7F8ea7bCf77D
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:
ModernPokerClubToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
// 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/IERC721.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    using Address for address;
    using Strings for uint256;
    string private baseURI;
    string private baseExtension = ".json";
    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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


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

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

  
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
  function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "Modern Poker Club: URI query for nonexistent token"
        );

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function setBaseUri(string memory _baseUri) public onlyOwner {
        baseURI = _baseUri;
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/roles/Roles.sol


pragma solidity ^0.8.0;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: contracts/roles/MinterRole.sol


pragma solidity ^0.8.0;


abstract contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: contracts/ModernPokerClubToken.sol


pragma solidity ^0.8.4;


contract ModernPokerClubToken is ERC721A, MinterRole {
    constructor(string memory _name, string memory _symbol, string memory _baseURI)
        ERC721A(_name, _symbol, _baseURI)
    {}
    event Mint(address indexed to, uint256 indexed tokenId);

    function mint(address beneficiary ,uint256 quantity) public onlyMinter returns (bool) {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        _safeMint(beneficiary, quantity);
        emit Mint(beneficiary, quantity);

        return true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":"account","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceMinter","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506002908051906020019062000051929190620003e5565b503480156200005f57600080fd5b5060405162003b8638038062003b86833981810160405281019062000085919062000513565b828282620000a86200009c6200013560201b60201c565b6200013d60201b60201c565b8260059080519060200190620000c0929190620003e5565b508160069080519060200190620000d9929190620003e5565b50620000ea6200020160201b60201c565b600381905550806001908051906020019062000108929190620003e5565b505050506200012c620001206200013560201b60201c565b6200020660201b60201c565b5050506200086b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b6200022181600b6200026760201b620010141790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6200027982826200031a60201b60201c565b15620002bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b3906200061a565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200038e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000385906200063c565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620003f39062000704565b90600052602060002090601f01602090048101928262000417576000855562000463565b82601f106200043257805160ff191683800117855562000463565b8280016001018555821562000463579182015b828111156200046257825182559160200191906001019062000445565b5b50905062000472919062000476565b5090565b5b808211156200049157600081600090555060010162000477565b5090565b6000620004ac620004a68462000687565b6200065e565b905082815260208101848484011115620004cb57620004ca620007d3565b5b620004d8848285620006ce565b509392505050565b600082601f830112620004f857620004f7620007ce565b5b81516200050a84826020860162000495565b91505092915050565b6000806000606084860312156200052f576200052e620007dd565b5b600084015167ffffffffffffffff81111562000550576200054f620007d8565b5b6200055e86828701620004e0565b935050602084015167ffffffffffffffff811115620005825762000581620007d8565b5b6200059086828701620004e0565b925050604084015167ffffffffffffffff811115620005b457620005b3620007d8565b5b620005c286828701620004e0565b9150509250925092565b6000620005db601f83620006bd565b9150620005e882620007f3565b602082019050919050565b600062000602602283620006bd565b91506200060f826200081c565b604082019050919050565b600060208201905081810360008301526200063581620005cc565b9050919050565b600060208201905081810360008301526200065781620005f3565b9050919050565b60006200066a6200067d565b90506200067882826200073a565b919050565b6000604051905090565b600067ffffffffffffffff821115620006a557620006a46200079f565b5b620006b082620007e2565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006ee578082015181840152602081019050620006d1565b83811115620006fe576000848401525b50505050565b600060028204905060018216806200071d57607f821691505b6020821081141562000734576200073362000770565b5b50919050565b6200074582620007e2565b810181811067ffffffffffffffff821117156200076757620007666200079f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b61330b806200087b6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a22cb4651161007c578063a22cb4651461034f578063aa271e1a1461036b578063b88d4fde1461039b578063c87b56dd146103b7578063e985e9c5146103e7578063f2fde38b1461041757610142565b80638da5cb5b146102d157806395d89b41146102ef578063983b2d561461030d5780639865027514610329578063a0bcfc7f1461033357610142565b806323b872dd1161010a57806323b872dd146101ff57806340c10f191461021b57806342842e0e1461024b5780636352211e1461026757806370a0823114610297578063715018a6146102c757610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c919061277b565b610433565b60405161016e9190612b27565b60405180910390f35b61017f610515565b60405161018c9190612b42565b60405180910390f35b6101af60048036038101906101aa919061281e565b6105a7565b6040516101bc9190612ac0565b60405180910390f35b6101df60048036038101906101da919061273b565b610623565b005b6101e961072e565b6040516101f69190612c44565b60405180910390f35b61021960048036038101906102149190612625565b610745565b005b6102356004803603810190610230919061273b565b610755565b6040516102429190612b27565b60405180910390f35b61026560048036038101906102609190612625565b6107fe565b005b610281600480360381019061027c919061281e565b61081e565b60405161028e9190612ac0565b60405180910390f35b6102b160048036038101906102ac91906125b8565b610834565b6040516102be9190612c44565b60405180910390f35b6102cf610904565b005b6102d961098c565b6040516102e69190612ac0565b60405180910390f35b6102f76109b5565b6040516103049190612b42565b60405180910390f35b610327600480360381019061032291906125b8565b610a47565b005b610331610aa2565b005b61034d600480360381019061034891906127d5565b610ab4565b005b610369600480360381019061036491906126fb565b610b4a565b005b610385600480360381019061038091906125b8565b610cc2565b6040516103929190612b27565b60405180910390f35b6103b560048036038101906103b09190612678565b610cdf565b005b6103d160048036038101906103cc919061281e565b610d5b565b6040516103de9190612b42565b60405180910390f35b61040160048036038101906103fc91906125e5565b610e88565b60405161040e9190612b27565b60405180910390f35b610431600480360381019061042c91906125b8565b610f1c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d826110bc565b5b9050919050565b60606005805461052490612eaf565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612eaf565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b282611126565b6105e8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062e8261081e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610696576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b5611174565b73ffffffffffffffffffffffffffffffffffffffff16141580156106e757506106e5816106e0611174565b610e88565b155b1561071e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61072983838361117c565b505050565b600061073861122e565b6004546003540303905090565b610750838383611233565b505050565b6000610767610762611174565b610cc2565b6107a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079d90612ba4565b60405180910390fd5b6107b08383611724565b818373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a36001905092915050565b61081983838360405180602001604052806000815250610cdf565b505050565b600061082982611742565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561089c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61090c611174565b73ffffffffffffffffffffffffffffffffffffffff1661092a61098c565b73ffffffffffffffffffffffffffffffffffffffff1614610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790612be4565b60405180910390fd5b61098a60006119d1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546109c490612eaf565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090612eaf565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b610a57610a52611174565b610cc2565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612ba4565b60405180910390fd5b610a9f81611a95565b50565b610ab2610aad611174565b611aef565b565b610abc611174565b73ffffffffffffffffffffffffffffffffffffffff16610ada61098c565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790612be4565b60405180910390fd5b8060019080519060200190610b46929190612389565b5050565b610b52611174565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a6000610bc4611174565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c71611174565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cb69190612b27565b60405180910390a35050565b6000610cd882600b611b4990919063ffffffff16565b9050919050565b610cea848484611233565b610d098373ffffffffffffffffffffffffffffffffffffffff16611c11565b8015610d1e5750610d1c84848484611c34565b155b15610d55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610d6682611126565b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90612c24565b60405180910390fd5b600060018054610db490612eaf565b80601f0160208091040260200160405190810160405280929190818152602001828054610de090612eaf565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b505050505090506000815111610e525760405180602001604052806000815250610e80565b80610e5c84611d94565b6002604051602001610e7093929190612a8f565b6040516020818303038152906040525b915050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f24611174565b73ffffffffffffffffffffffffffffffffffffffff16610f4261098c565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90612be4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90612b84565b60405180910390fd5b611011816119d1565b50565b61101e8282611b49565b1561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590612b64565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161113161122e565b11158015611140575060035482105b801561116d575060076000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061123e82611742565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611265611174565b73ffffffffffffffffffffffffffffffffffffffff16148061129857506112978260000151611292611174565b610e88565b5b806112dd57506112a6611174565b73ffffffffffffffffffffffffffffffffffffffff166112c5846105a7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611316576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461137f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113e6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113f38585856001611ef5565b611403600084846000015161117c565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836007600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426007600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116b4576003548110156116b35782600001516007600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516007600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461171d8585856001611efb565b5050505050565b61173e828260405180602001604052806000815250611f01565b5050565b61174a61240f565b60008290508061175861122e565b11158015611767575060035481105b1561199a576000600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161199857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461187c5780925050506119cc565b5b60011561199757818060019003925050600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146119925780925050506119cc565b61187d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611aa981600b61101490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611b0381600b611f1390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190612c04565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5a611174565b8786866040518563ffffffff1660e01b8152600401611c7c9493929190612adb565b602060405180830381600087803b158015611c9657600080fd5b505af1925050508015611cc757506040513d601f19601f82011682018060405250810190611cc491906127a8565b60015b611d41573d8060008114611cf7576040519150601f19603f3d011682016040523d82523d6000602084013e611cfc565b606091505b50600081511415611d39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ddc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ef0565b600082905060005b60008214611e0e578080611df790612f12565b915050600a82611e079190612d94565b9150611de4565b60008167ffffffffffffffff811115611e2a57611e29613048565b5b6040519080825280601f01601f191660200182016040528015611e5c5781602001600182028036833780820191505090505b5090505b60008514611ee957600182611e759190612dc5565b9150600a85611e849190612f5b565b6030611e909190612d3e565b60f81b818381518110611ea657611ea5613019565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ee29190612d94565b9450611e60565b8093505050505b919050565b50505050565b50505050565b611f0e8383836001611fba565b505050565b611f1d8282611b49565b611f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5390612bc4565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006003549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612028576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612063576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120706000868387611ef5565b83600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846007600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426007600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561223a57506122398773ffffffffffffffffffffffffffffffffffffffff16611c11565b5b15612300575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122af6000888480600101955088611c34565b6122e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156122405782600354146122fb57600080fd5b61236c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612301575b8160038190555050506123826000868387611efb565b5050505050565b82805461239590612eaf565b90600052602060002090601f0160209004810192826123b757600085556123fe565b82601f106123d057805160ff19168380011785556123fe565b828001600101855582156123fe579182015b828111156123fd5782518255916020019190600101906123e2565b5b50905061240b9190612452565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561246b576000816000905550600101612453565b5090565b600061248261247d84612c84565b612c5f565b90508281526020810184848401111561249e5761249d61307c565b5b6124a9848285612e6d565b509392505050565b60006124c46124bf84612cb5565b612c5f565b9050828152602081018484840111156124e0576124df61307c565b5b6124eb848285612e6d565b509392505050565b60008135905061250281613279565b92915050565b60008135905061251781613290565b92915050565b60008135905061252c816132a7565b92915050565b600081519050612541816132a7565b92915050565b600082601f83011261255c5761255b613077565b5b813561256c84826020860161246f565b91505092915050565b600082601f83011261258a57612589613077565b5b813561259a8482602086016124b1565b91505092915050565b6000813590506125b2816132be565b92915050565b6000602082840312156125ce576125cd613086565b5b60006125dc848285016124f3565b91505092915050565b600080604083850312156125fc576125fb613086565b5b600061260a858286016124f3565b925050602061261b858286016124f3565b9150509250929050565b60008060006060848603121561263e5761263d613086565b5b600061264c868287016124f3565b935050602061265d868287016124f3565b925050604061266e868287016125a3565b9150509250925092565b6000806000806080858703121561269257612691613086565b5b60006126a0878288016124f3565b94505060206126b1878288016124f3565b93505060406126c2878288016125a3565b925050606085013567ffffffffffffffff8111156126e3576126e2613081565b5b6126ef87828801612547565b91505092959194509250565b6000806040838503121561271257612711613086565b5b6000612720858286016124f3565b925050602061273185828601612508565b9150509250929050565b6000806040838503121561275257612751613086565b5b6000612760858286016124f3565b9250506020612771858286016125a3565b9150509250929050565b60006020828403121561279157612790613086565b5b600061279f8482850161251d565b91505092915050565b6000602082840312156127be576127bd613086565b5b60006127cc84828501612532565b91505092915050565b6000602082840312156127eb576127ea613086565b5b600082013567ffffffffffffffff81111561280957612808613081565b5b61281584828501612575565b91505092915050565b60006020828403121561283457612833613086565b5b6000612842848285016125a3565b91505092915050565b61285481612df9565b82525050565b61286381612e0b565b82525050565b600061287482612cfb565b61287e8185612d11565b935061288e818560208601612e7c565b6128978161308b565b840191505092915050565b60006128ad82612d06565b6128b78185612d22565b93506128c7818560208601612e7c565b6128d08161308b565b840191505092915050565b60006128e682612d06565b6128f08185612d33565b9350612900818560208601612e7c565b80840191505092915050565b6000815461291981612eaf565b6129238186612d33565b9450600182166000811461293e576001811461294f57612982565b60ff19831686528186019350612982565b61295885612ce6565b60005b8381101561297a5781548189015260018201915060208101905061295b565b838801955050505b50505092915050565b6000612998601f83612d22565b91506129a38261309c565b602082019050919050565b60006129bb602683612d22565b91506129c6826130c5565b604082019050919050565b60006129de603083612d22565b91506129e982613114565b604082019050919050565b6000612a01602183612d22565b9150612a0c82613163565b604082019050919050565b6000612a24602083612d22565b9150612a2f826131b2565b602082019050919050565b6000612a47602283612d22565b9150612a52826131db565b604082019050919050565b6000612a6a603283612d22565b9150612a758261322a565b604082019050919050565b612a8981612e63565b82525050565b6000612a9b82866128db565b9150612aa782856128db565b9150612ab3828461290c565b9150819050949350505050565b6000602082019050612ad5600083018461284b565b92915050565b6000608082019050612af0600083018761284b565b612afd602083018661284b565b612b0a6040830185612a80565b8181036060830152612b1c8184612869565b905095945050505050565b6000602082019050612b3c600083018461285a565b92915050565b60006020820190508181036000830152612b5c81846128a2565b905092915050565b60006020820190508181036000830152612b7d8161298b565b9050919050565b60006020820190508181036000830152612b9d816129ae565b9050919050565b60006020820190508181036000830152612bbd816129d1565b9050919050565b60006020820190508181036000830152612bdd816129f4565b9050919050565b60006020820190508181036000830152612bfd81612a17565b9050919050565b60006020820190508181036000830152612c1d81612a3a565b9050919050565b60006020820190508181036000830152612c3d81612a5d565b9050919050565b6000602082019050612c596000830184612a80565b92915050565b6000612c69612c7a565b9050612c758282612ee1565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9f57612c9e613048565b5b612ca88261308b565b9050602081019050919050565b600067ffffffffffffffff821115612cd057612ccf613048565b5b612cd98261308b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d4982612e63565b9150612d5483612e63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d8957612d88612f8c565b5b828201905092915050565b6000612d9f82612e63565b9150612daa83612e63565b925082612dba57612db9612fbb565b5b828204905092915050565b6000612dd082612e63565b9150612ddb83612e63565b925082821015612dee57612ded612f8c565b5b828203905092915050565b6000612e0482612e43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e9a578082015181840152602081019050612e7f565b83811115612ea9576000848401525b50505050565b60006002820490506001821680612ec757607f821691505b60208210811415612edb57612eda612fea565b5b50919050565b612eea8261308b565b810181811067ffffffffffffffff82111715612f0957612f08613048565b5b80604052505050565b6000612f1d82612e63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f5057612f4f612f8c565b5b600182019050919050565b6000612f6682612e63565b9150612f7183612e63565b925082612f8157612f80612fbb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560008201527f20746865204d696e74657220726f6c6500000000000000000000000000000000602082015250565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6f6465726e20506f6b657220436c75623a2055524920717565727920666f7260008201527f206e6f6e6578697374656e7420746f6b656e0000000000000000000000000000602082015250565b61328281612df9565b811461328d57600080fd5b50565b61329981612e0b565b81146132a457600080fd5b50565b6132b081612e17565b81146132bb57600080fd5b50565b6132c781612e63565b81146132d257600080fd5b5056fea2646970667358221220cefb4142d235a889397a67e50119a70f2b11afa8ceeb694c8ca4829a57f0142564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000114d6f6465726e20506f6b657220436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d50430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6d70632d7468756d626e61696c2e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a22cb4651161007c578063a22cb4651461034f578063aa271e1a1461036b578063b88d4fde1461039b578063c87b56dd146103b7578063e985e9c5146103e7578063f2fde38b1461041757610142565b80638da5cb5b146102d157806395d89b41146102ef578063983b2d561461030d5780639865027514610329578063a0bcfc7f1461033357610142565b806323b872dd1161010a57806323b872dd146101ff57806340c10f191461021b57806342842e0e1461024b5780636352211e1461026757806370a0823114610297578063715018a6146102c757610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c919061277b565b610433565b60405161016e9190612b27565b60405180910390f35b61017f610515565b60405161018c9190612b42565b60405180910390f35b6101af60048036038101906101aa919061281e565b6105a7565b6040516101bc9190612ac0565b60405180910390f35b6101df60048036038101906101da919061273b565b610623565b005b6101e961072e565b6040516101f69190612c44565b60405180910390f35b61021960048036038101906102149190612625565b610745565b005b6102356004803603810190610230919061273b565b610755565b6040516102429190612b27565b60405180910390f35b61026560048036038101906102609190612625565b6107fe565b005b610281600480360381019061027c919061281e565b61081e565b60405161028e9190612ac0565b60405180910390f35b6102b160048036038101906102ac91906125b8565b610834565b6040516102be9190612c44565b60405180910390f35b6102cf610904565b005b6102d961098c565b6040516102e69190612ac0565b60405180910390f35b6102f76109b5565b6040516103049190612b42565b60405180910390f35b610327600480360381019061032291906125b8565b610a47565b005b610331610aa2565b005b61034d600480360381019061034891906127d5565b610ab4565b005b610369600480360381019061036491906126fb565b610b4a565b005b610385600480360381019061038091906125b8565b610cc2565b6040516103929190612b27565b60405180910390f35b6103b560048036038101906103b09190612678565b610cdf565b005b6103d160048036038101906103cc919061281e565b610d5b565b6040516103de9190612b42565b60405180910390f35b61040160048036038101906103fc91906125e5565b610e88565b60405161040e9190612b27565b60405180910390f35b610431600480360381019061042c91906125b8565b610f1c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061050e575061050d826110bc565b5b9050919050565b60606005805461052490612eaf565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612eaf565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b282611126565b6105e8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061062e8261081e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610696576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106b5611174565b73ffffffffffffffffffffffffffffffffffffffff16141580156106e757506106e5816106e0611174565b610e88565b155b1561071e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61072983838361117c565b505050565b600061073861122e565b6004546003540303905090565b610750838383611233565b505050565b6000610767610762611174565b610cc2565b6107a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079d90612ba4565b60405180910390fd5b6107b08383611724565b818373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688560405160405180910390a36001905092915050565b61081983838360405180602001604052806000815250610cdf565b505050565b600061082982611742565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561089c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61090c611174565b73ffffffffffffffffffffffffffffffffffffffff1661092a61098c565b73ffffffffffffffffffffffffffffffffffffffff1614610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790612be4565b60405180910390fd5b61098a60006119d1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546109c490612eaf565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090612eaf565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b610a57610a52611174565b610cc2565b610a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8d90612ba4565b60405180910390fd5b610a9f81611a95565b50565b610ab2610aad611174565b611aef565b565b610abc611174565b73ffffffffffffffffffffffffffffffffffffffff16610ada61098c565b73ffffffffffffffffffffffffffffffffffffffff1614610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790612be4565b60405180910390fd5b8060019080519060200190610b46929190612389565b5050565b610b52611174565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a6000610bc4611174565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610c71611174565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610cb69190612b27565b60405180910390a35050565b6000610cd882600b611b4990919063ffffffff16565b9050919050565b610cea848484611233565b610d098373ffffffffffffffffffffffffffffffffffffffff16611c11565b8015610d1e5750610d1c84848484611c34565b155b15610d55576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610d6682611126565b610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90612c24565b60405180910390fd5b600060018054610db490612eaf565b80601f0160208091040260200160405190810160405280929190818152602001828054610de090612eaf565b8015610e2d5780601f10610e0257610100808354040283529160200191610e2d565b820191906000526020600020905b815481529060010190602001808311610e1057829003601f168201915b505050505090506000815111610e525760405180602001604052806000815250610e80565b80610e5c84611d94565b6002604051602001610e7093929190612a8f565b6040516020818303038152906040525b915050919050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f24611174565b73ffffffffffffffffffffffffffffffffffffffff16610f4261098c565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90612be4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90612b84565b60405180910390fd5b611011816119d1565b50565b61101e8282611b49565b1561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590612b64565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161113161122e565b11158015611140575060035482105b801561116d575060076000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061123e82611742565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611265611174565b73ffffffffffffffffffffffffffffffffffffffff16148061129857506112978260000151611292611174565b610e88565b5b806112dd57506112a6611174565b73ffffffffffffffffffffffffffffffffffffffff166112c5846105a7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611316576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461137f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113e6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113f38585856001611ef5565b611403600084846000015161117c565b6001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836007600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426007600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156116b4576003548110156116b35782600001516007600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516007600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461171d8585856001611efb565b5050505050565b61173e828260405180602001604052806000815250611f01565b5050565b61174a61240f565b60008290508061175861122e565b11158015611767575060035481105b1561199a576000600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161199857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461187c5780925050506119cc565b5b60011561199757818060019003925050600760008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146119925780925050506119cc565b61187d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611aa981600b61101490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b611b0381600b611f1390919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb190612c04565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5a611174565b8786866040518563ffffffff1660e01b8152600401611c7c9493929190612adb565b602060405180830381600087803b158015611c9657600080fd5b505af1925050508015611cc757506040513d601f19601f82011682018060405250810190611cc491906127a8565b60015b611d41573d8060008114611cf7576040519150601f19603f3d011682016040523d82523d6000602084013e611cfc565b606091505b50600081511415611d39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ddc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ef0565b600082905060005b60008214611e0e578080611df790612f12565b915050600a82611e079190612d94565b9150611de4565b60008167ffffffffffffffff811115611e2a57611e29613048565b5b6040519080825280601f01601f191660200182016040528015611e5c5781602001600182028036833780820191505090505b5090505b60008514611ee957600182611e759190612dc5565b9150600a85611e849190612f5b565b6030611e909190612d3e565b60f81b818381518110611ea657611ea5613019565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ee29190612d94565b9450611e60565b8093505050505b919050565b50505050565b50505050565b611f0e8383836001611fba565b505050565b611f1d8282611b49565b611f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5390612bc4565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006003549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612028576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612063576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120706000868387611ef5565b83600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846007600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426007600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561223a57506122398773ffffffffffffffffffffffffffffffffffffffff16611c11565b5b15612300575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122af6000888480600101955088611c34565b6122e5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156122405782600354146122fb57600080fd5b61236c565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612301575b8160038190555050506123826000868387611efb565b5050505050565b82805461239590612eaf565b90600052602060002090601f0160209004810192826123b757600085556123fe565b82601f106123d057805160ff19168380011785556123fe565b828001600101855582156123fe579182015b828111156123fd5782518255916020019190600101906123e2565b5b50905061240b9190612452565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561246b576000816000905550600101612453565b5090565b600061248261247d84612c84565b612c5f565b90508281526020810184848401111561249e5761249d61307c565b5b6124a9848285612e6d565b509392505050565b60006124c46124bf84612cb5565b612c5f565b9050828152602081018484840111156124e0576124df61307c565b5b6124eb848285612e6d565b509392505050565b60008135905061250281613279565b92915050565b60008135905061251781613290565b92915050565b60008135905061252c816132a7565b92915050565b600081519050612541816132a7565b92915050565b600082601f83011261255c5761255b613077565b5b813561256c84826020860161246f565b91505092915050565b600082601f83011261258a57612589613077565b5b813561259a8482602086016124b1565b91505092915050565b6000813590506125b2816132be565b92915050565b6000602082840312156125ce576125cd613086565b5b60006125dc848285016124f3565b91505092915050565b600080604083850312156125fc576125fb613086565b5b600061260a858286016124f3565b925050602061261b858286016124f3565b9150509250929050565b60008060006060848603121561263e5761263d613086565b5b600061264c868287016124f3565b935050602061265d868287016124f3565b925050604061266e868287016125a3565b9150509250925092565b6000806000806080858703121561269257612691613086565b5b60006126a0878288016124f3565b94505060206126b1878288016124f3565b93505060406126c2878288016125a3565b925050606085013567ffffffffffffffff8111156126e3576126e2613081565b5b6126ef87828801612547565b91505092959194509250565b6000806040838503121561271257612711613086565b5b6000612720858286016124f3565b925050602061273185828601612508565b9150509250929050565b6000806040838503121561275257612751613086565b5b6000612760858286016124f3565b9250506020612771858286016125a3565b9150509250929050565b60006020828403121561279157612790613086565b5b600061279f8482850161251d565b91505092915050565b6000602082840312156127be576127bd613086565b5b60006127cc84828501612532565b91505092915050565b6000602082840312156127eb576127ea613086565b5b600082013567ffffffffffffffff81111561280957612808613081565b5b61281584828501612575565b91505092915050565b60006020828403121561283457612833613086565b5b6000612842848285016125a3565b91505092915050565b61285481612df9565b82525050565b61286381612e0b565b82525050565b600061287482612cfb565b61287e8185612d11565b935061288e818560208601612e7c565b6128978161308b565b840191505092915050565b60006128ad82612d06565b6128b78185612d22565b93506128c7818560208601612e7c565b6128d08161308b565b840191505092915050565b60006128e682612d06565b6128f08185612d33565b9350612900818560208601612e7c565b80840191505092915050565b6000815461291981612eaf565b6129238186612d33565b9450600182166000811461293e576001811461294f57612982565b60ff19831686528186019350612982565b61295885612ce6565b60005b8381101561297a5781548189015260018201915060208101905061295b565b838801955050505b50505092915050565b6000612998601f83612d22565b91506129a38261309c565b602082019050919050565b60006129bb602683612d22565b91506129c6826130c5565b604082019050919050565b60006129de603083612d22565b91506129e982613114565b604082019050919050565b6000612a01602183612d22565b9150612a0c82613163565b604082019050919050565b6000612a24602083612d22565b9150612a2f826131b2565b602082019050919050565b6000612a47602283612d22565b9150612a52826131db565b604082019050919050565b6000612a6a603283612d22565b9150612a758261322a565b604082019050919050565b612a8981612e63565b82525050565b6000612a9b82866128db565b9150612aa782856128db565b9150612ab3828461290c565b9150819050949350505050565b6000602082019050612ad5600083018461284b565b92915050565b6000608082019050612af0600083018761284b565b612afd602083018661284b565b612b0a6040830185612a80565b8181036060830152612b1c8184612869565b905095945050505050565b6000602082019050612b3c600083018461285a565b92915050565b60006020820190508181036000830152612b5c81846128a2565b905092915050565b60006020820190508181036000830152612b7d8161298b565b9050919050565b60006020820190508181036000830152612b9d816129ae565b9050919050565b60006020820190508181036000830152612bbd816129d1565b9050919050565b60006020820190508181036000830152612bdd816129f4565b9050919050565b60006020820190508181036000830152612bfd81612a17565b9050919050565b60006020820190508181036000830152612c1d81612a3a565b9050919050565b60006020820190508181036000830152612c3d81612a5d565b9050919050565b6000602082019050612c596000830184612a80565b92915050565b6000612c69612c7a565b9050612c758282612ee1565b919050565b6000604051905090565b600067ffffffffffffffff821115612c9f57612c9e613048565b5b612ca88261308b565b9050602081019050919050565b600067ffffffffffffffff821115612cd057612ccf613048565b5b612cd98261308b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d4982612e63565b9150612d5483612e63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d8957612d88612f8c565b5b828201905092915050565b6000612d9f82612e63565b9150612daa83612e63565b925082612dba57612db9612fbb565b5b828204905092915050565b6000612dd082612e63565b9150612ddb83612e63565b925082821015612dee57612ded612f8c565b5b828203905092915050565b6000612e0482612e43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e9a578082015181840152602081019050612e7f565b83811115612ea9576000848401525b50505050565b60006002820490506001821680612ec757607f821691505b60208210811415612edb57612eda612fea565b5b50919050565b612eea8261308b565b810181811067ffffffffffffffff82111715612f0957612f08613048565b5b80604052505050565b6000612f1d82612e63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f5057612f4f612f8c565b5b600182019050919050565b6000612f6682612e63565b9150612f7183612e63565b925082612f8157612f80612fbb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766560008201527f20746865204d696e74657220726f6c6500000000000000000000000000000000602082015250565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6f6465726e20506f6b657220436c75623a2055524920717565727920666f7260008201527f206e6f6e6578697374656e7420746f6b656e0000000000000000000000000000602082015250565b61328281612df9565b811461328d57600080fd5b50565b61329981612e0b565b81146132a457600080fd5b50565b6132b081612e17565b81146132bb57600080fd5b50565b6132c781612e63565b81146132d257600080fd5b5056fea2646970667358221220cefb4142d235a889397a67e50119a70f2b11afa8ceeb694c8ca4829a57f0142564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000114d6f6465726e20506f6b657220436c756200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d50430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6d70632d7468756d626e61696c2e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Modern Poker Club
Arg [1] : _symbol (string): MPC
Arg [2] : _baseURI (string): https://mpc-thumbnail.s3.us-east-2.amazonaws.com/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 4d6f6465726e20506f6b657220436c7562000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d50430000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [8] : 68747470733a2f2f6d70632d7468756d626e61696c2e73332e75732d65617374
Arg [9] : 2d322e616d617a6f6e6177732e636f6d2f000000000000000000000000000000


Deployed Bytecode Sourcemap

49043:549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28419:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31888:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33721:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33284:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27668:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34692:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49303:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34933:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31695:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28838:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22986:103;;;:::i;:::-;;22335:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32057:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48511:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48611:79;;;:::i;:::-;;33124:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34038:302;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48394:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35189:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32234:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34411:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23244:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28419:355;28566:4;28623:25;28608:40;;;:11;:40;;;;:105;;;;28680:33;28665:48;;;:11;:48;;;;28608:105;:158;;;;28730:36;28754:11;28730:23;:36::i;:::-;28608:158;28588:178;;28419:355;;;:::o;31888:100::-;31942:13;31975:5;31968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31888:100;:::o;33721:245::-;33825:7;33855:16;33863:7;33855;:16::i;:::-;33850:64;;33880:34;;;;;;;;;;;;;;33850:64;33934:15;:24;33950:7;33934:24;;;;;;;;;;;;;;;;;;;;;33927:31;;33721:245;;;:::o;33284:371::-;33357:13;33373:24;33389:7;33373:15;:24::i;:::-;33357:40;;33418:5;33412:11;;:2;:11;;;33408:48;;;33432:24;;;;;;;;;;;;;;33408:48;33489:5;33473:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33499:37;33516:5;33523:12;:10;:12::i;:::-;33499:16;:37::i;:::-;33498:38;33473:63;33469:138;;;33560:35;;;;;;;;;;;;;;33469:138;33619:28;33628:2;33632:7;33641:5;33619:8;:28::i;:::-;33346:309;33284:371;;:::o;27668:303::-;27712:7;27937:15;:13;:15::i;:::-;27922:12;;27906:13;;:28;:46;27899:53;;27668:303;:::o;34692:170::-;34826:28;34836:4;34842:2;34846:7;34826:9;:28::i;:::-;34692:170;;;:::o;49303:284::-;49383:4;48291:22;48300:12;:10;:12::i;:::-;48291:8;:22::i;:::-;48283:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49480:32:::1;49490:11;49503:8;49480:9;:32::i;:::-;49546:8;49533:11;49528:27;;;;;;;;;;;;49575:4;49568:11;;49303:284:::0;;;;:::o;34933:185::-;35071:39;35088:4;35094:2;35098:7;35071:39;;;;;;;;;;;;:16;:39::i;:::-;34933:185;;;:::o;31695:124::-;31759:7;31786:20;31798:7;31786:11;:20::i;:::-;:25;;;31779:32;;31695:124;;;:::o;28838:206::-;28902:7;28943:1;28926:19;;:5;:19;;;28922:60;;;28954:28;;;;;;;;;;;;;;28922:60;29008:12;:19;29021:5;29008:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29000:36;;28993:43;;28838:206;;;:::o;22986:103::-;22566:12;:10;:12::i;:::-;22555:23;;:7;:5;:7::i;:::-;:23;;;22547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23051:30:::1;23078:1;23051:18;:30::i;:::-;22986:103::o:0;22335:87::-;22381:7;22408:6;;;;;;;;;;;22401:13;;22335:87;:::o;32057:104::-;32113:13;32146:7;32139:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32057:104;:::o;48511:92::-;48291:22;48300:12;:10;:12::i;:::-;48291:8;:22::i;:::-;48283:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;48576:19:::1;48587:7;48576:10;:19::i;:::-;48511:92:::0;:::o;48611:79::-;48655:27;48669:12;:10;:12::i;:::-;48655:13;:27::i;:::-;48611:79::o;33124:98::-;22566:12;:10;:12::i;:::-;22555:23;;:7;:5;:7::i;:::-;:23;;;22547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33206:8:::1;33196:7;:18;;;;;;;;;;;;:::i;:::-;;33124:98:::0;:::o;34038:302::-;34164:12;:10;:12::i;:::-;34152:24;;:8;:24;;;34148:54;;;34185:17;;;;;;;;;;;;;;34148:54;34260:8;34215:18;:32;34234:12;:10;:12::i;:::-;34215:32;;;;;;;;;;;;;;;:42;34248:8;34215:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34313:8;34284:48;;34299:12;:10;:12::i;:::-;34284:48;;;34323:8;34284:48;;;;;;:::i;:::-;;;;;;;;34038:302;;:::o;48394:109::-;48450:4;48474:21;48487:7;48474:8;:12;;:21;;;;:::i;:::-;48467:28;;48394:109;;;:::o;35189:406::-;35356:28;35366:4;35372:2;35376:7;35356:9;:28::i;:::-;35413:15;:2;:13;;;:15::i;:::-;:89;;;;;35446:56;35477:4;35483:2;35487:7;35496:5;35446:30;:56::i;:::-;35445:57;35413:89;35395:193;;;35536:40;;;;;;;;;;;;;;35395:193;35189:406;;;;:::o;32234:642::-;32352:13;32405:16;32413:7;32405;:16::i;:::-;32383:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;32512:28;32543:7;32512:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32612:1;32587:14;32581:28;:32;:287;;;;;;;;;;;;;;;;;32705:14;32746:18;:7;:16;:18::i;:::-;32791:13;32662:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32581:287;32561:307;;;32234:642;;;:::o;34411:214::-;34553:4;34582:18;:25;34601:5;34582:25;;;;;;;;;;;;;;;:35;34608:8;34582:35;;;;;;;;;;;;;;;;;;;;;;;;;34575:42;;34411:214;;;;:::o;23244:201::-;22566:12;:10;:12::i;:::-;22555:23;;:7;:5;:7::i;:::-;:23;;;22547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23353:1:::1;23333:22;;:8;:22;;;;23325:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23409:28;23428:8;23409:18;:28::i;:::-;23244:201:::0;:::o;47135:178::-;47213:18;47217:4;47223:7;47213:3;:18::i;:::-;47212:19;47204:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47301:4;47278;:11;;:20;47290:7;47278:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;47135:178;;:::o;21111:157::-;21196:4;21235:25;21220:40;;;:11;:40;;;;21213:47;;21111:157;;;:::o;35850:213::-;35907:4;35963:7;35944:15;:13;:15::i;:::-;:26;;:66;;;;;35997:13;;35987:7;:23;35944:66;:111;;;;;36028:11;:20;36040:7;36028:20;;;;;;;;;;;:27;;;;;;;;;;;;36027:28;35944:111;35924:131;;35850:213;;;:::o;17910:98::-;17963:7;17990:10;17983:17;;17910:98;:::o;43730:196::-;43872:2;43845:15;:24;43861:7;43845:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43910:7;43906:2;43890:28;;43899:5;43890:28;;;;;;;;;;;;43730:196;;;:::o;27392:92::-;27448:7;27392:92;:::o;39180:2138::-;39295:35;39333:20;39345:7;39333:11;:20::i;:::-;39295:58;;39366:22;39408:13;:18;;;39392:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39443:50;39460:13;:18;;;39480:12;:10;:12::i;:::-;39443:16;:50::i;:::-;39392:101;:154;;;;39534:12;:10;:12::i;:::-;39510:36;;:20;39522:7;39510:11;:20::i;:::-;:36;;;39392:154;39366:181;;39565:17;39560:66;;39591:35;;;;;;;;;;;;;;39560:66;39663:4;39641:26;;:13;:18;;;:26;;;39637:67;;39676:28;;;;;;;;;;;;;;39637:67;39733:1;39719:16;;:2;:16;;;39715:52;;;39744:23;;;;;;;;;;;;;;39715:52;39780:43;39802:4;39808:2;39812:7;39821:1;39780:21;:43::i;:::-;39888:49;39905:1;39909:7;39918:13;:18;;;39888:8;:49::i;:::-;40263:1;40233:12;:18;40246:4;40233:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40307:1;40279:12;:16;40292:2;40279:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40353:2;40325:11;:20;40337:7;40325:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40415:15;40370:11;:20;40382:7;40370:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40683:19;40715:1;40705:7;:11;40683:33;;40776:1;40735:43;;:11;:24;40747:11;40735:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40731:471;;;40960:13;;40946:11;:27;40942:245;;;41030:13;:18;;;40998:11;:24;41010:11;40998:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41113:13;:54;;;41071:11;:24;41083:11;41071:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;40942:245;40731:471;40208:1005;41249:7;41245:2;41230:27;;41239:4;41230:27;;;;;;;;;;;;41268:42;41289:4;41295:2;41299:7;41308:1;41268:20;:42::i;:::-;39284:2034;;39180:2138;;;:::o;36071:104::-;36140:27;36150:2;36154:8;36140:27;;;;;;;;;;;;:9;:27::i;:::-;36071:104;;:::o;30493:1140::-;30581:21;;:::i;:::-;30620:12;30635:7;30620:22;;30703:4;30684:15;:13;:15::i;:::-;:23;;:47;;;;;30718:13;;30711:4;:20;30684:47;30680:886;;;30752:31;30786:11;:17;30798:4;30786:17;;;;;;;;;;;30752:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30827:9;:16;;;30822:729;;30898:1;30872:28;;:9;:14;;;:28;;;30868:101;;30936:9;30929:16;;;;;;30868:101;31271:261;31278:4;31271:261;;;31311:6;;;;;;;;31356:11;:17;31368:4;31356:17;;;;;;;;;;;31344:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31430:1;31404:28;;:9;:14;;;:28;;;31400:109;;31472:9;31465:16;;;;;;31400:109;31271:261;;;30822:729;30733:833;30680:886;31594:31;;;;;;;;;;;;;;30493:1140;;;;:::o;23605:191::-;23679:16;23698:6;;;;;;;;;;;23679:25;;23724:8;23715:6;;:17;;;;;;;;;;;;;;;;;;23779:8;23748:40;;23769:8;23748:40;;;;;;;;;;;;23668:128;23605:191;:::o;48698:122::-;48755:21;48768:7;48755:8;:12;;:21;;;;:::i;:::-;48804:7;48792:20;;;;;;;;;;;;48698:122;:::o;48828:130::-;48888:24;48904:7;48888:8;:15;;:24;;;;:::i;:::-;48942:7;48928:22;;;;;;;;;;;;48828:130;:::o;47671:203::-;47743:4;47787:1;47768:21;;:7;:21;;;;47760:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47846:4;:11;;:20;47858:7;47846:20;;;;;;;;;;;;;;;;;;;;;;;;;47839:27;;47671:203;;;;:::o;9961:326::-;10021:4;10278:1;10256:7;:19;;;:23;10249:30;;9961:326;;;:::o;44418:772::-;44581:4;44631:2;44615:36;;;44670:12;:10;:12::i;:::-;44701:4;44724:7;44750:5;44615:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44598:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44958:1;44941:6;:13;:18;44937:235;;;44987:40;;;;;;;;;;;;;;44937:235;45130:6;45124:13;45115:6;45111:2;45107:15;45100:38;44598:585;44836:45;;;44826:55;;;:6;:55;;;;44819:62;;;44418:772;;;;;;:::o;18489:723::-;18545:13;18775:1;18766:5;:10;18762:53;;;18793:10;;;;;;;;;;;;;;;;;;;;;18762:53;18825:12;18840:5;18825:20;;18856:14;18881:78;18896:1;18888:4;:9;18881:78;;18914:8;;;;;:::i;:::-;;;;18945:2;18937:10;;;;;:::i;:::-;;;18881:78;;;18969:19;19001:6;18991:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18969:39;;19019:154;19035:1;19026:5;:10;19019:154;;19063:1;19053:11;;;;;:::i;:::-;;;19130:2;19122:5;:10;;;;:::i;:::-;19109:2;:24;;;;:::i;:::-;19096:39;;19079:6;19086;19079:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19159:2;19150:11;;;;;:::i;:::-;;;19019:154;;;19197:6;19183:21;;;;;18489:723;;;;:::o;45838:159::-;;;;;:::o;46656:158::-;;;;;:::o;36538:163::-;36661:32;36667:2;36671:8;36681:5;36688:4;36661:5;:32::i;:::-;36538:163;;;:::o;47393:183::-;47473:18;47477:4;47483:7;47473:3;:18::i;:::-;47465:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47563:5;47540:4;:11;;:20;47552:7;47540:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;47393:183;;:::o;36960:1966::-;37099:20;37122:13;;37099:36;;37164:1;37150:16;;:2;:16;;;37146:48;;;37175:19;;;;;;;;;;;;;;37146:48;37221:1;37209:8;:13;37205:44;;;37231:18;;;;;;;;;;;;;;37205:44;37262:61;37292:1;37296:2;37300:12;37314:8;37262:21;:61::i;:::-;37635:8;37600:12;:16;37613:2;37600:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37699:8;37659:12;:16;37672:2;37659:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37758:2;37725:11;:25;37737:12;37725:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37825:15;37775:11;:25;37787:12;37775:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37858:20;37881:12;37858:35;;37908:11;37937:8;37922:12;:23;37908:37;;37966:4;:23;;;;;37974:15;:2;:13;;;:15::i;:::-;37966:23;37962:832;;;38010:505;38066:12;38062:2;38041:38;;38058:1;38041:38;;;;;;;;;;;;38133:212;38202:1;38235:2;38268:14;;;;;;38313:5;38133:30;:212::i;:::-;38102:365;;38403:40;;;;;;;;;;;;;;38102:365;38510:3;38494:12;:19;;38010:505;;38596:12;38579:13;;:29;38575:43;;38610:8;;;38575:43;37962:832;;;38659:120;38715:14;;;;;;38711:2;38690:40;;38707:1;38690:40;;;;;;;;;;;;38774:3;38758:12;:19;;38659:120;;37962:832;38824:12;38808:13;:28;;;;37575:1273;;38858:60;38887:1;38891:2;38895:12;38909:8;38858:20;:60::i;:::-;37088:1838;36960:1966;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:118::-;12082:24;12100:5;12082:24;:::i;:::-;12077:3;12070:37;11995:118;;:::o;12119:589::-;12344:3;12366:95;12457:3;12448:6;12366:95;:::i;:::-;12359:102;;12478:95;12569:3;12560:6;12478:95;:::i;:::-;12471:102;;12590:92;12678:3;12669:6;12590:92;:::i;:::-;12583:99;;12699:3;12692:10;;12119:589;;;;;;:::o;12714:222::-;12807:4;12845:2;12834:9;12830:18;12822:26;;12858:71;12926:1;12915:9;12911:17;12902:6;12858:71;:::i;:::-;12714:222;;;;:::o;12942:640::-;13137:4;13175:3;13164:9;13160:19;13152:27;;13189:71;13257:1;13246:9;13242:17;13233:6;13189:71;:::i;:::-;13270:72;13338:2;13327:9;13323:18;13314:6;13270:72;:::i;:::-;13352;13420:2;13409:9;13405:18;13396:6;13352:72;:::i;:::-;13471:9;13465:4;13461:20;13456:2;13445:9;13441:18;13434:48;13499:76;13570:4;13561:6;13499:76;:::i;:::-;13491:84;;12942:640;;;;;;;:::o;13588:210::-;13675:4;13713:2;13702:9;13698:18;13690:26;;13726:65;13788:1;13777:9;13773:17;13764:6;13726:65;:::i;:::-;13588:210;;;;:::o;13804:313::-;13917:4;13955:2;13944:9;13940:18;13932:26;;14004:9;13998:4;13994:20;13990:1;13979:9;13975:17;13968:47;14032:78;14105:4;14096:6;14032:78;:::i;:::-;14024:86;;13804:313;;;;:::o;14123:419::-;14289:4;14327:2;14316:9;14312:18;14304:26;;14376:9;14370:4;14366:20;14362:1;14351:9;14347:17;14340:47;14404:131;14530:4;14404:131;:::i;:::-;14396:139;;14123:419;;;:::o;14548:::-;14714:4;14752:2;14741:9;14737:18;14729:26;;14801:9;14795:4;14791:20;14787:1;14776:9;14772:17;14765:47;14829:131;14955:4;14829:131;:::i;:::-;14821:139;;14548:419;;;:::o;14973:::-;15139:4;15177:2;15166:9;15162:18;15154:26;;15226:9;15220:4;15216:20;15212:1;15201:9;15197:17;15190:47;15254:131;15380:4;15254:131;:::i;:::-;15246:139;;14973:419;;;:::o;15398:::-;15564:4;15602:2;15591:9;15587:18;15579:26;;15651:9;15645:4;15641:20;15637:1;15626:9;15622:17;15615:47;15679:131;15805:4;15679:131;:::i;:::-;15671:139;;15398:419;;;:::o;15823:::-;15989:4;16027:2;16016:9;16012:18;16004:26;;16076:9;16070:4;16066:20;16062:1;16051:9;16047:17;16040:47;16104:131;16230:4;16104:131;:::i;:::-;16096:139;;15823:419;;;:::o;16248:::-;16414:4;16452:2;16441:9;16437:18;16429:26;;16501:9;16495:4;16491:20;16487:1;16476:9;16472:17;16465:47;16529:131;16655:4;16529:131;:::i;:::-;16521:139;;16248:419;;;:::o;16673:::-;16839:4;16877:2;16866:9;16862:18;16854:26;;16926:9;16920:4;16916:20;16912:1;16901:9;16897:17;16890:47;16954:131;17080:4;16954:131;:::i;:::-;16946:139;;16673:419;;;:::o;17098:222::-;17191:4;17229:2;17218:9;17214:18;17206:26;;17242:71;17310:1;17299:9;17295:17;17286:6;17242:71;:::i;:::-;17098:222;;;;:::o;17326:129::-;17360:6;17387:20;;:::i;:::-;17377:30;;17416:33;17444:4;17436:6;17416:33;:::i;:::-;17326:129;;;:::o;17461:75::-;17494:6;17527:2;17521:9;17511:19;;17461:75;:::o;17542:307::-;17603:4;17693:18;17685:6;17682:30;17679:56;;;17715:18;;:::i;:::-;17679:56;17753:29;17775:6;17753:29;:::i;:::-;17745:37;;17837:4;17831;17827:15;17819:23;;17542:307;;;:::o;17855:308::-;17917:4;18007:18;17999:6;17996:30;17993:56;;;18029:18;;:::i;:::-;17993:56;18067:29;18089:6;18067:29;:::i;:::-;18059:37;;18151:4;18145;18141:15;18133:23;;17855:308;;;:::o;18169:141::-;18218:4;18241:3;18233:11;;18264:3;18261:1;18254:14;18298:4;18295:1;18285:18;18277:26;;18169:141;;;:::o;18316:98::-;18367:6;18401:5;18395:12;18385:22;;18316:98;;;:::o;18420:99::-;18472:6;18506:5;18500:12;18490:22;;18420:99;;;:::o;18525:168::-;18608:11;18642:6;18637:3;18630:19;18682:4;18677:3;18673:14;18658:29;;18525:168;;;;:::o;18699:169::-;18783:11;18817:6;18812:3;18805:19;18857:4;18852:3;18848:14;18833:29;;18699:169;;;;:::o;18874:148::-;18976:11;19013:3;18998:18;;18874:148;;;;:::o;19028:305::-;19068:3;19087:20;19105:1;19087:20;:::i;:::-;19082:25;;19121:20;19139:1;19121:20;:::i;:::-;19116:25;;19275:1;19207:66;19203:74;19200:1;19197:81;19194:107;;;19281:18;;:::i;:::-;19194:107;19325:1;19322;19318:9;19311:16;;19028:305;;;;:::o;19339:185::-;19379:1;19396:20;19414:1;19396:20;:::i;:::-;19391:25;;19430:20;19448:1;19430:20;:::i;:::-;19425:25;;19469:1;19459:35;;19474:18;;:::i;:::-;19459:35;19516:1;19513;19509:9;19504:14;;19339:185;;;;:::o;19530:191::-;19570:4;19590:20;19608:1;19590:20;:::i;:::-;19585:25;;19624:20;19642:1;19624:20;:::i;:::-;19619:25;;19663:1;19660;19657:8;19654:34;;;19668:18;;:::i;:::-;19654:34;19713:1;19710;19706:9;19698:17;;19530:191;;;;:::o;19727:96::-;19764:7;19793:24;19811:5;19793:24;:::i;:::-;19782:35;;19727:96;;;:::o;19829:90::-;19863:7;19906:5;19899:13;19892:21;19881:32;;19829:90;;;:::o;19925:149::-;19961:7;20001:66;19994:5;19990:78;19979:89;;19925:149;;;:::o;20080:126::-;20117:7;20157:42;20150:5;20146:54;20135:65;;20080:126;;;:::o;20212:77::-;20249:7;20278:5;20267:16;;20212:77;;;:::o;20295:154::-;20379:6;20374:3;20369;20356:30;20441:1;20432:6;20427:3;20423:16;20416:27;20295:154;;;:::o;20455:307::-;20523:1;20533:113;20547:6;20544:1;20541:13;20533:113;;;20632:1;20627:3;20623:11;20617:18;20613:1;20608:3;20604:11;20597:39;20569:2;20566:1;20562:10;20557:15;;20533:113;;;20664:6;20661:1;20658:13;20655:101;;;20744:1;20735:6;20730:3;20726:16;20719:27;20655:101;20504:258;20455:307;;;:::o;20768:320::-;20812:6;20849:1;20843:4;20839:12;20829:22;;20896:1;20890:4;20886:12;20917:18;20907:81;;20973:4;20965:6;20961:17;20951:27;;20907:81;21035:2;21027:6;21024:14;21004:18;21001:38;20998:84;;;21054:18;;:::i;:::-;20998:84;20819:269;20768:320;;;:::o;21094:281::-;21177:27;21199:4;21177:27;:::i;:::-;21169:6;21165:40;21307:6;21295:10;21292:22;21271:18;21259:10;21256:34;21253:62;21250:88;;;21318:18;;:::i;:::-;21250:88;21358:10;21354:2;21347:22;21137:238;21094:281;;:::o;21381:233::-;21420:3;21443:24;21461:5;21443:24;:::i;:::-;21434:33;;21489:66;21482:5;21479:77;21476:103;;;21559:18;;:::i;:::-;21476:103;21606:1;21599:5;21595:13;21588:20;;21381:233;;;:::o;21620:176::-;21652:1;21669:20;21687:1;21669:20;:::i;:::-;21664:25;;21703:20;21721:1;21703:20;:::i;:::-;21698:25;;21742:1;21732:35;;21747:18;;:::i;:::-;21732:35;21788:1;21785;21781:9;21776:14;;21620:176;;;;:::o;21802:180::-;21850:77;21847:1;21840:88;21947:4;21944:1;21937:15;21971:4;21968:1;21961:15;21988:180;22036:77;22033:1;22026:88;22133:4;22130:1;22123:15;22157:4;22154:1;22147:15;22174:180;22222:77;22219:1;22212:88;22319:4;22316:1;22309:15;22343:4;22340:1;22333:15;22360:180;22408:77;22405:1;22398:88;22505:4;22502:1;22495:15;22529:4;22526:1;22519:15;22546:180;22594:77;22591:1;22584:88;22691:4;22688:1;22681:15;22715:4;22712:1;22705:15;22732:117;22841:1;22838;22831:12;22855:117;22964:1;22961;22954:12;22978:117;23087:1;23084;23077:12;23101:117;23210:1;23207;23200:12;23224:102;23265:6;23316:2;23312:7;23307:2;23300:5;23296:14;23292:28;23282:38;;23224:102;;;:::o;23332:181::-;23472:33;23468:1;23460:6;23456:14;23449:57;23332:181;:::o;23519:225::-;23659:34;23655:1;23647:6;23643:14;23636:58;23728:8;23723:2;23715:6;23711:15;23704:33;23519:225;:::o;23750:235::-;23890:34;23886:1;23878:6;23874:14;23867:58;23959:18;23954:2;23946:6;23942:15;23935:43;23750:235;:::o;23991:220::-;24131:34;24127:1;24119:6;24115:14;24108:58;24200:3;24195:2;24187:6;24183:15;24176:28;23991:220;:::o;24217:182::-;24357:34;24353:1;24345:6;24341:14;24334:58;24217:182;:::o;24405:221::-;24545:34;24541:1;24533:6;24529:14;24522:58;24614:4;24609:2;24601:6;24597:15;24590:29;24405:221;:::o;24632:237::-;24772:34;24768:1;24760:6;24756:14;24749:58;24841:20;24836:2;24828:6;24824:15;24817:45;24632:237;:::o;24875:122::-;24948:24;24966:5;24948:24;:::i;:::-;24941:5;24938:35;24928:63;;24987:1;24984;24977:12;24928:63;24875:122;:::o;25003:116::-;25073:21;25088:5;25073:21;:::i;:::-;25066:5;25063:32;25053:60;;25109:1;25106;25099:12;25053:60;25003:116;:::o;25125:120::-;25197:23;25214:5;25197:23;:::i;:::-;25190:5;25187:34;25177:62;;25235:1;25232;25225:12;25177:62;25125:120;:::o;25251:122::-;25324:24;25342:5;25324:24;:::i;:::-;25317:5;25314:35;25304:63;;25363:1;25360;25353:12;25304:63;25251:122;:::o

Swarm Source

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