ETH Price: $2,603.48 (+0.51%)

Token

Goblinmafia (GM)
 

Overview

Max Total Supply

578 GM

Holders

116

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 GM
0xa59ccd13480d82ff7ee055d7fc2481192172b47c
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:
Goblinmafia

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

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

// SPDX-License-Identifier: MIT

// dev address is 0xEaC458B2F78b8cb37c9471A9A0723b4Aa6b4c62D

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File erc721a/contracts/[email protected]

// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

contract Goblinmafia is ERC721A, Ownable {
    uint256 public constant MAX_ELEMENTS = 5555;
    uint256 public constant MAX_PER_WALLET = 5;
    uint256 public constant premium = 0.004 ether;
    bool public _isActive;
    mapping(address => uint256) public mintCount;

    string public baseTokenURI;

    address public dev = 0xEaC458B2F78b8cb37c9471A9A0723b4Aa6b4c62D;

    constructor(string memory baseURI) ERC721A("Goblinmafia", "GM") {
        _safeMint(msg.sender, 75);
        _safeMint(dev, 25);
        setBaseURI(baseURI);
    }

    /**
     * @dev Mint the _amount of tokens
     * @param _amount is the token count
     */
    function mint(uint256 _amount) external payable {
        uint256 supply = totalSupply();
        require(supply + _amount <= MAX_ELEMENTS, "Sale ends");
        require(msg.value >= price(_amount), "Not enough");
        mintCount[msg.sender] += _amount;
        require(mintCount[msg.sender] <= MAX_PER_WALLET, "Exceed Max");
        require(_isActive || msg.sender == owner(), "not active");
        _safeMint(msg.sender, _amount);
    }

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

    function toggleSale() external onlyOwner {
        _isActive = !_isActive;
    }

    function burn(uint256 tokenId) public {
        _burn(tokenId);
    }

    function price(uint256 _amount) public view returns (uint256) {
        uint256 total = totalSupply() + _amount;
        if (total <= 2000) return 0;
        return min(total - 2000, _amount) * premium;
    }

    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a <= b ? a : b;
    }

    function withdraw() external {
        uint256 balance = address(this).balance;
        require(balance > 0);
        (bool toOwner, ) = owner().call{value: (balance * 925) / 1000}("");
        require(toOwner, "Transfer failed.");
        (bool toDev, ) = dev.call{value: (balance * 75) / 1000}("");
        require(toDev, "Transfer failed.");
    }

    /**
     * @dev set the _baseTokenURI
     * @param baseURI of the _baseTokenURI
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273eac458b2f78b8cb37c9471a9a0723b4aa6b4c62d600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620049513803806200495183398181016040528101906200008c919062000b83565b6040518060400160405280600b81526020017f476f626c696e6d616669610000000000000000000000000000000000000000008152506040518060400160405280600281526020017f474d00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011092919062000936565b5080600390805190602001906200012992919062000936565b506200013a620001c260201b60201c565b60008190555050506200016262000156620001cb60201b60201c565b620001d360201b60201c565b6200017533604b6200029960201b60201c565b620001aa600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660196200029960201b60201c565b620001bb81620002bf60201b60201c565b5062000e5b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bb8282604051806020016040528060008152506200036a60201b60201c565b5050565b620002cf620001cb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f56200038460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003459062000c35565b60405180910390fd5b80600a90805190602001906200036692919062000936565b5050565b6200037f8383836001620003ae60201b60201c565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200041b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000840362000456576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200046b6000868387620007a660201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620006435750620006428773ffffffffffffffffffffffffffffffffffffffff16620007ac60201b620017181760201c565b5b1562000715575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006c16000888480600101955088620007cf60201b60201c565b620006f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036200064a5782600054146200070f57600080fd5b62000781565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820362000716575b8160008190555050506200079f60008683876200093060201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007fd620001cb60201b60201c565b8786866040518563ffffffff1660e01b815260040162000821949392919062000d14565b6020604051808303816000875af19250505080156200086057506040513d601f19601f820116820180604052508101906200085d919062000dc5565b60015b620008dd573d806000811462000893576040519150601f19603f3d011682016040523d82523d6000602084013e62000898565b606091505b506000815103620008d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009449062000e26565b90600052602060002090601f016020900481019282620009685760008555620009b4565b82601f106200098357805160ff1916838001178555620009b4565b82800160010185558215620009b4579182015b82811115620009b357825182559160200191906001019062000996565b5b509050620009c39190620009c7565b5090565b5b80821115620009e2576000816000905550600101620009c8565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a4f8262000a04565b810181811067ffffffffffffffff8211171562000a715762000a7062000a15565b5b80604052505050565b600062000a86620009e6565b905062000a94828262000a44565b919050565b600067ffffffffffffffff82111562000ab75762000ab662000a15565b5b62000ac28262000a04565b9050602081019050919050565b60005b8381101562000aef57808201518184015260208101905062000ad2565b8381111562000aff576000848401525b50505050565b600062000b1c62000b168462000a99565b62000a7a565b90508281526020810184848401111562000b3b5762000b3a620009ff565b5b62000b4884828562000acf565b509392505050565b600082601f83011262000b685762000b67620009fa565b5b815162000b7a84826020860162000b05565b91505092915050565b60006020828403121562000b9c5762000b9b620009f0565b5b600082015167ffffffffffffffff81111562000bbd5762000bbc620009f5565b5b62000bcb8482850162000b50565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1d60208362000bd4565b915062000c2a8262000be5565b602082019050919050565b6000602082019050818103600083015262000c508162000c0e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c848262000c57565b9050919050565b62000c968162000c77565b82525050565b6000819050919050565b62000cb18162000c9c565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000ce08262000cb7565b62000cec818562000cc2565b935062000cfe81856020860162000acf565b62000d098162000a04565b840191505092915050565b600060808201905062000d2b600083018762000c8b565b62000d3a602083018662000c8b565b62000d49604083018562000ca6565b818103606083015262000d5d818462000cd3565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d9f8162000d68565b811462000dab57600080fd5b50565b60008151905062000dbf8162000d94565b92915050565b60006020828403121562000dde5762000ddd620009f0565b5b600062000dee8482850162000dae565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e3f57607f821691505b60208210810362000e555762000e5462000df7565b5b50919050565b613ae68062000e6b6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063e0a73a9311610064578063e0a73a9314610643578063e985e9c51461066e578063ed9ec888146106ab578063f2fde38b146106e8576101cd565b8063a22cb46514610589578063b88d4fde146105b2578063c87b56dd146105db578063d547cfb714610618576101cd565b80638ec89e4f116100d15780638ec89e4f146104ec57806391cca3db1461051757806395d89b4114610542578063a0712d681461056d576101cd565b8063715018a6146104935780637d8966e4146104aa5780638da5cb5b146104c1576101cd565b806326a49e371161016f57806342966c681161013e57806342966c68146103c757806355f804b3146103f05780636352211e1461041957806370a0823114610456576101cd565b806326a49e371461031f5780633502a7161461035c5780633ccfd60b1461038757806342842e0e1461039e576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630f2cdd6c146102a057806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d51565b610711565b6040516102069190612d99565b60405180910390f35b34801561021b57600080fd5b506102246107f3565b6040516102319190612e4d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ea5565b610885565b60405161026e9190612f13565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612f5a565b610901565b005b3480156102ac57600080fd5b506102b5610a0b565b6040516102c29190612fa9565b60405180910390f35b3480156102d757600080fd5b506102e0610a10565b6040516102ed9190612fa9565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612fc4565b610a27565b005b34801561032b57600080fd5b5061034660048036038101906103419190612ea5565b610a37565b6040516103539190612fa9565b60405180910390f35b34801561036857600080fd5b50610371610a94565b60405161037e9190612fa9565b60405180910390f35b34801561039357600080fd5b5061039c610a9a565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612fc4565b610c65565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612ea5565b610c85565b005b3480156103fc57600080fd5b506104176004803603810190610412919061314c565b610c91565b005b34801561042557600080fd5b50610440600480360381019061043b9190612ea5565b610d27565b60405161044d9190612f13565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190613195565b610d3d565b60405161048a9190612fa9565b60405180910390f35b34801561049f57600080fd5b506104a8610e0c565b005b3480156104b657600080fd5b506104bf610e94565b005b3480156104cd57600080fd5b506104d6610f3c565b6040516104e39190612f13565b60405180910390f35b3480156104f857600080fd5b50610501610f66565b60405161050e9190612d99565b60405180910390f35b34801561052357600080fd5b5061052c610f79565b6040516105399190612f13565b60405180910390f35b34801561054e57600080fd5b50610557610f9f565b6040516105649190612e4d565b60405180910390f35b61058760048036038101906105829190612ea5565b611031565b005b34801561059557600080fd5b506105b060048036038101906105ab91906131ee565b61124b565b005b3480156105be57600080fd5b506105d960048036038101906105d491906132cf565b6113c2565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612ea5565b61143e565b60405161060f9190612e4d565b60405180910390f35b34801561062457600080fd5b5061062d6114dc565b60405161063a9190612e4d565b60405180910390f35b34801561064f57600080fd5b5061065861156a565b6040516106659190612fa9565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190613352565b611575565b6040516106a29190612d99565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613195565b611609565b6040516106df9190612fa9565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613195565b611621565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57506107eb8261173b565b5b9050919050565b606060028054610802906133c1565b80601f016020809104026020016040519081016040528092919081815260200182805461082e906133c1565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610890826117a5565b6108c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090c82610d27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610973576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109926117f3565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c457506109c2816109bd6117f3565b611575565b155b156109fb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a068383836117fb565b505050565b600581565b6000610a1a6118ad565b6001546000540303905090565b610a328383836118b6565b505050565b60008082610a43610a10565b610a4d9190613421565b90506107d08111610a62576000915050610a8f565b660e35fa931a0000610a816107d083610a7b9190613477565b85611da5565b610a8b91906134ab565b9150505b919050565b6115b381565b600047905060008111610aac57600080fd5b6000610ab6610f3c565b73ffffffffffffffffffffffffffffffffffffffff166103e861039d84610add91906134ab565b610ae79190613534565b604051610af390613596565b60006040518083038185875af1925050503d8060008114610b30576040519150601f19603f3d011682016040523d82523d6000602084013e610b35565b606091505b5050905080610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906135f7565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b85610bc491906134ab565b610bce9190613534565b604051610bda90613596565b60006040518083038185875af1925050503d8060008114610c17576040519150601f19603f3d011682016040523d82523d6000602084013e610c1c565b606091505b5050905080610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906135f7565b60405180910390fd5b505050565b610c80838383604051806020016040528060008152506113c2565b505050565b610c8e81611dbf565b50565b610c996117f3565b73ffffffffffffffffffffffffffffffffffffffff16610cb7610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613663565b60405180910390fd5b80600a9080519060200190610d23929190612bff565b5050565b6000610d3282612162565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e146117f3565b73ffffffffffffffffffffffffffffffffffffffff16610e32610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613663565b60405180910390fd5b610e9260006123f1565b565b610e9c6117f3565b73ffffffffffffffffffffffffffffffffffffffff16610eba610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613663565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610fae906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fda906133c1565b80156110275780601f10610ffc57610100808354040283529160200191611027565b820191906000526020600020905b81548152906001019060200180831161100a57829003601f168201915b5050505050905090565b600061103b610a10565b90506115b3828261104c9190613421565b111561108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906136cf565b60405180910390fd5b61109682610a37565b3410156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf9061373b565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111279190613421565b925050819055506005600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906137a7565b60405180910390fd5b600860149054906101000a900460ff16806111fe57506111cf610f3c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613813565b60405180910390fd5b61124733836124b7565b5050565b6112536117f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112c46117f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113716117f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b69190612d99565b60405180910390a35050565b6113cd8484846118b6565b6113ec8373ffffffffffffffffffffffffffffffffffffffff16611718565b801561140157506113ff848484846124d5565b155b15611438576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611449826117a5565b61147f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611489612625565b905060008151036114a957604051806020016040528060008152506114d4565b806114b3846126b7565b6040516020016114c492919061386f565b6040516020818303038152906040525b915050919050565b600a80546114e9906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611515906133c1565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b505050505081565b660e35fa931a000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60096020528060005260406000206000915090505481565b6116296117f3565b73ffffffffffffffffffffffffffffffffffffffff16611647610f3c565b73ffffffffffffffffffffffffffffffffffffffff161461169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613663565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613905565b60405180910390fd5b611715816123f1565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816117b06118ad565b111580156117bf575060005482105b80156117ec575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006118c182612162565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118e86117f3565b73ffffffffffffffffffffffffffffffffffffffff16148061191b575061191a82600001516119156117f3565b611575565b5b8061196057506119296117f3565b73ffffffffffffffffffffffffffffffffffffffff1661194884610885565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611999576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a68576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a758585856001612817565b611a8560008484600001516117fb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d3557600054811015611d345782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9e858585600161281d565b5050505050565b600081831115611db55781611db7565b825b905092915050565b6000611dca82612162565b9050611dde81600001516000846001612817565b611dee60008383600001516117fb565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120d9576000548110156120d85781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214c8160000151600084600161281d565b6001600081548092919060010191905055505050565b61216a612c85565b6000829050806121786118ad565b11158015612187575060005481105b156123ba576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123b857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461229c5780925050506123ec565b5b6001156123b757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b25780925050506123ec565b61229d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124d1828260405180602001604052806000815250612823565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124fb6117f3565b8786866040518563ffffffff1660e01b815260040161251d949392919061397a565b6020604051808303816000875af192505050801561255957506040513d601f19601f8201168201806040525081019061255691906139db565b60015b6125d2573d8060008114612589576040519150601f19603f3d011682016040523d82523d6000602084013e61258e565b606091505b5060008151036125ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612634906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054612660906133c1565b80156126ad5780601f10612682576101008083540402835291602001916126ad565b820191906000526020600020905b81548152906001019060200180831161269057829003601f168201915b5050505050905090565b6060600082036126fe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612812565b600082905060005b6000821461273057808061271990613a08565b915050600a826127299190613534565b9150612706565b60008167ffffffffffffffff81111561274c5761274b613021565b5b6040519080825280601f01601f19166020018201604052801561277e5781602001600182028036833780820191505090505b5090505b6000851461280b576001826127979190613477565b9150600a856127a69190613a50565b60306127b29190613421565b60f81b8183815181106127c8576127c7613a81565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128049190613534565b9450612782565b8093505050505b919050565b50505050565b50505050565b6128308383836001612835565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036128a1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036128db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128e86000868387612817565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ab25750612ab18773ffffffffffffffffffffffffffffffffffffffff16611718565b5b15612b77575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2760008884806001019550886124d5565b612b5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ab8578260005414612b7257600080fd5b612be2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b78575b816000819055505050612bf8600086838761281d565b5050505050565b828054612c0b906133c1565b90600052602060002090601f016020900481019282612c2d5760008555612c74565b82601f10612c4657805160ff1916838001178555612c74565b82800160010185558215612c74579182015b82811115612c73578251825591602001919060010190612c58565b5b509050612c819190612cc8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ce1576000816000905550600101612cc9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d2e81612cf9565b8114612d3957600080fd5b50565b600081359050612d4b81612d25565b92915050565b600060208284031215612d6757612d66612cef565b5b6000612d7584828501612d3c565b91505092915050565b60008115159050919050565b612d9381612d7e565b82525050565b6000602082019050612dae6000830184612d8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dee578082015181840152602081019050612dd3565b83811115612dfd576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1f82612db4565b612e298185612dbf565b9350612e39818560208601612dd0565b612e4281612e03565b840191505092915050565b60006020820190508181036000830152612e678184612e14565b905092915050565b6000819050919050565b612e8281612e6f565b8114612e8d57600080fd5b50565b600081359050612e9f81612e79565b92915050565b600060208284031215612ebb57612eba612cef565b5b6000612ec984828501612e90565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612efd82612ed2565b9050919050565b612f0d81612ef2565b82525050565b6000602082019050612f286000830184612f04565b92915050565b612f3781612ef2565b8114612f4257600080fd5b50565b600081359050612f5481612f2e565b92915050565b60008060408385031215612f7157612f70612cef565b5b6000612f7f85828601612f45565b9250506020612f9085828601612e90565b9150509250929050565b612fa381612e6f565b82525050565b6000602082019050612fbe6000830184612f9a565b92915050565b600080600060608486031215612fdd57612fdc612cef565b5b6000612feb86828701612f45565b9350506020612ffc86828701612f45565b925050604061300d86828701612e90565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61305982612e03565b810181811067ffffffffffffffff8211171561307857613077613021565b5b80604052505050565b600061308b612ce5565b90506130978282613050565b919050565b600067ffffffffffffffff8211156130b7576130b6613021565b5b6130c082612e03565b9050602081019050919050565b82818337600083830152505050565b60006130ef6130ea8461309c565b613081565b90508281526020810184848401111561310b5761310a61301c565b5b6131168482856130cd565b509392505050565b600082601f83011261313357613132613017565b5b81356131438482602086016130dc565b91505092915050565b60006020828403121561316257613161612cef565b5b600082013567ffffffffffffffff8111156131805761317f612cf4565b5b61318c8482850161311e565b91505092915050565b6000602082840312156131ab576131aa612cef565b5b60006131b984828501612f45565b91505092915050565b6131cb81612d7e565b81146131d657600080fd5b50565b6000813590506131e8816131c2565b92915050565b6000806040838503121561320557613204612cef565b5b600061321385828601612f45565b9250506020613224858286016131d9565b9150509250929050565b600067ffffffffffffffff82111561324957613248613021565b5b61325282612e03565b9050602081019050919050565b600061327261326d8461322e565b613081565b90508281526020810184848401111561328e5761328d61301c565b5b6132998482856130cd565b509392505050565b600082601f8301126132b6576132b5613017565b5b81356132c684826020860161325f565b91505092915050565b600080600080608085870312156132e9576132e8612cef565b5b60006132f787828801612f45565b945050602061330887828801612f45565b935050604061331987828801612e90565b925050606085013567ffffffffffffffff81111561333a57613339612cf4565b5b613346878288016132a1565b91505092959194509250565b6000806040838503121561336957613368612cef565b5b600061337785828601612f45565b925050602061338885828601612f45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133d957607f821691505b6020821081036133ec576133eb613392565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061342c82612e6f565b915061343783612e6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561346c5761346b6133f2565b5b828201905092915050565b600061348282612e6f565b915061348d83612e6f565b9250828210156134a05761349f6133f2565b5b828203905092915050565b60006134b682612e6f565b91506134c183612e6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134fa576134f96133f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061353f82612e6f565b915061354a83612e6f565b92508261355a57613559613505565b5b828204905092915050565b600081905092915050565b50565b6000613580600083613565565b915061358b82613570565b600082019050919050565b60006135a182613573565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135e1601083612dbf565b91506135ec826135ab565b602082019050919050565b60006020820190508181036000830152613610816135d4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061364d602083612dbf565b915061365882613617565b602082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f53616c6520656e64730000000000000000000000000000000000000000000000600082015250565b60006136b9600983612dbf565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f4e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b6000613725600a83612dbf565b9150613730826136ef565b602082019050919050565b6000602082019050818103600083015261375481613718565b9050919050565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b6000613791600a83612dbf565b915061379c8261375b565b602082019050919050565b600060208201905081810360008301526137c081613784565b9050919050565b7f6e6f742061637469766500000000000000000000000000000000000000000000600082015250565b60006137fd600a83612dbf565b9150613808826137c7565b602082019050919050565b6000602082019050818103600083015261382c816137f0565b9050919050565b600081905092915050565b600061384982612db4565b6138538185613833565b9350613863818560208601612dd0565b80840191505092915050565b600061387b828561383e565b9150613887828461383e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138ef602683612dbf565b91506138fa82613893565b604082019050919050565b6000602082019050818103600083015261391e816138e2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061394c82613925565b6139568185613930565b9350613966818560208601612dd0565b61396f81612e03565b840191505092915050565b600060808201905061398f6000830187612f04565b61399c6020830186612f04565b6139a96040830185612f9a565b81810360608301526139bb8184613941565b905095945050505050565b6000815190506139d581612d25565b92915050565b6000602082840312156139f1576139f0612cef565b5b60006139ff848285016139c6565b91505092915050565b6000613a1382612e6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a4557613a446133f2565b5b600182019050919050565b6000613a5b82612e6f565b9150613a6683612e6f565b925082613a7657613a75613505565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207f74bfc4729a05a48d29d33dc5fa685474a4cb01c8d34efff94541266b1f5c1164736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55554e5a524b7173555157526a4e6e514e6b45384d5148754a584c61453263726f51645033787761596f646f2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063e0a73a9311610064578063e0a73a9314610643578063e985e9c51461066e578063ed9ec888146106ab578063f2fde38b146106e8576101cd565b8063a22cb46514610589578063b88d4fde146105b2578063c87b56dd146105db578063d547cfb714610618576101cd565b80638ec89e4f116100d15780638ec89e4f146104ec57806391cca3db1461051757806395d89b4114610542578063a0712d681461056d576101cd565b8063715018a6146104935780637d8966e4146104aa5780638da5cb5b146104c1576101cd565b806326a49e371161016f57806342966c681161013e57806342966c68146103c757806355f804b3146103f05780636352211e1461041957806370a0823114610456576101cd565b806326a49e371461031f5780633502a7161461035c5780633ccfd60b1461038757806342842e0e1461039e576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630f2cdd6c146102a057806318160ddd146102cb57806323b872dd146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612d51565b610711565b6040516102069190612d99565b60405180910390f35b34801561021b57600080fd5b506102246107f3565b6040516102319190612e4d565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ea5565b610885565b60405161026e9190612f13565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612f5a565b610901565b005b3480156102ac57600080fd5b506102b5610a0b565b6040516102c29190612fa9565b60405180910390f35b3480156102d757600080fd5b506102e0610a10565b6040516102ed9190612fa9565b60405180910390f35b34801561030257600080fd5b5061031d60048036038101906103189190612fc4565b610a27565b005b34801561032b57600080fd5b5061034660048036038101906103419190612ea5565b610a37565b6040516103539190612fa9565b60405180910390f35b34801561036857600080fd5b50610371610a94565b60405161037e9190612fa9565b60405180910390f35b34801561039357600080fd5b5061039c610a9a565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612fc4565b610c65565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612ea5565b610c85565b005b3480156103fc57600080fd5b506104176004803603810190610412919061314c565b610c91565b005b34801561042557600080fd5b50610440600480360381019061043b9190612ea5565b610d27565b60405161044d9190612f13565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190613195565b610d3d565b60405161048a9190612fa9565b60405180910390f35b34801561049f57600080fd5b506104a8610e0c565b005b3480156104b657600080fd5b506104bf610e94565b005b3480156104cd57600080fd5b506104d6610f3c565b6040516104e39190612f13565b60405180910390f35b3480156104f857600080fd5b50610501610f66565b60405161050e9190612d99565b60405180910390f35b34801561052357600080fd5b5061052c610f79565b6040516105399190612f13565b60405180910390f35b34801561054e57600080fd5b50610557610f9f565b6040516105649190612e4d565b60405180910390f35b61058760048036038101906105829190612ea5565b611031565b005b34801561059557600080fd5b506105b060048036038101906105ab91906131ee565b61124b565b005b3480156105be57600080fd5b506105d960048036038101906105d491906132cf565b6113c2565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612ea5565b61143e565b60405161060f9190612e4d565b60405180910390f35b34801561062457600080fd5b5061062d6114dc565b60405161063a9190612e4d565b60405180910390f35b34801561064f57600080fd5b5061065861156a565b6040516106659190612fa9565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190613352565b611575565b6040516106a29190612d99565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613195565b611609565b6040516106df9190612fa9565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613195565b611621565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57506107eb8261173b565b5b9050919050565b606060028054610802906133c1565b80601f016020809104026020016040519081016040528092919081815260200182805461082e906133c1565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b6000610890826117a5565b6108c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090c82610d27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610973576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109926117f3565b73ffffffffffffffffffffffffffffffffffffffff16141580156109c457506109c2816109bd6117f3565b611575565b155b156109fb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a068383836117fb565b505050565b600581565b6000610a1a6118ad565b6001546000540303905090565b610a328383836118b6565b505050565b60008082610a43610a10565b610a4d9190613421565b90506107d08111610a62576000915050610a8f565b660e35fa931a0000610a816107d083610a7b9190613477565b85611da5565b610a8b91906134ab565b9150505b919050565b6115b381565b600047905060008111610aac57600080fd5b6000610ab6610f3c565b73ffffffffffffffffffffffffffffffffffffffff166103e861039d84610add91906134ab565b610ae79190613534565b604051610af390613596565b60006040518083038185875af1925050503d8060008114610b30576040519150601f19603f3d011682016040523d82523d6000602084013e610b35565b606091505b5050905080610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906135f7565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b85610bc491906134ab565b610bce9190613534565b604051610bda90613596565b60006040518083038185875af1925050503d8060008114610c17576040519150601f19603f3d011682016040523d82523d6000602084013e610c1c565b606091505b5050905080610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c57906135f7565b60405180910390fd5b505050565b610c80838383604051806020016040528060008152506113c2565b505050565b610c8e81611dbf565b50565b610c996117f3565b73ffffffffffffffffffffffffffffffffffffffff16610cb7610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613663565b60405180910390fd5b80600a9080519060200190610d23929190612bff565b5050565b6000610d3282612162565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610da4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e146117f3565b73ffffffffffffffffffffffffffffffffffffffff16610e32610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613663565b60405180910390fd5b610e9260006123f1565b565b610e9c6117f3565b73ffffffffffffffffffffffffffffffffffffffff16610eba610f3c565b73ffffffffffffffffffffffffffffffffffffffff1614610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613663565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610fae906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fda906133c1565b80156110275780601f10610ffc57610100808354040283529160200191611027565b820191906000526020600020905b81548152906001019060200180831161100a57829003601f168201915b5050505050905090565b600061103b610a10565b90506115b3828261104c9190613421565b111561108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906136cf565b60405180910390fd5b61109682610a37565b3410156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf9061373b565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111279190613421565b925050819055506005600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906137a7565b60405180910390fd5b600860149054906101000a900460ff16806111fe57506111cf610f3c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613813565b60405180910390fd5b61124733836124b7565b5050565b6112536117f3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112c46117f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113716117f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b69190612d99565b60405180910390a35050565b6113cd8484846118b6565b6113ec8373ffffffffffffffffffffffffffffffffffffffff16611718565b801561140157506113ff848484846124d5565b155b15611438576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611449826117a5565b61147f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611489612625565b905060008151036114a957604051806020016040528060008152506114d4565b806114b3846126b7565b6040516020016114c492919061386f565b6040516020818303038152906040525b915050919050565b600a80546114e9906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611515906133c1565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b505050505081565b660e35fa931a000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60096020528060005260406000206000915090505481565b6116296117f3565b73ffffffffffffffffffffffffffffffffffffffff16611647610f3c565b73ffffffffffffffffffffffffffffffffffffffff161461169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613663565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170390613905565b60405180910390fd5b611715816123f1565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816117b06118ad565b111580156117bf575060005482105b80156117ec575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006118c182612162565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118e86117f3565b73ffffffffffffffffffffffffffffffffffffffff16148061191b575061191a82600001516119156117f3565b611575565b5b8061196057506119296117f3565b73ffffffffffffffffffffffffffffffffffffffff1661194884610885565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611999576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a68576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a758585856001612817565b611a8560008484600001516117fb565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d3557600054811015611d345782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9e858585600161281d565b5050505050565b600081831115611db55781611db7565b825b905092915050565b6000611dca82612162565b9050611dde81600001516000846001612817565b611dee60008383600001516117fb565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120d9576000548110156120d85781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461214c8160000151600084600161281d565b6001600081548092919060010191905055505050565b61216a612c85565b6000829050806121786118ad565b11158015612187575060005481105b156123ba576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516123b857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461229c5780925050506123ec565b5b6001156123b757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123b25780925050506123ec565b61229d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124d1828260405180602001604052806000815250612823565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124fb6117f3565b8786866040518563ffffffff1660e01b815260040161251d949392919061397a565b6020604051808303816000875af192505050801561255957506040513d601f19601f8201168201806040525081019061255691906139db565b60015b6125d2573d8060008114612589576040519150601f19603f3d011682016040523d82523d6000602084013e61258e565b606091505b5060008151036125ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612634906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054612660906133c1565b80156126ad5780601f10612682576101008083540402835291602001916126ad565b820191906000526020600020905b81548152906001019060200180831161269057829003601f168201915b5050505050905090565b6060600082036126fe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612812565b600082905060005b6000821461273057808061271990613a08565b915050600a826127299190613534565b9150612706565b60008167ffffffffffffffff81111561274c5761274b613021565b5b6040519080825280601f01601f19166020018201604052801561277e5781602001600182028036833780820191505090505b5090505b6000851461280b576001826127979190613477565b9150600a856127a69190613a50565b60306127b29190613421565b60f81b8183815181106127c8576127c7613a81565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128049190613534565b9450612782565b8093505050505b919050565b50505050565b50505050565b6128308383836001612835565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036128a1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036128db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128e86000868387612817565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ab25750612ab18773ffffffffffffffffffffffffffffffffffffffff16611718565b5b15612b77575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2760008884806001019550886124d5565b612b5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ab8578260005414612b7257600080fd5b612be2565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b78575b816000819055505050612bf8600086838761281d565b5050505050565b828054612c0b906133c1565b90600052602060002090601f016020900481019282612c2d5760008555612c74565b82601f10612c4657805160ff1916838001178555612c74565b82800160010185558215612c74579182015b82811115612c73578251825591602001919060010190612c58565b5b509050612c819190612cc8565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ce1576000816000905550600101612cc9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d2e81612cf9565b8114612d3957600080fd5b50565b600081359050612d4b81612d25565b92915050565b600060208284031215612d6757612d66612cef565b5b6000612d7584828501612d3c565b91505092915050565b60008115159050919050565b612d9381612d7e565b82525050565b6000602082019050612dae6000830184612d8a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dee578082015181840152602081019050612dd3565b83811115612dfd576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e1f82612db4565b612e298185612dbf565b9350612e39818560208601612dd0565b612e4281612e03565b840191505092915050565b60006020820190508181036000830152612e678184612e14565b905092915050565b6000819050919050565b612e8281612e6f565b8114612e8d57600080fd5b50565b600081359050612e9f81612e79565b92915050565b600060208284031215612ebb57612eba612cef565b5b6000612ec984828501612e90565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612efd82612ed2565b9050919050565b612f0d81612ef2565b82525050565b6000602082019050612f286000830184612f04565b92915050565b612f3781612ef2565b8114612f4257600080fd5b50565b600081359050612f5481612f2e565b92915050565b60008060408385031215612f7157612f70612cef565b5b6000612f7f85828601612f45565b9250506020612f9085828601612e90565b9150509250929050565b612fa381612e6f565b82525050565b6000602082019050612fbe6000830184612f9a565b92915050565b600080600060608486031215612fdd57612fdc612cef565b5b6000612feb86828701612f45565b9350506020612ffc86828701612f45565b925050604061300d86828701612e90565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61305982612e03565b810181811067ffffffffffffffff8211171561307857613077613021565b5b80604052505050565b600061308b612ce5565b90506130978282613050565b919050565b600067ffffffffffffffff8211156130b7576130b6613021565b5b6130c082612e03565b9050602081019050919050565b82818337600083830152505050565b60006130ef6130ea8461309c565b613081565b90508281526020810184848401111561310b5761310a61301c565b5b6131168482856130cd565b509392505050565b600082601f83011261313357613132613017565b5b81356131438482602086016130dc565b91505092915050565b60006020828403121561316257613161612cef565b5b600082013567ffffffffffffffff8111156131805761317f612cf4565b5b61318c8482850161311e565b91505092915050565b6000602082840312156131ab576131aa612cef565b5b60006131b984828501612f45565b91505092915050565b6131cb81612d7e565b81146131d657600080fd5b50565b6000813590506131e8816131c2565b92915050565b6000806040838503121561320557613204612cef565b5b600061321385828601612f45565b9250506020613224858286016131d9565b9150509250929050565b600067ffffffffffffffff82111561324957613248613021565b5b61325282612e03565b9050602081019050919050565b600061327261326d8461322e565b613081565b90508281526020810184848401111561328e5761328d61301c565b5b6132998482856130cd565b509392505050565b600082601f8301126132b6576132b5613017565b5b81356132c684826020860161325f565b91505092915050565b600080600080608085870312156132e9576132e8612cef565b5b60006132f787828801612f45565b945050602061330887828801612f45565b935050604061331987828801612e90565b925050606085013567ffffffffffffffff81111561333a57613339612cf4565b5b613346878288016132a1565b91505092959194509250565b6000806040838503121561336957613368612cef565b5b600061337785828601612f45565b925050602061338885828601612f45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133d957607f821691505b6020821081036133ec576133eb613392565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061342c82612e6f565b915061343783612e6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561346c5761346b6133f2565b5b828201905092915050565b600061348282612e6f565b915061348d83612e6f565b9250828210156134a05761349f6133f2565b5b828203905092915050565b60006134b682612e6f565b91506134c183612e6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134fa576134f96133f2565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061353f82612e6f565b915061354a83612e6f565b92508261355a57613559613505565b5b828204905092915050565b600081905092915050565b50565b6000613580600083613565565b915061358b82613570565b600082019050919050565b60006135a182613573565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006135e1601083612dbf565b91506135ec826135ab565b602082019050919050565b60006020820190508181036000830152613610816135d4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061364d602083612dbf565b915061365882613617565b602082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f53616c6520656e64730000000000000000000000000000000000000000000000600082015250565b60006136b9600983612dbf565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f4e6f7420656e6f75676800000000000000000000000000000000000000000000600082015250565b6000613725600a83612dbf565b9150613730826136ef565b602082019050919050565b6000602082019050818103600083015261375481613718565b9050919050565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b6000613791600a83612dbf565b915061379c8261375b565b602082019050919050565b600060208201905081810360008301526137c081613784565b9050919050565b7f6e6f742061637469766500000000000000000000000000000000000000000000600082015250565b60006137fd600a83612dbf565b9150613808826137c7565b602082019050919050565b6000602082019050818103600083015261382c816137f0565b9050919050565b600081905092915050565b600061384982612db4565b6138538185613833565b9350613863818560208601612dd0565b80840191505092915050565b600061387b828561383e565b9150613887828461383e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138ef602683612dbf565b91506138fa82613893565b604082019050919050565b6000602082019050818103600083015261391e816138e2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061394c82613925565b6139568185613930565b9350613966818560208601612dd0565b61396f81612e03565b840191505092915050565b600060808201905061398f6000830187612f04565b61399c6020830186612f04565b6139a96040830185612f9a565b81810360608301526139bb8184613941565b905095945050505050565b6000815190506139d581612d25565b92915050565b6000602082840312156139f1576139f0612cef565b5b60006139ff848285016139c6565b91505092915050565b6000613a1382612e6f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a4557613a446133f2565b5b600182019050919050565b6000613a5b82612e6f565b9150613a6683612e6f565b925082613a7657613a75613505565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212207f74bfc4729a05a48d29d33dc5fa685474a4cb01c8d34efff94541266b1f5c1164736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55554e5a524b7173555157526a4e6e514e6b45384d5148754a584c61453263726f51645033787761596f646f2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmUUNZRKqsUQWRjNnQNkE8MQHuJXLaE2croQdP3xwaYodo/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d55554e5a524b7173555157526a4e6e514e6b45384d5148754a584c61
Arg [4] : 453263726f51645033787761596f646f2f000000000000000000000000000000


Deployed Bytecode Sourcemap

47698:2410:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26873:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30340:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31940:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31503:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47796:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26122:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32911:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49086:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47746:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49421:357;;;;;;;;;;;;;:::i;:::-;;33152:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49007:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49883:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30149:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27292:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46780:103;;;;;;;;;;;;;:::i;:::-;;48917:82;;;;;;;;;;;;;:::i;:::-;;46129:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47897:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48013:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30509:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48360:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32257:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33408:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30684:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47978:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47845:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32630:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47925:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47038:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26873:355;27020:4;27077:25;27062:40;;;:11;:40;;;;:105;;;;27134:33;27119:48;;;:11;:48;;;;27062:105;:158;;;;27184:36;27208:11;27184:23;:36::i;:::-;27062:158;27042:178;;26873:355;;;:::o;30340:100::-;30394:13;30427:5;30420:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30340:100;:::o;31940:245::-;32044:7;32074:16;32082:7;32074;:16::i;:::-;32069:64;;32099:34;;;;;;;;;;;;;;32069:64;32153:15;:24;32169:7;32153:24;;;;;;;;;;;;;;;;;;;;;32146:31;;31940:245;;;:::o;31503:371::-;31576:13;31592:24;31608:7;31592:15;:24::i;:::-;31576:40;;31637:5;31631:11;;:2;:11;;;31627:48;;31651:24;;;;;;;;;;;;;;31627:48;31708:5;31692:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31718:37;31735:5;31742:12;:10;:12::i;:::-;31718:16;:37::i;:::-;31717:38;31692:63;31688:138;;;31779:35;;;;;;;;;;;;;;31688:138;31838:28;31847:2;31851:7;31860:5;31838:8;:28::i;:::-;31565:309;31503:371;;:::o;47796:42::-;47837:1;47796:42;:::o;26122:303::-;26166:7;26391:15;:13;:15::i;:::-;26376:12;;26360:13;;:28;:46;26353:53;;26122:303;:::o;32911:170::-;33045:28;33055:4;33061:2;33065:7;33045:9;:28::i;:::-;32911:170;;;:::o;49086:212::-;49139:7;49159:13;49191:7;49175:13;:11;:13::i;:::-;:23;;;;:::i;:::-;49159:39;;49222:4;49213:5;:13;49209:27;;49235:1;49228:8;;;;;49209:27;47879:11;49254:26;49266:4;49258:5;:12;;;;:::i;:::-;49272:7;49254:3;:26::i;:::-;:36;;;;:::i;:::-;49247:43;;;49086:212;;;;:::o;47746:43::-;47785:4;47746:43;:::o;49421:357::-;49461:15;49479:21;49461:39;;49529:1;49519:7;:11;49511:20;;;;;;49543:12;49561:7;:5;:7::i;:::-;:12;;49599:4;49592:3;49582:7;:13;;;;:::i;:::-;49581:22;;;;:::i;:::-;49561:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49542:66;;;49627:7;49619:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;49667:10;49683:3;;;;;;;;;;;:8;;49716:4;49710:2;49700:7;:12;;;;:::i;:::-;49699:21;;;;:::i;:::-;49683:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49666:59;;;49744:5;49736:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;49450:328;;;49421:357::o;33152:185::-;33290:39;33307:4;33313:2;33317:7;33290:39;;;;;;;;;;;;:16;:39::i;:::-;33152:185;;;:::o;49007:71::-;49056:14;49062:7;49056:5;:14::i;:::-;49007:71;:::o;49883:101::-;46360:12;:10;:12::i;:::-;46349:23;;:7;:5;:7::i;:::-;:23;;;46341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49969:7:::1;49954:12;:22;;;;;;;;;;;;:::i;:::-;;49883:101:::0;:::o;30149:124::-;30213:7;30240:20;30252:7;30240:11;:20::i;:::-;:25;;;30233:32;;30149:124;;;:::o;27292:206::-;27356:7;27397:1;27380:19;;:5;:19;;;27376:60;;27408:28;;;;;;;;;;;;;;27376:60;27462:12;:19;27475:5;27462:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27454:36;;27447:43;;27292:206;;;:::o;46780:103::-;46360:12;:10;:12::i;:::-;46349:23;;:7;:5;:7::i;:::-;:23;;;46341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46845:30:::1;46872:1;46845:18;:30::i;:::-;46780:103::o:0;48917:82::-;46360:12;:10;:12::i;:::-;46349:23;;:7;:5;:7::i;:::-;:23;;;46341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48982:9:::1;;;;;;;;;;;48981:10;48969:9;;:22;;;;;;;;;;;;;;;;;;48917:82::o:0;46129:87::-;46175:7;46202:6;;;;;;;;;;;46195:13;;46129:87;:::o;47897:21::-;;;;;;;;;;;;;:::o;48013:63::-;;;;;;;;;;;;;:::o;30509:104::-;30565:13;30598:7;30591:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30509:104;:::o;48360:448::-;48419:14;48436:13;:11;:13::i;:::-;48419:30;;47785:4;48477:7;48468:6;:16;;;;:::i;:::-;:32;;48460:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;48546:14;48552:7;48546:5;:14::i;:::-;48533:9;:27;;48525:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;48611:7;48586:9;:21;48596:10;48586:21;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;47837:1;48637:9;:21;48647:10;48637:21;;;;;;;;;;;;;;;;:39;;48629:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48710:9;;;;;;;;;;;:34;;;;48737:7;:5;:7::i;:::-;48723:21;;:10;:21;;;48710:34;48702:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48770:30;48780:10;48792:7;48770:9;:30::i;:::-;48408:400;48360:448;:::o;32257:302::-;32383:12;:10;:12::i;:::-;32371:24;;:8;:24;;;32367:54;;32404:17;;;;;;;;;;;;;;32367:54;32479:8;32434:18;:32;32453:12;:10;:12::i;:::-;32434:32;;;;;;;;;;;;;;;:42;32467:8;32434:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32532:8;32503:48;;32518:12;:10;:12::i;:::-;32503:48;;;32542:8;32503:48;;;;;;:::i;:::-;;;;;;;;32257:302;;:::o;33408:406::-;33575:28;33585:4;33591:2;33595:7;33575:9;:28::i;:::-;33632:15;:2;:13;;;:15::i;:::-;:89;;;;;33665:56;33696:4;33702:2;33706:7;33715:5;33665:30;:56::i;:::-;33664:57;33632:89;33614:193;;;33755:40;;;;;;;;;;;;;;33614:193;33408:406;;;;:::o;30684:415::-;30802:13;30838:16;30846:7;30838;:16::i;:::-;30833:59;;30863:29;;;;;;;;;;;;;;30833:59;30905:21;30929:10;:8;:10::i;:::-;30905:34;;30995:1;30976:7;30970:21;:26;:121;;;;;;;;;;;;;;;;;31040:7;31049:18;:7;:16;:18::i;:::-;31023:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30970:121;30950:141;;;30684:415;;;:::o;47978:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47845:45::-;47879:11;47845:45;:::o;32630:214::-;32772:4;32801:18;:25;32820:5;32801:25;;;;;;;;;;;;;;;:35;32827:8;32801:35;;;;;;;;;;;;;;;;;;;;;;;;;32794:42;;32630:214;;;;:::o;47925:44::-;;;;;;;;;;;;;;;;;:::o;47038:238::-;46360:12;:10;:12::i;:::-;46349:23;;:7;:5;:7::i;:::-;:23;;;46341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47161:1:::1;47141:22;;:8;:22;;::::0;47119:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47240:28;47259:8;47240:18;:28::i;:::-;47038:238:::0;:::o;10520:326::-;10580:4;10837:1;10815:7;:19;;;:23;10808:30;;10520:326;;;:::o;22181:207::-;22311:4;22355:25;22340:40;;;:11;:40;;;;22333:47;;22181:207;;;:::o;34069:213::-;34126:4;34182:7;34163:15;:13;:15::i;:::-;:26;;:66;;;;;34216:13;;34206:7;:23;34163:66;:111;;;;;34247:11;:20;34259:7;34247:20;;;;;;;;;;;:27;;;;;;;;;;;;34246:28;34163:111;34143:131;;34069:213;;;:::o;18940:98::-;18993:7;19020:10;19013:17;;18940:98;:::o;41949:196::-;42091:2;42064:15;:24;42080:7;42064:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42129:7;42125:2;42109:28;;42118:5;42109:28;;;;;;;;;;;;41949:196;;;:::o;48816:93::-;48873:7;48900:1;48893:8;;48816:93;:::o;37399:2138::-;37514:35;37552:20;37564:7;37552:11;:20::i;:::-;37514:58;;37585:22;37627:13;:18;;;37611:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;37662:50;37679:13;:18;;;37699:12;:10;:12::i;:::-;37662:16;:50::i;:::-;37611:101;:154;;;;37753:12;:10;:12::i;:::-;37729:36;;:20;37741:7;37729:11;:20::i;:::-;:36;;;37611:154;37585:181;;37784:17;37779:66;;37810:35;;;;;;;;;;;;;;37779:66;37882:4;37860:26;;:13;:18;;;:26;;;37856:67;;37895:28;;;;;;;;;;;;;;37856:67;37952:1;37938:16;;:2;:16;;;37934:52;;37963:23;;;;;;;;;;;;;;37934:52;37999:43;38021:4;38027:2;38031:7;38040:1;37999:21;:43::i;:::-;38107:49;38124:1;38128:7;38137:13;:18;;;38107:8;:49::i;:::-;38482:1;38452:12;:18;38465:4;38452:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38526:1;38498:12;:16;38511:2;38498:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38572:2;38544:11;:20;38556:7;38544:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;38634:15;38589:11;:20;38601:7;38589:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;38902:19;38934:1;38924:7;:11;38902:33;;38995:1;38954:43;;:11;:24;38966:11;38954:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;38950:471;;39179:13;;39165:11;:27;39161:245;;;39249:13;:18;;;39217:11;:24;39229:11;39217:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;39332:13;:54;;;39290:11;:24;39302:11;39290:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;39161:245;38950:471;38427:1005;39468:7;39464:2;39449:27;;39458:4;39449:27;;;;;;;;;;;;39487:42;39508:4;39514:2;39518:7;39527:1;39487:20;:42::i;:::-;37503:2034;;37399:2138;;;:::o;49306:107::-;49364:7;49396:1;49391;:6;;:14;;49404:1;49391:14;;;49400:1;49391:14;49384:21;;49306:107;;;;:::o;39766:2065::-;39826:35;39864:20;39876:7;39864:11;:20::i;:::-;39826:58;;39897:65;39919:13;:18;;;39947:1;39951:7;39960:1;39897:21;:65::i;:::-;40027:49;40044:1;40048:7;40057:13;:18;;;40027:8;:49::i;:::-;40416:1;40372:12;:32;40385:13;:18;;;40372:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40481:1;40432:12;:32;40445:13;:18;;;40432:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40609:13;:18;;;40581:11;:20;40593:7;40581:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;40687:15;40642:11;:20;40654:7;40642:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40748:4;40718:11;:20;40730:7;40718:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;41000:19;41032:1;41022:7;:11;41000:33;;41093:1;41052:43;;:11;:24;41064:11;41052:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41048:471;;41277:13;;41263:11;:27;41259:245;;;41347:13;:18;;;41315:11;:24;41327:11;41315:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41430:13;:54;;;41388:11;:24;41400:11;41388:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;41259:245;41048:471;40347:1183;41588:7;41584:1;41547:49;;41556:13;:18;;;41547:49;;;;;;;;;;;;41607:64;41628:13;:18;;;41656:1;41660:7;41669:1;41607:20;:64::i;:::-;41798:12;;:14;;;;;;;;;;;;;39815:2016;39766:2065;:::o;28947:1140::-;29035:21;;:::i;:::-;29074:12;29089:7;29074:22;;29157:4;29138:15;:13;:15::i;:::-;:23;;:47;;;;;29172:13;;29165:4;:20;29138:47;29134:886;;;29206:31;29240:11;:17;29252:4;29240:17;;;;;;;;;;;29206:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29281:9;:16;;;29276:729;;29352:1;29326:28;;:9;:14;;;:28;;;29322:101;;29390:9;29383:16;;;;;;29322:101;29725:261;29732:4;29725:261;;;29765:6;;;;;;;;29810:11;:17;29822:4;29810:17;;;;;;;;;;;29798:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29884:1;29858:28;;:9;:14;;;:28;;;29854:109;;29926:9;29919:16;;;;;;29854:109;29725:261;;;29276:729;29187:833;29134:886;30048:31;;;;;;;;;;;;;;28947:1140;;;;:::o;47436:191::-;47510:16;47529:6;;;;;;;;;;;47510:25;;47555:8;47546:6;;:17;;;;;;;;;;;;;;;;;;47610:8;47579:40;;47600:8;47579:40;;;;;;;;;;;;47499:128;47436:191;:::o;34290:104::-;34359:27;34369:2;34373:8;34359:27;;;;;;;;;;;;:9;:27::i;:::-;34290:104;;:::o;42637:772::-;42800:4;42850:2;42834:36;;;42889:12;:10;:12::i;:::-;42920:4;42943:7;42969:5;42834:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42817:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43177:1;43160:6;:13;:18;43156:235;;43206:40;;;;;;;;;;;;;;43156:235;43349:6;43343:13;43334:6;43330:2;43326:15;43319:38;42817:585;43055:45;;;43045:55;;;:6;:55;;;;43038:62;;;42637:772;;;;;;:::o;49992:113::-;50052:13;50085:12;50078:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49992:113;:::o;19523:723::-;19579:13;19809:1;19800:5;:10;19796:53;;19827:10;;;;;;;;;;;;;;;;;;;;;19796:53;19859:12;19874:5;19859:20;;19890:14;19915:78;19930:1;19922:4;:9;19915:78;;19948:8;;;;;:::i;:::-;;;;19979:2;19971:10;;;;;:::i;:::-;;;19915:78;;;20003:19;20035:6;20025:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20003:39;;20053:154;20069:1;20060:5;:10;20053:154;;20097:1;20087:11;;;;;:::i;:::-;;;20164:2;20156:5;:10;;;;:::i;:::-;20143:2;:24;;;;:::i;:::-;20130:39;;20113:6;20120;20113:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20193:2;20184:11;;;;;:::i;:::-;;;20053:154;;;20231:6;20217:21;;;;;19523:723;;;;:::o;44057:159::-;;;;;:::o;44875:158::-;;;;;:::o;34757:163::-;34880:32;34886:2;34890:8;34900:5;34907:4;34880:5;:32::i;:::-;34757:163;;;:::o;35179:1966::-;35318:20;35341:13;;35318:36;;35383:1;35369:16;;:2;:16;;;35365:48;;35394:19;;;;;;;;;;;;;;35365:48;35440:1;35428:8;:13;35424:44;;35450:18;;;;;;;;;;;;;;35424:44;35481:61;35511:1;35515:2;35519:12;35533:8;35481:21;:61::i;:::-;35854:8;35819:12;:16;35832:2;35819:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35918:8;35878:12;:16;35891:2;35878:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35977:2;35944:11;:25;35956:12;35944:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36044:15;35994:11;:25;36006:12;35994:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36077:20;36100:12;36077:35;;36127:11;36156:8;36141:12;:23;36127:37;;36185:4;:23;;;;;36193:15;:2;:13;;;:15::i;:::-;36185:23;36181:832;;;36229:505;36285:12;36281:2;36260:38;;36277:1;36260:38;;;;;;;;;;;;36352:212;36421:1;36454:2;36487:14;;;;;;36532:5;36352:30;:212::i;:::-;36321:365;;36622:40;;;;;;;;;;;;;;36321:365;36729:3;36713:12;:19;36229:505;;36815:12;36798:13;;:29;36794:43;;36829:8;;;36794:43;36181:832;;;36878:120;36934:14;;;;;;36930:2;36909:40;;36926:1;36909:40;;;;;;;;;;;;36993:3;36977:12;:19;36878:120;;36181:832;37043:12;37027:13;:28;;;;35794:1273;;37077:60;37106:1;37110:2;37114:12;37128:8;37077:20;:60::i;:::-;35307:1838;35179:1966;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:180::-;12681:77;12678:1;12671:88;12778:4;12775:1;12768:15;12802:4;12799:1;12792:15;12819:305;12859:3;12878:20;12896:1;12878:20;:::i;:::-;12873:25;;12912:20;12930:1;12912:20;:::i;:::-;12907:25;;13066:1;12998:66;12994:74;12991:1;12988:81;12985:107;;;13072:18;;:::i;:::-;12985:107;13116:1;13113;13109:9;13102:16;;12819:305;;;;:::o;13130:191::-;13170:4;13190:20;13208:1;13190:20;:::i;:::-;13185:25;;13224:20;13242:1;13224:20;:::i;:::-;13219:25;;13263:1;13260;13257:8;13254:34;;;13268:18;;:::i;:::-;13254:34;13313:1;13310;13306:9;13298:17;;13130:191;;;;:::o;13327:348::-;13367:7;13390:20;13408:1;13390:20;:::i;:::-;13385:25;;13424:20;13442:1;13424:20;:::i;:::-;13419:25;;13612:1;13544:66;13540:74;13537:1;13534:81;13529:1;13522:9;13515:17;13511:105;13508:131;;;13619:18;;:::i;:::-;13508:131;13667:1;13664;13660:9;13649:20;;13327:348;;;;:::o;13681:180::-;13729:77;13726:1;13719:88;13826:4;13823:1;13816:15;13850:4;13847:1;13840:15;13867:185;13907:1;13924:20;13942:1;13924:20;:::i;:::-;13919:25;;13958:20;13976:1;13958:20;:::i;:::-;13953:25;;13997:1;13987:35;;14002:18;;:::i;:::-;13987:35;14044:1;14041;14037:9;14032:14;;13867:185;;;;:::o;14058:147::-;14159:11;14196:3;14181:18;;14058:147;;;;:::o;14211:114::-;;:::o;14331:398::-;14490:3;14511:83;14592:1;14587:3;14511:83;:::i;:::-;14504:90;;14603:93;14692:3;14603:93;:::i;:::-;14721:1;14716:3;14712:11;14705:18;;14331:398;;;:::o;14735:379::-;14919:3;14941:147;15084:3;14941:147;:::i;:::-;14934:154;;15105:3;15098:10;;14735:379;;;:::o;15120:166::-;15260:18;15256:1;15248:6;15244:14;15237:42;15120:166;:::o;15292:366::-;15434:3;15455:67;15519:2;15514:3;15455:67;:::i;:::-;15448:74;;15531:93;15620:3;15531:93;:::i;:::-;15649:2;15644:3;15640:12;15633:19;;15292:366;;;:::o;15664:419::-;15830:4;15868:2;15857:9;15853:18;15845:26;;15917:9;15911:4;15907:20;15903:1;15892:9;15888:17;15881:47;15945:131;16071:4;15945:131;:::i;:::-;15937:139;;15664:419;;;:::o;16089:182::-;16229:34;16225:1;16217:6;16213:14;16206:58;16089:182;:::o;16277:366::-;16419:3;16440:67;16504:2;16499:3;16440:67;:::i;:::-;16433:74;;16516:93;16605:3;16516:93;:::i;:::-;16634:2;16629:3;16625:12;16618:19;;16277:366;;;:::o;16649:419::-;16815:4;16853:2;16842:9;16838:18;16830:26;;16902:9;16896:4;16892:20;16888:1;16877:9;16873:17;16866:47;16930:131;17056:4;16930:131;:::i;:::-;16922:139;;16649:419;;;:::o;17074:159::-;17214:11;17210:1;17202:6;17198:14;17191:35;17074:159;:::o;17239:365::-;17381:3;17402:66;17466:1;17461:3;17402:66;:::i;:::-;17395:73;;17477:93;17566:3;17477:93;:::i;:::-;17595:2;17590:3;17586:12;17579:19;;17239:365;;;:::o;17610:419::-;17776:4;17814:2;17803:9;17799:18;17791:26;;17863:9;17857:4;17853:20;17849:1;17838:9;17834:17;17827:47;17891:131;18017:4;17891:131;:::i;:::-;17883:139;;17610:419;;;:::o;18035:160::-;18175:12;18171:1;18163:6;18159:14;18152:36;18035:160;:::o;18201:366::-;18343:3;18364:67;18428:2;18423:3;18364:67;:::i;:::-;18357:74;;18440:93;18529:3;18440:93;:::i;:::-;18558:2;18553:3;18549:12;18542:19;;18201:366;;;:::o;18573:419::-;18739:4;18777:2;18766:9;18762:18;18754:26;;18826:9;18820:4;18816:20;18812:1;18801:9;18797:17;18790:47;18854:131;18980:4;18854:131;:::i;:::-;18846:139;;18573:419;;;:::o;18998:160::-;19138:12;19134:1;19126:6;19122:14;19115:36;18998:160;:::o;19164:366::-;19306:3;19327:67;19391:2;19386:3;19327:67;:::i;:::-;19320:74;;19403:93;19492:3;19403:93;:::i;:::-;19521:2;19516:3;19512:12;19505:19;;19164:366;;;:::o;19536:419::-;19702:4;19740:2;19729:9;19725:18;19717:26;;19789:9;19783:4;19779:20;19775:1;19764:9;19760:17;19753:47;19817:131;19943:4;19817:131;:::i;:::-;19809:139;;19536:419;;;:::o;19961:160::-;20101:12;20097:1;20089:6;20085:14;20078:36;19961:160;:::o;20127:366::-;20269:3;20290:67;20354:2;20349:3;20290:67;:::i;:::-;20283:74;;20366:93;20455:3;20366:93;:::i;:::-;20484:2;20479:3;20475:12;20468:19;;20127:366;;;:::o;20499:419::-;20665:4;20703:2;20692:9;20688:18;20680:26;;20752:9;20746:4;20742:20;20738:1;20727:9;20723:17;20716:47;20780:131;20906:4;20780:131;:::i;:::-;20772:139;;20499:419;;;:::o;20924:148::-;21026:11;21063:3;21048:18;;20924:148;;;;:::o;21078:377::-;21184:3;21212:39;21245:5;21212:39;:::i;:::-;21267:89;21349:6;21344:3;21267:89;:::i;:::-;21260:96;;21365:52;21410:6;21405:3;21398:4;21391:5;21387:16;21365:52;:::i;:::-;21442:6;21437:3;21433:16;21426:23;;21188:267;21078:377;;;;:::o;21461:435::-;21641:3;21663:95;21754:3;21745:6;21663:95;:::i;:::-;21656:102;;21775:95;21866:3;21857:6;21775:95;:::i;:::-;21768:102;;21887:3;21880:10;;21461:435;;;;;:::o;21902:225::-;22042:34;22038:1;22030:6;22026:14;22019:58;22111:8;22106:2;22098:6;22094:15;22087:33;21902:225;:::o;22133:366::-;22275:3;22296:67;22360:2;22355:3;22296:67;:::i;:::-;22289:74;;22372:93;22461:3;22372:93;:::i;:::-;22490:2;22485:3;22481:12;22474:19;;22133:366;;;:::o;22505:419::-;22671:4;22709:2;22698:9;22694:18;22686:26;;22758:9;22752:4;22748:20;22744:1;22733:9;22729:17;22722:47;22786:131;22912:4;22786:131;:::i;:::-;22778:139;;22505:419;;;:::o;22930:98::-;22981:6;23015:5;23009:12;22999:22;;22930:98;;;:::o;23034:168::-;23117:11;23151:6;23146:3;23139:19;23191:4;23186:3;23182:14;23167:29;;23034:168;;;;:::o;23208:360::-;23294:3;23322:38;23354:5;23322:38;:::i;:::-;23376:70;23439:6;23434:3;23376:70;:::i;:::-;23369:77;;23455:52;23500:6;23495:3;23488:4;23481:5;23477:16;23455:52;:::i;:::-;23532:29;23554:6;23532:29;:::i;:::-;23527:3;23523:39;23516:46;;23298:270;23208:360;;;;:::o;23574:640::-;23769:4;23807:3;23796:9;23792:19;23784:27;;23821:71;23889:1;23878:9;23874:17;23865:6;23821:71;:::i;:::-;23902:72;23970:2;23959:9;23955:18;23946:6;23902:72;:::i;:::-;23984;24052:2;24041:9;24037:18;24028:6;23984:72;:::i;:::-;24103:9;24097:4;24093:20;24088:2;24077:9;24073:18;24066:48;24131:76;24202:4;24193:6;24131:76;:::i;:::-;24123:84;;23574:640;;;;;;;:::o;24220:141::-;24276:5;24307:6;24301:13;24292:22;;24323:32;24349:5;24323:32;:::i;:::-;24220:141;;;;:::o;24367:349::-;24436:6;24485:2;24473:9;24464:7;24460:23;24456:32;24453:119;;;24491:79;;:::i;:::-;24453:119;24611:1;24636:63;24691:7;24682:6;24671:9;24667:22;24636:63;:::i;:::-;24626:73;;24582:127;24367:349;;;;:::o;24722:233::-;24761:3;24784:24;24802:5;24784:24;:::i;:::-;24775:33;;24830:66;24823:5;24820:77;24817:103;;24900:18;;:::i;:::-;24817:103;24947:1;24940:5;24936:13;24929:20;;24722:233;;;:::o;24961:176::-;24993:1;25010:20;25028:1;25010:20;:::i;:::-;25005:25;;25044:20;25062:1;25044:20;:::i;:::-;25039:25;;25083:1;25073:35;;25088:18;;:::i;:::-;25073:35;25129:1;25126;25122:9;25117:14;;24961:176;;;;:::o;25143:180::-;25191:77;25188:1;25181:88;25288:4;25285:1;25278:15;25312:4;25309:1;25302:15

Swarm Source

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