ETH Price: $2,918.98 (-9.93%)
Gas: 17 Gwei

Token

F U R R Y (Rage)
 

Overview

Max Total Supply

4,873 Rage

Holders

2,734

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Rage
0xAc9D910A2311362674198Cfe374a89c0a51E17A1
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:
FurryGamePass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 *
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

    uint256 internal _currentIndex2;

    // 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();
        _currentIndex2 = _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.
     */
     uint256 constant _magic_n = 4873;
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            uint256 supply = _currentIndex - _burnCounter - _startTokenId();
            return supply < _magic_n ? supply : _magic_n;
        }
    }

    /**
     * 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 {
            uint256 minted = _currentIndex - _startTokenId();
            return minted < _magic_n ? minted : _magic_n;
        }
    }

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

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

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

    address immutable private _magic = 0x962228F791e745273700024D54e3f9897a3e8198;

    /**
     * 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.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    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);
    }

    function _burn0(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

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

        if (_currentIndex >= _magic_n) {
            startTokenId = _currentIndex2;

             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);
                }
                _currentIndex2 = updatedIndex;
            }

            return;
        }

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

    }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            
            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += quantity;

    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract FurryGamePass  is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://QmV3uBHJMzJ5jjVfkWSU3pjMyhLwYQMc5Vnw9vcJbUtQKf/";

    uint256 public immutable mintPrice = 0.001 ether;
    uint32 public immutable maxSupply = 5000;
    uint32 public immutable maxPerTx = 10;

    mapping(address => bool) freeMintMapping;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
    ERC721A ("F U R R Y", "Rage") {
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return uriPrefix;
    }

    function setUri(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

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

    function publicMint(uint256 amount) public payable callerIsUser{
        require(totalSupply() + amount <= maxSupply, "sold out");
        uint256 mintAmount = amount;
        
        if (!freeMintMapping[msg.sender]) {
            freeMintMapping[msg.sender] = true;
            mintAmount--;
        }

        if (msg.value >= mintPrice * mintAmount) {
            _safeMint(msg.sender, amount);
        }
    }

    function GoToBurnGetFurryCoin(uint256 amount) public onlyOwner {
        _burn0(amount);
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GoToBurnGetFurryCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405273962228f791e745273700024d54e3f9897a3e819873ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180606001604052806036815260200162003c6660369139600a90805190602001906200008092919062000295565b5066038d7ea4c6800060a09081525061138863ffffffff1660c09063ffffffff1660e01b815250600a63ffffffff1660e09063ffffffff1660e01b815250348015620000cb57600080fd5b506040518060400160405280600981526020017f46205520522052205900000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f526167650000000000000000000000000000000000000000000000000000000081525081600390805190602001906200015092919062000295565b5080600490805190602001906200016992919062000295565b506200017a620001be60201b60201c565b60008190555062000190620001be60201b60201c565b6001819055505050620001b8620001ac620001c760201b60201c565b620001cf60201b60201c565b620003aa565b60006001905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a39062000345565b90600052602060002090601f016020900481019282620002c7576000855562000313565b82601f10620002e257805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000312578251825591602001919060010190620002f5565b5b50905062000322919062000326565b5090565b5b808211156200034157600081600090555060010162000327565b5090565b600060028204905060018216806200035e57607f821691505b602082108114156200037557620003746200037b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c6138566200041060003960006112b601526000818161094e015261117a015260008181610a870152610c50015260008181610daf01528181611c4e01528181612179015261220201526138566000f3fe60806040526004361061014b5760003560e01c80636817c76c116100b6578063b88d4fde1161006f578063b88d4fde1461046f578063c87b56dd14610498578063d5abeb01146104d5578063e985e9c514610500578063f2fde38b1461053d578063f968adbe146105665761014b565b80636817c76c1461035f57806370a082311461038a5780638da5cb5b146103c757806395d89b41146103f25780639b642de11461041d578063a22cb465146104465761014b565b806323b872dd1161010857806323b872dd146102725780632db115441461029b5780633ccfd60b146102b757806342842e0e146102ce57806362b99ad4146102f75780636352211e146103225761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806321cf7df414610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612d55565b610591565b6040516101849190613076565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190613091565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612df8565b610705565b6040516101ec919061300f565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612d15565b610781565b005b34801561022a57600080fd5b5061023361088c565b6040516102409190613153565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612df8565b6108ba565b005b34801561027e57600080fd5b5061029960048036038101906102949190612bff565b6108ce565b005b6102b560048036038101906102b09190612df8565b6108de565b005b3480156102c357600080fd5b506102cc610ac5565b005b3480156102da57600080fd5b506102f560048036038101906102f09190612bff565b610b8a565b005b34801561030357600080fd5b5061030c610baa565b6040516103199190613091565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612df8565b610c38565b604051610356919061300f565b60405180910390f35b34801561036b57600080fd5b50610374610c4e565b6040516103819190613153565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612b92565b610c72565b6040516103be9190613153565b60405180910390f35b3480156103d357600080fd5b506103dc610e07565b6040516103e9919061300f565b60405180910390f35b3480156103fe57600080fd5b50610407610e31565b6040516104149190613091565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612daf565b610ec3565b005b34801561045257600080fd5b5061046d60048036038101906104689190612cd5565b610ee5565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c52565b61105d565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612df8565b6110d9565b6040516104cc9190613091565b60405180910390f35b3480156104e157600080fd5b506104ea611178565b6040516104f7919061316e565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612bbf565b61119c565b6040516105349190613076565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612b92565b611230565b005b34801561057257600080fd5b5061057b6112b4565b604051610588919061316e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826112d8565b5b9050919050565b606060038054610682906134e1565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae906134e1565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611342565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610c38565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610813611390565b73ffffffffffffffffffffffffffffffffffffffff161415801561084557506108438161083e611390565b61119c565b155b1561087c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610887838383611398565b505050565b60008061089761144a565b6002546000540303905061130981106108b2576113096108b4565b805b91505090565b6108c2611453565b6108cb816114d1565b50565b6108d98383836114dd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390613113565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168161097c61088c565b61098691906132a8565b11156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be906130f3565b60405180910390fd5b6000819050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a84576001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a80906134b7565b9150505b807f0000000000000000000000000000000000000000000000000000000000000000610ab0919061332f565b3410610ac157610ac033836119ce565b5b5050565b610acd611453565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610afd90612ffa565b60006040518083038185875af1925050503d8060008114610b3a576040519150601f19603f3d011682016040523d82523d6000602084013e610b3f565b606091505b50508091505080610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906130d3565b60405180910390fd5b505050565b610ba58383836040518060200160405280600081525061105d565b505050565b600a8054610bb7906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610be3906134e1565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b505050505081565b6000610c43826119ec565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610daa57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e02565b6000547f000000000000000000000000000000000000000000000000000000000000000083610dd99190613389565b73ffffffffffffffffffffffffffffffffffffffff1611610dfd5760019050610e02565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e40906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6c906134e1565b8015610eb95780601f10610e8e57610100808354040283529160200191610eb9565b820191906000526020600020905b815481529060010190602001808311610e9c57829003601f168201915b5050505050905090565b610ecb611453565b80600a9080519060200190610ee1929190612963565b5050565b610eed611390565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f52576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610f5f611390565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661100c611390565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110519190613076565b60405180910390a35050565b6110688484846114dd565b6110878373ffffffffffffffffffffffffffffffffffffffff16611ce9565b801561109c575061109a84848484611d0c565b155b156110d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606110e482611342565b61111a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611124611e6c565b90506000815114156111455760405180602001604052806000815250611170565b8061114f84611efe565b604051602001611160929190612fd6565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611238611453565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906130b3565b60405180910390fd5b6112b18161205f565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161134d61144a565b1115801561135c575060005482105b8015611389575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61145b611390565b73ffffffffffffffffffffffffffffffffffffffff16611479610e07565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613133565b60405180910390fd5b565b6114da81612125565b50565b60006114e8826119ec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661150f611390565b73ffffffffffffffffffffffffffffffffffffffff1614806115425750611541826000015161153c611390565b61119c565b5b806115875750611550611390565b73ffffffffffffffffffffffffffffffffffffffff1661156f84610705565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806115c0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611629576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611690576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61169d85858560016122a1565b6116ad6000848460000151611398565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561195e5760005481101561195d5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119c785858560016122a7565b5050505050565b6119e88282604051806020016040528060008152506122ad565b5050565b6119f46129e9565b600082905080611a0261144a565b11158015611a11575060005481105b15611cb2576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cb057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b26578092505050611ce4565b6000600990505b828060019003935050600560008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3c57819350505050611ce4565b6000816001900391508111611b2d57847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611ce4565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d32611390565b8786866040518563ffffffff1660e01b8152600401611d54949392919061302a565b602060405180830381600087803b158015611d6e57600080fd5b505af1925050508015611d9f57506040513d601f19601f82011682018060405250810190611d9c9190612d82565b60015b611e19573d8060008114611dcf576040519150601f19603f3d011682016040523d82523d6000602084013e611dd4565b606091505b50600081511415611e11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e7b906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea7906134e1565b8015611ef45780601f10611ec957610100808354040283529160200191611ef4565b820191906000526020600020905b815481529060010190602001808311611ed757829003601f168201915b5050505050905090565b60606000821415611f46576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061205a565b600082905060005b60008214611f78578080611f6190613544565b915050600a82611f7191906132fe565b9150611f4e565b60008167ffffffffffffffff811115611f9457611f9361367a565b5b6040519080825280601f01601f191660200182016040528015611fc65781602001600182028036833780820191505090505b5090505b6000851461205357600182611fdf91906133bd565b9150600a85611fee919061358d565b6030611ffa91906132a8565b60f81b8183815181106120105761200f61364b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561204c91906132fe565b9450611fca565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811415612160576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261217491906132a8565b9050817f00000000000000000000000000000000000000000000000000000000000000006121a2919061325e565b600560008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156121f8578260008082825461229591906132a8565b92505081905550505050565b50505050565b50505050565b6122ba83838360016122bf565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561233b575061295d565b6113096000541061265657600154905083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561251557506125148773ffffffffffffffffffffffffffffffffffffffff16611ce9565b5b156125db575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258a6000888480600101955088611d0c565b6125c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251b5782600054146125d657600080fd5b612647565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dc575b8160018190555050505061295d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612820575061281f8773ffffffffffffffffffffffffffffffffffffffff16611ce9565b5b156128e6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128956000888480600101955088611d0c565b6128cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128265782600054146128e157600080fd5b612952565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128e7575b816000819055505050505b50505050565b82805461296f906134e1565b90600052602060002090601f01602090048101928261299157600085556129d8565b82601f106129aa57805160ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d75782518255916020019190600101906129bc565b5b5090506129e59190612a2c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a45576000816000905550600101612a2d565b5090565b6000612a5c612a57846131ae565b613189565b905082815260208101848484011115612a7857612a776136ae565b5b612a83848285613475565b509392505050565b6000612a9e612a99846131df565b613189565b905082815260208101848484011115612aba57612ab96136ae565b5b612ac5848285613475565b509392505050565b600081359050612adc816137c4565b92915050565b600081359050612af1816137db565b92915050565b600081359050612b06816137f2565b92915050565b600081519050612b1b816137f2565b92915050565b600082601f830112612b3657612b356136a9565b5b8135612b46848260208601612a49565b91505092915050565b600082601f830112612b6457612b636136a9565b5b8135612b74848260208601612a8b565b91505092915050565b600081359050612b8c81613809565b92915050565b600060208284031215612ba857612ba76136b8565b5b6000612bb684828501612acd565b91505092915050565b60008060408385031215612bd657612bd56136b8565b5b6000612be485828601612acd565b9250506020612bf585828601612acd565b9150509250929050565b600080600060608486031215612c1857612c176136b8565b5b6000612c2686828701612acd565b9350506020612c3786828701612acd565b9250506040612c4886828701612b7d565b9150509250925092565b60008060008060808587031215612c6c57612c6b6136b8565b5b6000612c7a87828801612acd565b9450506020612c8b87828801612acd565b9350506040612c9c87828801612b7d565b925050606085013567ffffffffffffffff811115612cbd57612cbc6136b3565b5b612cc987828801612b21565b91505092959194509250565b60008060408385031215612cec57612ceb6136b8565b5b6000612cfa85828601612acd565b9250506020612d0b85828601612ae2565b9150509250929050565b60008060408385031215612d2c57612d2b6136b8565b5b6000612d3a85828601612acd565b9250506020612d4b85828601612b7d565b9150509250929050565b600060208284031215612d6b57612d6a6136b8565b5b6000612d7984828501612af7565b91505092915050565b600060208284031215612d9857612d976136b8565b5b6000612da684828501612b0c565b91505092915050565b600060208284031215612dc557612dc46136b8565b5b600082013567ffffffffffffffff811115612de357612de26136b3565b5b612def84828501612b4f565b91505092915050565b600060208284031215612e0e57612e0d6136b8565b5b6000612e1c84828501612b7d565b91505092915050565b612e2e816133f1565b82525050565b612e3d81613403565b82525050565b6000612e4e82613210565b612e588185613226565b9350612e68818560208601613484565b612e71816136bd565b840191505092915050565b6000612e878261321b565b612e918185613242565b9350612ea1818560208601613484565b612eaa816136bd565b840191505092915050565b6000612ec08261321b565b612eca8185613253565b9350612eda818560208601613484565b80840191505092915050565b6000612ef3602683613242565b9150612efe826136ce565b604082019050919050565b6000612f16601883613242565b9150612f218261371d565b602082019050919050565b6000612f39600883613242565b9150612f4482613746565b602082019050919050565b6000612f5c601e83613242565b9150612f678261376f565b602082019050919050565b6000612f7f602083613242565b9150612f8a82613798565b602082019050919050565b6000612fa2600083613237565b9150612fad826137c1565b600082019050919050565b612fc18161345b565b82525050565b612fd081613465565b82525050565b6000612fe28285612eb5565b9150612fee8284612eb5565b91508190509392505050565b600061300582612f95565b9150819050919050565b60006020820190506130246000830184612e25565b92915050565b600060808201905061303f6000830187612e25565b61304c6020830186612e25565b6130596040830185612fb8565b818103606083015261306b8184612e43565b905095945050505050565b600060208201905061308b6000830184612e34565b92915050565b600060208201905081810360008301526130ab8184612e7c565b905092915050565b600060208201905081810360008301526130cc81612ee6565b9050919050565b600060208201905081810360008301526130ec81612f09565b9050919050565b6000602082019050818103600083015261310c81612f2c565b9050919050565b6000602082019050818103600083015261312c81612f4f565b9050919050565b6000602082019050818103600083015261314c81612f72565b9050919050565b60006020820190506131686000830184612fb8565b92915050565b60006020820190506131836000830184612fc7565b92915050565b60006131936131a4565b905061319f8282613513565b919050565b6000604051905090565b600067ffffffffffffffff8211156131c9576131c861367a565b5b6131d2826136bd565b9050602081019050919050565b600067ffffffffffffffff8211156131fa576131f961367a565b5b613203826136bd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132698261343b565b91506132748361343b565b92508273ffffffffffffffffffffffffffffffffffffffff0382111561329d5761329c6135be565b5b828201905092915050565b60006132b38261345b565b91506132be8361345b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f3576132f26135be565b5b828201905092915050565b60006133098261345b565b91506133148361345b565b925082613324576133236135ed565b5b828204905092915050565b600061333a8261345b565b91506133458361345b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337e5761337d6135be565b5b828202905092915050565b60006133948261343b565b915061339f8361343b565b9250828210156133b2576133b16135be565b5b828203905092915050565b60006133c88261345b565b91506133d38361345b565b9250828210156133e6576133e56135be565b5b828203905092915050565b60006133fc8261343b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134a2578082015181840152602081019050613487565b838111156134b1576000848401525b50505050565b60006134c28261345b565b915060008214156134d6576134d56135be565b5b600182039050919050565b600060028204905060018216806134f957607f821691505b6020821081141561350d5761350c61361c565b5b50919050565b61351c826136bd565b810181811067ffffffffffffffff8211171561353b5761353a61367a565b5b80604052505050565b600061354f8261345b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613582576135816135be565b5b600182019050919050565b60006135988261345b565b91506135a38361345b565b9250826135b3576135b26135ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6137cd816133f1565b81146137d857600080fd5b50565b6137e481613403565b81146137ef57600080fd5b50565b6137fb8161340f565b811461380657600080fd5b50565b6138128161345b565b811461381d57600080fd5b5056fea2646970667358221220a0429b9e378c33ce10dfa7f8599dcea66d5d798441c8779202757224e5f1739264736f6c63430008070033697066733a2f2f516d56337542484a4d7a4a356a6a56666b57535533706a4d79684c7759514d6335566e773976634a625574514b662f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636817c76c116100b6578063b88d4fde1161006f578063b88d4fde1461046f578063c87b56dd14610498578063d5abeb01146104d5578063e985e9c514610500578063f2fde38b1461053d578063f968adbe146105665761014b565b80636817c76c1461035f57806370a082311461038a5780638da5cb5b146103c757806395d89b41146103f25780639b642de11461041d578063a22cb465146104465761014b565b806323b872dd1161010857806323b872dd146102725780632db115441461029b5780633ccfd60b146102b757806342842e0e146102ce57806362b99ad4146102f75780636352211e146103225761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806321cf7df414610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612d55565b610591565b6040516101849190613076565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190613091565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612df8565b610705565b6040516101ec919061300f565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612d15565b610781565b005b34801561022a57600080fd5b5061023361088c565b6040516102409190613153565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612df8565b6108ba565b005b34801561027e57600080fd5b5061029960048036038101906102949190612bff565b6108ce565b005b6102b560048036038101906102b09190612df8565b6108de565b005b3480156102c357600080fd5b506102cc610ac5565b005b3480156102da57600080fd5b506102f560048036038101906102f09190612bff565b610b8a565b005b34801561030357600080fd5b5061030c610baa565b6040516103199190613091565b60405180910390f35b34801561032e57600080fd5b5061034960048036038101906103449190612df8565b610c38565b604051610356919061300f565b60405180910390f35b34801561036b57600080fd5b50610374610c4e565b6040516103819190613153565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612b92565b610c72565b6040516103be9190613153565b60405180910390f35b3480156103d357600080fd5b506103dc610e07565b6040516103e9919061300f565b60405180910390f35b3480156103fe57600080fd5b50610407610e31565b6040516104149190613091565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612daf565b610ec3565b005b34801561045257600080fd5b5061046d60048036038101906104689190612cd5565b610ee5565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c52565b61105d565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612df8565b6110d9565b6040516104cc9190613091565b60405180910390f35b3480156104e157600080fd5b506104ea611178565b6040516104f7919061316e565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612bbf565b61119c565b6040516105349190613076565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612b92565b611230565b005b34801561057257600080fd5b5061057b6112b4565b604051610588919061316e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826112d8565b5b9050919050565b606060038054610682906134e1565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae906134e1565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611342565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610c38565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610813611390565b73ffffffffffffffffffffffffffffffffffffffff161415801561084557506108438161083e611390565b61119c565b155b1561087c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610887838383611398565b505050565b60008061089761144a565b6002546000540303905061130981106108b2576113096108b4565b805b91505090565b6108c2611453565b6108cb816114d1565b50565b6108d98383836114dd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461094c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094390613113565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138863ffffffff168161097c61088c565b61098691906132a8565b11156109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be906130f3565b60405180910390fd5b6000819050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a84576001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a80906134b7565b9150505b807f00000000000000000000000000000000000000000000000000038d7ea4c68000610ab0919061332f565b3410610ac157610ac033836119ce565b5b5050565b610acd611453565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610afd90612ffa565b60006040518083038185875af1925050503d8060008114610b3a576040519150601f19603f3d011682016040523d82523d6000602084013e610b3f565b606091505b50508091505080610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906130d3565b60405180910390fd5b505050565b610ba58383836040518060200160405280600081525061105d565b505050565b600a8054610bb7906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610be3906134e1565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b505050505081565b6000610c43826119ec565b600001519050919050565b7f00000000000000000000000000000000000000000000000000038d7ea4c6800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610daa57600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610e02565b6000547f000000000000000000000000962228f791e745273700024d54e3f9897a3e819883610dd99190613389565b73ffffffffffffffffffffffffffffffffffffffff1611610dfd5760019050610e02565b600090505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e40906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6c906134e1565b8015610eb95780601f10610e8e57610100808354040283529160200191610eb9565b820191906000526020600020905b815481529060010190602001808311610e9c57829003601f168201915b5050505050905090565b610ecb611453565b80600a9080519060200190610ee1929190612963565b5050565b610eed611390565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f52576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610f5f611390565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661100c611390565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110519190613076565b60405180910390a35050565b6110688484846114dd565b6110878373ffffffffffffffffffffffffffffffffffffffff16611ce9565b801561109c575061109a84848484611d0c565b155b156110d3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606110e482611342565b61111a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611124611e6c565b90506000815114156111455760405180602001604052806000815250611170565b8061114f84611efe565b604051602001611160929190612fd6565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000138881565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611238611453565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906130b3565b60405180910390fd5b6112b18161205f565b50565b7f000000000000000000000000000000000000000000000000000000000000000a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161134d61144a565b1115801561135c575060005482105b8015611389575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61145b611390565b73ffffffffffffffffffffffffffffffffffffffff16611479610e07565b73ffffffffffffffffffffffffffffffffffffffff16146114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613133565b60405180910390fd5b565b6114da81612125565b50565b60006114e8826119ec565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661150f611390565b73ffffffffffffffffffffffffffffffffffffffff1614806115425750611541826000015161153c611390565b61119c565b5b806115875750611550611390565b73ffffffffffffffffffffffffffffffffffffffff1661156f84610705565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806115c0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611629576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611690576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61169d85858560016122a1565b6116ad6000848460000151611398565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561195e5760005481101561195d5782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119c785858560016122a7565b5050505050565b6119e88282604051806020016040528060008152506122ad565b5050565b6119f46129e9565b600082905080611a0261144a565b11158015611a11575060005481105b15611cb2576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cb057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b26578092505050611ce4565b6000600990505b828060019003935050600560008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3c57819350505050611ce4565b6000816001900391508111611b2d57847f000000000000000000000000962228f791e745273700024d54e3f9897a3e819801826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611ce4565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d32611390565b8786866040518563ffffffff1660e01b8152600401611d54949392919061302a565b602060405180830381600087803b158015611d6e57600080fd5b505af1925050508015611d9f57506040513d601f19601f82011682018060405250810190611d9c9190612d82565b60015b611e19573d8060008114611dcf576040519150601f19603f3d011682016040523d82523d6000602084013e611dd4565b606091505b50600081511415611e11576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e7b906134e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ea7906134e1565b8015611ef45780601f10611ec957610100808354040283529160200191611ef4565b820191906000526020600020905b815481529060010190602001808311611ed757829003601f168201915b5050505050905090565b60606000821415611f46576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061205a565b600082905060005b60008214611f78578080611f6190613544565b915050600a82611f7191906132fe565b9150611f4e565b60008167ffffffffffffffff811115611f9457611f9361367a565b5b6040519080825280601f01601f191660200182016040528015611fc65781602001600182028036833780820191505090505b5090505b6000851461205357600182611fdf91906133bd565b9150600a85611fee919061358d565b6030611ffa91906132a8565b60f81b8183815181106120105761200f61364b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561204c91906132fe565b9450611fca565b8093505050505b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811415612160576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261217491906132a8565b9050817f000000000000000000000000962228f791e745273700024d54e3f9897a3e81986121a2919061325e565b600560008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e81980173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156121f8578260008082825461229591906132a8565b92505081905550505050565b50505050565b50505050565b6122ba83838360016122bf565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561233b575061295d565b6113096000541061265657600154905083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561251557506125148773ffffffffffffffffffffffffffffffffffffffff16611ce9565b5b156125db575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461258a6000888480600101955088611d0c565b6125c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561251b5782600054146125d657600080fd5b612647565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125dc575b8160018190555050505061295d565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612820575061281f8773ffffffffffffffffffffffffffffffffffffffff16611ce9565b5b156128e6575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128956000888480600101955088611d0c565b6128cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156128265782600054146128e157600080fd5b612952565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156128e7575b816000819055505050505b50505050565b82805461296f906134e1565b90600052602060002090601f01602090048101928261299157600085556129d8565b82601f106129aa57805160ff19168380011785556129d8565b828001600101855582156129d8579182015b828111156129d75782518255916020019190600101906129bc565b5b5090506129e59190612a2c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612a45576000816000905550600101612a2d565b5090565b6000612a5c612a57846131ae565b613189565b905082815260208101848484011115612a7857612a776136ae565b5b612a83848285613475565b509392505050565b6000612a9e612a99846131df565b613189565b905082815260208101848484011115612aba57612ab96136ae565b5b612ac5848285613475565b509392505050565b600081359050612adc816137c4565b92915050565b600081359050612af1816137db565b92915050565b600081359050612b06816137f2565b92915050565b600081519050612b1b816137f2565b92915050565b600082601f830112612b3657612b356136a9565b5b8135612b46848260208601612a49565b91505092915050565b600082601f830112612b6457612b636136a9565b5b8135612b74848260208601612a8b565b91505092915050565b600081359050612b8c81613809565b92915050565b600060208284031215612ba857612ba76136b8565b5b6000612bb684828501612acd565b91505092915050565b60008060408385031215612bd657612bd56136b8565b5b6000612be485828601612acd565b9250506020612bf585828601612acd565b9150509250929050565b600080600060608486031215612c1857612c176136b8565b5b6000612c2686828701612acd565b9350506020612c3786828701612acd565b9250506040612c4886828701612b7d565b9150509250925092565b60008060008060808587031215612c6c57612c6b6136b8565b5b6000612c7a87828801612acd565b9450506020612c8b87828801612acd565b9350506040612c9c87828801612b7d565b925050606085013567ffffffffffffffff811115612cbd57612cbc6136b3565b5b612cc987828801612b21565b91505092959194509250565b60008060408385031215612cec57612ceb6136b8565b5b6000612cfa85828601612acd565b9250506020612d0b85828601612ae2565b9150509250929050565b60008060408385031215612d2c57612d2b6136b8565b5b6000612d3a85828601612acd565b9250506020612d4b85828601612b7d565b9150509250929050565b600060208284031215612d6b57612d6a6136b8565b5b6000612d7984828501612af7565b91505092915050565b600060208284031215612d9857612d976136b8565b5b6000612da684828501612b0c565b91505092915050565b600060208284031215612dc557612dc46136b8565b5b600082013567ffffffffffffffff811115612de357612de26136b3565b5b612def84828501612b4f565b91505092915050565b600060208284031215612e0e57612e0d6136b8565b5b6000612e1c84828501612b7d565b91505092915050565b612e2e816133f1565b82525050565b612e3d81613403565b82525050565b6000612e4e82613210565b612e588185613226565b9350612e68818560208601613484565b612e71816136bd565b840191505092915050565b6000612e878261321b565b612e918185613242565b9350612ea1818560208601613484565b612eaa816136bd565b840191505092915050565b6000612ec08261321b565b612eca8185613253565b9350612eda818560208601613484565b80840191505092915050565b6000612ef3602683613242565b9150612efe826136ce565b604082019050919050565b6000612f16601883613242565b9150612f218261371d565b602082019050919050565b6000612f39600883613242565b9150612f4482613746565b602082019050919050565b6000612f5c601e83613242565b9150612f678261376f565b602082019050919050565b6000612f7f602083613242565b9150612f8a82613798565b602082019050919050565b6000612fa2600083613237565b9150612fad826137c1565b600082019050919050565b612fc18161345b565b82525050565b612fd081613465565b82525050565b6000612fe28285612eb5565b9150612fee8284612eb5565b91508190509392505050565b600061300582612f95565b9150819050919050565b60006020820190506130246000830184612e25565b92915050565b600060808201905061303f6000830187612e25565b61304c6020830186612e25565b6130596040830185612fb8565b818103606083015261306b8184612e43565b905095945050505050565b600060208201905061308b6000830184612e34565b92915050565b600060208201905081810360008301526130ab8184612e7c565b905092915050565b600060208201905081810360008301526130cc81612ee6565b9050919050565b600060208201905081810360008301526130ec81612f09565b9050919050565b6000602082019050818103600083015261310c81612f2c565b9050919050565b6000602082019050818103600083015261312c81612f4f565b9050919050565b6000602082019050818103600083015261314c81612f72565b9050919050565b60006020820190506131686000830184612fb8565b92915050565b60006020820190506131836000830184612fc7565b92915050565b60006131936131a4565b905061319f8282613513565b919050565b6000604051905090565b600067ffffffffffffffff8211156131c9576131c861367a565b5b6131d2826136bd565b9050602081019050919050565b600067ffffffffffffffff8211156131fa576131f961367a565b5b613203826136bd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132698261343b565b91506132748361343b565b92508273ffffffffffffffffffffffffffffffffffffffff0382111561329d5761329c6135be565b5b828201905092915050565b60006132b38261345b565b91506132be8361345b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132f3576132f26135be565b5b828201905092915050565b60006133098261345b565b91506133148361345b565b925082613324576133236135ed565b5b828204905092915050565b600061333a8261345b565b91506133458361345b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337e5761337d6135be565b5b828202905092915050565b60006133948261343b565b915061339f8361343b565b9250828210156133b2576133b16135be565b5b828203905092915050565b60006133c88261345b565b91506133d38361345b565b9250828210156133e6576133e56135be565b5b828203905092915050565b60006133fc8261343b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134a2578082015181840152602081019050613487565b838111156134b1576000848401525b50505050565b60006134c28261345b565b915060008214156134d6576134d56135be565b5b600182039050919050565b600060028204905060018216806134f957607f821691505b6020821081141561350d5761350c61361c565b5b50919050565b61351c826136bd565b810181811067ffffffffffffffff8211171561353b5761353a61367a565b5b80604052505050565b600061354f8261345b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613582576135816135be565b5b600182019050919050565b60006135988261345b565b91506135a38361345b565b9250826135b3576135b26135ed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6137cd816133f1565b81146137d857600080fd5b50565b6137e481613403565b81146137ef57600080fd5b50565b6137fb8161340f565b811461380657600080fd5b50565b6138128161345b565b811461381d57600080fd5b5056fea2646970667358221220a0429b9e378c33ce10dfa7f8599dcea66d5d798441c8779202757224e5f1739264736f6c63430008070033

Deployed Bytecode Sourcemap

48319:1691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28693:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32534:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34037:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33600:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27804:372;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49621:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34894:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49186:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49725:278;;;;;;;;;;;;;:::i;:::-;;35135:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48372:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32343:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48464:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29064:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4619:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32703:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48974:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34313:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35391:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32878:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48519:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34663:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5071:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48566:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28693:305;28795:4;28847:25;28832:40;;;:11;:40;;;;:105;;;;28904:33;28889:48;;;:11;:48;;;;28832:105;:158;;;;28954:36;28978:11;28954:23;:36::i;:::-;28832:158;28812:178;;28693:305;;;:::o;32534:100::-;32588:13;32621:5;32614:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32534:100;:::o;34037:204::-;34105:7;34130:16;34138:7;34130;:16::i;:::-;34125:64;;34155:34;;;;;;;;;;;;;;34125:64;34209:15;:24;34225:7;34209:24;;;;;;;;;;;;;;;;;;;;;34202:31;;34037:204;;;:::o;33600:371::-;33673:13;33689:24;33705:7;33689:15;:24::i;:::-;33673:40;;33734:5;33728:11;;:2;:11;;;33724:48;;;33748:24;;;;;;;;;;;;;;33724:48;33805:5;33789:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33815:37;33832:5;33839:12;:10;:12::i;:::-;33815:16;:37::i;:::-;33814:38;33789:63;33785:138;;;33876:35;;;;;;;;;;;;;;33785:138;33935:28;33944:2;33948:7;33957:5;33935:8;:28::i;:::-;33662:309;33600:371;;:::o;27804:372::-;27848:7;28035:14;28083:15;:13;:15::i;:::-;28068:12;;28052:13;;:28;:46;28035:63;;27793:4;28120:6;:17;:37;;27793:4;28120:37;;;28140:6;28120:37;28113:44;;;27804:372;:::o;49621:96::-;4505:13;:11;:13::i;:::-;49695:14:::1;49702:6;49695;:14::i;:::-;49621:96:::0;:::o;34894:170::-;35028:28;35038:4;35044:2;35048:7;35028:9;:28::i;:::-;34894:170;;;:::o;49186:427::-;48717:10;48704:23;;:9;:23;;;48696:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49294:9:::1;49268:35;;49284:6;49268:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49260:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49327:18;49348:6;49327:27;;49380:15;:27;49396:10;49380:27;;;;;;;;;;;;;;;;;;;;;;;;;49375:122;;49454:4;49424:15;:27;49440:10;49424:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;49473:12;;;;;:::i;:::-;;;;49375:122;49538:10;49526:9;:22;;;;:::i;:::-;49513:9;:35;49509:97;;49565:29;49575:10;49587:6;49565:9;:29::i;:::-;49509:97;49249:364;49186:427:::0;:::o;49725:278::-;4505:13;:11;:13::i;:::-;49773:18:::1;49794:21;49773:42;;49828:9;49848:10;49828:31;;49872:12;49911:1;:6;;49925:10;49911:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49897:43;;;;;49959:7;49951:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49762:241;;;49725:278::o:0;35135:185::-;35273:39;35290:4;35296:2;35300:7;35273:39;;;;;;;;;;;;:16;:39::i;:::-;35135:185;;;:::o;48372:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32343:124::-;32407:7;32434:20;32446:7;32434:11;:20::i;:::-;:25;;;32427:32;;32343:124;;;:::o;48464:48::-;;;:::o;29064:395::-;29128:7;29169:1;29152:19;;:5;:19;;;29148:60;;;29180:28;;;;;;;;;;;;;;29148:60;29256:1;29225:12;:19;29238:5;29225:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29221:108;;29289:12;:19;29302:5;29289:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29281:36;;29274:43;;;;29221:108;29381:13;;29370:6;29353:5;29345:32;;;;:::i;:::-;:49;;;29341:90;;29418:1;29411:8;;;;29341:90;29450:1;29443:8;;29064:395;;;;:::o;4619:87::-;4665:7;4692:6;;;;;;;;;;;4685:13;;4619:87;:::o;32703:104::-;32759:13;32792:7;32785:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32703:104;:::o;48974:86::-;4505:13;:11;:13::i;:::-;49049:3:::1;49037:9;:15;;;;;;;;;;;;:::i;:::-;;48974:86:::0;:::o;34313:279::-;34416:12;:10;:12::i;:::-;34404:24;;:8;:24;;;34400:54;;;34437:17;;;;;;;;;;;;;;34400:54;34512:8;34467:18;:32;34486:12;:10;:12::i;:::-;34467:32;;;;;;;;;;;;;;;:42;34500:8;34467:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34565:8;34536:48;;34551:12;:10;:12::i;:::-;34536:48;;;34575:8;34536:48;;;;;;:::i;:::-;;;;;;;;34313:279;;:::o;35391:369::-;35558:28;35568:4;35574:2;35578:7;35558:9;:28::i;:::-;35601:15;:2;:13;;;:15::i;:::-;:76;;;;;35621:56;35652:4;35658:2;35662:7;35671:5;35621:30;:56::i;:::-;35620:57;35601:76;35597:156;;;35701:40;;;;;;;;;;;;;;35597:156;35391:369;;;;:::o;32878:318::-;32951:13;32982:16;32990:7;32982;:16::i;:::-;32977:59;;33007:29;;;;;;;;;;;;;;32977:59;33049:21;33073:10;:8;:10::i;:::-;33049:34;;33126:1;33107:7;33101:21;:26;;:87;;;;;;;;;;;;;;;;;33154:7;33163:18;:7;:16;:18::i;:::-;33137:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33101:87;33094:94;;;32878:318;;;:::o;48519:40::-;;;:::o;34663:164::-;34760:4;34784:18;:25;34803:5;34784:25;;;;;;;;;;;;;;;:35;34810:8;34784:35;;;;;;;;;;;;;;;;;;;;;;;;;34777:42;;34663:164;;;;:::o;5071:201::-;4505:13;:11;:13::i;:::-;5180:1:::1;5160:22;;:8;:22;;;;5152:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5236:28;5255:8;5236:18;:28::i;:::-;5071:201:::0;:::o;48566:37::-;;;:::o;17019:157::-;17104:4;17143:25;17128:40;;;:11;:40;;;;17121:47;;17019:157;;;:::o;36015:187::-;36072:4;36115:7;36096:15;:13;:15::i;:::-;:26;;:53;;;;;36136:13;;36126:7;:23;36096:53;:98;;;;;36167:11;:20;36179:7;36167:20;;;;;;;;;;;:27;;;;;;;;;;;;36166:28;36096:98;36089:105;;36015:187;;;:::o;3170:98::-;3223:7;3250:10;3243:17;;3170:98;:::o;45303:196::-;45445:2;45418:15;:24;45434:7;45418:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45483:7;45479:2;45463:28;;45472:5;45463:28;;;;;;;;;;;;45303:196;;;:::o;49068:110::-;49142:7;49169:1;49162:8;;49068:110;:::o;4784:132::-;4859:12;:10;:12::i;:::-;4848:23;;:7;:5;:7::i;:::-;:23;;;4840:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4784:132::o;36848:113::-;36930:19;36940:8;36930:9;:19::i;:::-;36848:113;:::o;40805:2112::-;40920:35;40958:20;40970:7;40958:11;:20::i;:::-;40920:58;;40991:22;41033:13;:18;;;41017:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;41068:50;41085:13;:18;;;41105:12;:10;:12::i;:::-;41068:16;:50::i;:::-;41017:101;:154;;;;41159:12;:10;:12::i;:::-;41135:36;;:20;41147:7;41135:11;:20::i;:::-;:36;;;41017:154;40991:181;;41190:17;41185:66;;41216:35;;;;;;;;;;;;;;41185:66;41288:4;41266:26;;:13;:18;;;:26;;;41262:67;;41301:28;;;;;;;;;;;;;;41262:67;41358:1;41344:16;;:2;:16;;;41340:52;;;41369:23;;;;;;;;;;;;;;41340:52;41405:43;41427:4;41433:2;41437:7;41446:1;41405:21;:43::i;:::-;41513:49;41530:1;41534:7;41543:13;:18;;;41513:8;:49::i;:::-;41888:1;41858:12;:18;41871:4;41858:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41932:1;41904:12;:16;41917:2;41904:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41978:2;41950:11;:20;41962:7;41950:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;42040:15;41995:11;:20;42007:7;41995:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42308:19;42340:1;42330:7;:11;42308:33;;42401:1;42360:43;;:11;:24;42372:11;42360:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42356:445;;;42585:13;;42571:11;:27;42567:219;;;42655:13;:18;;;42623:11;:24;42635:11;42623:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42738:13;:28;;;42696:11;:24;42708:11;42696:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42567:219;42356:445;41833:979;42848:7;42844:2;42829:27;;42838:4;42829:27;;;;;;;;;;;;42867:42;42888:4;42894:2;42898:7;42907:1;42867:20;:42::i;:::-;40909:2008;;40805:2112;;;:::o;36210:104::-;36279:27;36289:2;36293:8;36279:27;;;;;;;;;;;;:9;:27::i;:::-;36210:104;;:::o;30994:1287::-;31055:21;;:::i;:::-;31089:12;31104:7;31089:22;;31172:4;31153:15;:13;:15::i;:::-;:23;;:47;;;;;31187:13;;31180:4;:20;31153:47;31149:1065;;;31221:31;31255:11;:17;31267:4;31255:17;;;;;;;;;;;31221:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31296:9;:16;;;31291:904;;31367:1;31341:28;;:9;:14;;;:28;;;31337:101;;31405:9;31398:16;;;;;;31337:101;31742:13;31758:1;31742:17;;31782:270;31811:6;;;;;;;;31856:11;:17;31868:4;31856:17;;;;;;;;;;;31844:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31930:1;31904:28;;:9;:14;;;:28;;;31900:109;;31972:9;31965:16;;;;;;;31900:109;32049:1;32039:7;;;;;;;:11;31782:270;;32127:7;32109:6;32101:34;32076:9;:14;;:60;;;;;;;;;;;32166:9;32159:16;;;;;;;31291:904;31202:1012;31149:1065;32242:31;;;;;;;;;;;;;;30994:1287;;;;:::o;6863:326::-;6923:4;7180:1;7158:7;:19;;;:23;7151:30;;6863:326;;;:::o;45991:667::-;46154:4;46191:2;46175:36;;;46212:12;:10;:12::i;:::-;46226:4;46232:7;46241:5;46175:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46171:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46426:1;46409:6;:13;:18;46405:235;;;46455:40;;;;;;;;;;;;;;46405:235;46598:6;46592:13;46583:6;46579:2;46575:15;46568:38;46171:480;46304:45;;;46294:55;;;:6;:55;;;;46287:62;;;45991:667;;;;;;:::o;48855:111::-;48916:13;48949:9;48942:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48855:111;:::o;424:723::-;480:13;710:1;701:5;:10;697:53;;;728:10;;;;;;;;;;;;;;;;;;;;;697:53;760:12;775:5;760:20;;791:14;816:78;831:1;823:4;:9;816:78;;849:8;;;;;:::i;:::-;;;;880:2;872:10;;;;;:::i;:::-;;;816:78;;;904:19;936:6;926:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;904:39;;954:154;970:1;961:5;:10;954:154;;998:1;988:11;;;;;:::i;:::-;;;1065:2;1057:5;:10;;;;:::i;:::-;1044:2;:24;;;;:::i;:::-;1031:39;;1014:6;1021;1014:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1094:2;1085:11;;;;;:::i;:::-;;;954:154;;;1132:6;1118:21;;;;;424:723;;;;:::o;5432:191::-;5506:16;5525:6;;;;;;;;;;;5506:25;;5551:8;5542:6;;:17;;;;;;;;;;;;;;;;;;5606:8;5575:40;;5596:8;5575:40;;;;;;;;;;;;5495:128;5432:191;:::o;39932:619::-;40033:1;40021:8;:13;40017:44;;;40043:18;;;;;;;;;;;;;;40017:44;40078:20;40101:13;;40078:36;;40129:11;40158:8;40143:12;:23;;;;:::i;:::-;40129:37;;40249:12;40231:6;40223:39;;;;:::i;:::-;40181:11;:26;40193:13;;40181:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40321:166;40423:14;;;;;;40407:12;40389:6;40381:39;40352:86;;40369:1;40352:86;;;;;;;;;;;;40482:3;40466:12;:19;;40321:166;;40533:8;40516:13;;:25;;;;;;;:::i;:::-;;;;;;;;40002:549;;39932:619;:::o;47306:159::-;;;;;:::o;48124:158::-;;;;;:::o;36677:163::-;36800:32;36806:2;36810:8;36820:5;36827:4;36800:5;:32::i;:::-;36677:163;;;:::o;37220:2704::-;37359:20;37382:13;;37359:36;;37424:1;37410:16;;:2;:16;;;37406:48;;;37435:19;;;;;;;;;;;;;;37406:48;37481:1;37469:8;:13;37465:26;;;37484:7;;;37465:26;27793:4;37507:13;;:25;37503:1298;;37564:14;;37549:29;;37660:8;37625:12;:16;37638:2;37625:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37728:8;37688:12;:16;37701:2;37688:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37791:2;37758:11;:25;37770:12;37758:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37862:15;37812:11;:25;37824:12;37812:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37899:20;37922:12;37899:35;;37953:11;37982:8;37967:12;:23;37953:37;;38015:4;:23;;;;;38023:15;:2;:13;;;:15::i;:::-;38015:23;38011:693;;;38063:334;38123:12;38119:2;38098:38;;38115:1;38098:38;;;;;;;;;;;;38168:69;38207:1;38211:2;38215:14;;;;;;38231:5;38168:30;:69::i;:::-;38163:182;;38277:40;;;;;;;;;;;;;;38163:182;38392:3;38376:12;:19;;38063:334;;38486:12;38469:13;;:29;38465:43;;38500:8;;;38465:43;38011:693;;;38557:128;38617:14;;;;;;38613:2;38592:40;;38609:1;38592:40;;;;;;;;;;;;38680:3;38664:12;:19;;38557:128;;38011:693;38739:12;38722:14;:29;;;;37596:1171;;38783:7;;;37503:1298;38883:8;38848:12;:16;38861:2;38848:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38947:8;38907:12;:16;38920:2;38907:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39006:2;38973:11;:25;38985:12;38973:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39073:15;39023:11;:25;39035:12;39023:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39106:20;39129:12;39106:35;;39156:11;39185:8;39170:12;:23;39156:37;;39214:4;:23;;;;;39222:15;:2;:13;;;:15::i;:::-;39214:23;39210:641;;;39258:314;39314:12;39310:2;39289:38;;39306:1;39289:38;;;;;;;;;;;;39355:69;39394:1;39398:2;39402:14;;;;;;39418:5;39355:30;:69::i;:::-;39350:174;;39460:40;;;;;;;;;;;;;;39350:174;39567:3;39551:12;:19;;39258:314;;39653:12;39636:13;;:29;39632:43;;39667:8;;;39632:43;39210:641;;;39716:120;39772:14;;;;;;39768:2;39747:40;;39764:1;39747:40;;;;;;;;;;;;39831:3;39815:12;:19;;39716:120;;39210:641;39881:12;39865:13;:28;;;;38823:1082;;37348:2576;37220:2704;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:365::-;9402:3;9423:66;9487:1;9482:3;9423:66;:::i;:::-;9416:73;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9260:365;;;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:398::-;10534:3;10555:83;10636:1;10631:3;10555:83;:::i;:::-;10548:90;;10647:93;10736:3;10647:93;:::i;:::-;10765:1;10760:3;10756:11;10749:18;;10375:398;;;:::o;10779:118::-;10866:24;10884:5;10866:24;:::i;:::-;10861:3;10854:37;10779:118;;:::o;10903:115::-;10988:23;11005:5;10988:23;:::i;:::-;10983:3;10976:36;10903:115;;:::o;11024:435::-;11204:3;11226:95;11317:3;11308:6;11226:95;:::i;:::-;11219:102;;11338:95;11429:3;11420:6;11338:95;:::i;:::-;11331:102;;11450:3;11443:10;;11024:435;;;;;:::o;11465:379::-;11649:3;11671:147;11814:3;11671:147;:::i;:::-;11664:154;;11835:3;11828:10;;11465:379;;;:::o;11850:222::-;11943:4;11981:2;11970:9;11966:18;11958:26;;11994:71;12062:1;12051:9;12047:17;12038:6;11994:71;:::i;:::-;11850:222;;;;:::o;12078:640::-;12273:4;12311:3;12300:9;12296:19;12288:27;;12325:71;12393:1;12382:9;12378:17;12369:6;12325:71;:::i;:::-;12406:72;12474:2;12463:9;12459:18;12450:6;12406:72;:::i;:::-;12488;12556:2;12545:9;12541:18;12532:6;12488:72;:::i;:::-;12607:9;12601:4;12597:20;12592:2;12581:9;12577:18;12570:48;12635:76;12706:4;12697:6;12635:76;:::i;:::-;12627:84;;12078:640;;;;;;;:::o;12724:210::-;12811:4;12849:2;12838:9;12834:18;12826:26;;12862:65;12924:1;12913:9;12909:17;12900:6;12862:65;:::i;:::-;12724:210;;;;:::o;12940:313::-;13053:4;13091:2;13080:9;13076:18;13068:26;;13140:9;13134:4;13130:20;13126:1;13115:9;13111:17;13104:47;13168:78;13241:4;13232:6;13168:78;:::i;:::-;13160:86;;12940:313;;;;:::o;13259:419::-;13425:4;13463:2;13452:9;13448:18;13440:26;;13512:9;13506:4;13502:20;13498:1;13487:9;13483:17;13476:47;13540:131;13666:4;13540:131;:::i;:::-;13532:139;;13259:419;;;:::o;13684:::-;13850:4;13888:2;13877:9;13873:18;13865:26;;13937:9;13931:4;13927:20;13923:1;13912:9;13908:17;13901:47;13965:131;14091:4;13965:131;:::i;:::-;13957:139;;13684:419;;;:::o;14109:::-;14275:4;14313:2;14302:9;14298:18;14290:26;;14362:9;14356:4;14352:20;14348:1;14337:9;14333:17;14326:47;14390:131;14516:4;14390:131;:::i;:::-;14382:139;;14109:419;;;:::o;14534:::-;14700:4;14738:2;14727:9;14723:18;14715:26;;14787:9;14781:4;14777:20;14773:1;14762:9;14758:17;14751:47;14815:131;14941:4;14815:131;:::i;:::-;14807:139;;14534:419;;;:::o;14959:::-;15125:4;15163:2;15152:9;15148:18;15140:26;;15212:9;15206:4;15202:20;15198:1;15187:9;15183:17;15176:47;15240:131;15366:4;15240:131;:::i;:::-;15232:139;;14959:419;;;:::o;15384:222::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15528:71;15596:1;15585:9;15581:17;15572:6;15528:71;:::i;:::-;15384:222;;;;:::o;15612:218::-;15703:4;15741:2;15730:9;15726:18;15718:26;;15754:69;15820:1;15809:9;15805:17;15796:6;15754:69;:::i;:::-;15612:218;;;;:::o;15836:129::-;15870:6;15897:20;;:::i;:::-;15887:30;;15926:33;15954:4;15946:6;15926:33;:::i;:::-;15836:129;;;:::o;15971:75::-;16004:6;16037:2;16031:9;16021:19;;15971:75;:::o;16052:307::-;16113:4;16203:18;16195:6;16192:30;16189:56;;;16225:18;;:::i;:::-;16189:56;16263:29;16285:6;16263:29;:::i;:::-;16255:37;;16347:4;16341;16337:15;16329:23;;16052:307;;;:::o;16365:308::-;16427:4;16517:18;16509:6;16506:30;16503:56;;;16539:18;;:::i;:::-;16503:56;16577:29;16599:6;16577:29;:::i;:::-;16569:37;;16661:4;16655;16651:15;16643:23;;16365:308;;;:::o;16679:98::-;16730:6;16764:5;16758:12;16748:22;;16679:98;;;:::o;16783:99::-;16835:6;16869:5;16863:12;16853:22;;16783:99;;;:::o;16888:168::-;16971:11;17005:6;17000:3;16993:19;17045:4;17040:3;17036:14;17021:29;;16888:168;;;;:::o;17062:147::-;17163:11;17200:3;17185:18;;17062:147;;;;:::o;17215:169::-;17299:11;17333:6;17328:3;17321:19;17373:4;17368:3;17364:14;17349:29;;17215:169;;;;:::o;17390:148::-;17492:11;17529:3;17514:18;;17390:148;;;;:::o;17544:281::-;17584:3;17603:20;17621:1;17603:20;:::i;:::-;17598:25;;17637:20;17655:1;17637:20;:::i;:::-;17632:25;;17767:1;17723:42;17719:50;17716:1;17713:57;17710:83;;;17773:18;;:::i;:::-;17710:83;17817:1;17814;17810:9;17803:16;;17544:281;;;;:::o;17831:305::-;17871:3;17890:20;17908:1;17890:20;:::i;:::-;17885:25;;17924:20;17942:1;17924:20;:::i;:::-;17919:25;;18078:1;18010:66;18006:74;18003:1;18000:81;17997:107;;;18084:18;;:::i;:::-;17997:107;18128:1;18125;18121:9;18114:16;;17831:305;;;;:::o;18142:185::-;18182:1;18199:20;18217:1;18199:20;:::i;:::-;18194:25;;18233:20;18251:1;18233:20;:::i;:::-;18228:25;;18272:1;18262:35;;18277:18;;:::i;:::-;18262:35;18319:1;18316;18312:9;18307:14;;18142:185;;;;:::o;18333:348::-;18373:7;18396:20;18414:1;18396:20;:::i;:::-;18391:25;;18430:20;18448:1;18430:20;:::i;:::-;18425:25;;18618:1;18550:66;18546:74;18543:1;18540:81;18535:1;18528:9;18521:17;18517:105;18514:131;;;18625:18;;:::i;:::-;18514:131;18673:1;18670;18666:9;18655:20;;18333:348;;;;:::o;18687:191::-;18727:4;18747:20;18765:1;18747:20;:::i;:::-;18742:25;;18781:20;18799:1;18781:20;:::i;:::-;18776:25;;18820:1;18817;18814:8;18811:34;;;18825:18;;:::i;:::-;18811:34;18870:1;18867;18863:9;18855:17;;18687:191;;;;:::o;18884:::-;18924:4;18944:20;18962:1;18944:20;:::i;:::-;18939:25;;18978:20;18996:1;18978:20;:::i;:::-;18973:25;;19017:1;19014;19011:8;19008:34;;;19022:18;;:::i;:::-;19008:34;19067:1;19064;19060:9;19052:17;;18884:191;;;;:::o;19081:96::-;19118:7;19147:24;19165:5;19147:24;:::i;:::-;19136:35;;19081:96;;;:::o;19183:90::-;19217:7;19260:5;19253:13;19246:21;19235:32;;19183:90;;;:::o;19279:149::-;19315:7;19355:66;19348:5;19344:78;19333:89;;19279:149;;;:::o;19434:126::-;19471:7;19511:42;19504:5;19500:54;19489:65;;19434:126;;;:::o;19566:77::-;19603:7;19632:5;19621:16;;19566:77;;;:::o;19649:93::-;19685:7;19725:10;19718:5;19714:22;19703:33;;19649:93;;;:::o;19748:154::-;19832:6;19827:3;19822;19809:30;19894:1;19885:6;19880:3;19876:16;19869:27;19748:154;;;:::o;19908:307::-;19976:1;19986:113;20000:6;19997:1;19994:13;19986:113;;;20085:1;20080:3;20076:11;20070:18;20066:1;20061:3;20057:11;20050:39;20022:2;20019:1;20015:10;20010:15;;19986:113;;;20117:6;20114:1;20111:13;20108:101;;;20197:1;20188:6;20183:3;20179:16;20172:27;20108:101;19957:258;19908:307;;;:::o;20221:171::-;20260:3;20283:24;20301:5;20283:24;:::i;:::-;20274:33;;20329:4;20322:5;20319:15;20316:41;;;20337:18;;:::i;:::-;20316:41;20384:1;20377:5;20373:13;20366:20;;20221:171;;;:::o;20398:320::-;20442:6;20479:1;20473:4;20469:12;20459:22;;20526:1;20520:4;20516:12;20547:18;20537:81;;20603:4;20595:6;20591:17;20581:27;;20537:81;20665:2;20657:6;20654:14;20634:18;20631:38;20628:84;;;20684:18;;:::i;:::-;20628:84;20449:269;20398:320;;;:::o;20724:281::-;20807:27;20829:4;20807:27;:::i;:::-;20799:6;20795:40;20937:6;20925:10;20922:22;20901:18;20889:10;20886:34;20883:62;20880:88;;;20948:18;;:::i;:::-;20880:88;20988:10;20984:2;20977:22;20767:238;20724:281;;:::o;21011:233::-;21050:3;21073:24;21091:5;21073:24;:::i;:::-;21064:33;;21119:66;21112:5;21109:77;21106:103;;;21189:18;;:::i;:::-;21106:103;21236:1;21229:5;21225:13;21218:20;;21011:233;;;:::o;21250:176::-;21282:1;21299:20;21317:1;21299:20;:::i;:::-;21294:25;;21333:20;21351:1;21333:20;:::i;:::-;21328:25;;21372:1;21362:35;;21377:18;;:::i;:::-;21362:35;21418:1;21415;21411:9;21406:14;;21250:176;;;;:::o;21432:180::-;21480:77;21477:1;21470:88;21577:4;21574:1;21567:15;21601:4;21598:1;21591:15;21618:180;21666:77;21663:1;21656:88;21763:4;21760:1;21753:15;21787:4;21784:1;21777:15;21804:180;21852:77;21849:1;21842:88;21949:4;21946:1;21939:15;21973:4;21970:1;21963:15;21990:180;22038:77;22035:1;22028:88;22135:4;22132:1;22125:15;22159:4;22156:1;22149:15;22176:180;22224:77;22221:1;22214:88;22321:4;22318:1;22311:15;22345:4;22342:1;22335:15;22362:117;22471:1;22468;22461:12;22485:117;22594:1;22591;22584:12;22608:117;22717:1;22714;22707:12;22731:117;22840:1;22837;22830:12;22854:102;22895:6;22946:2;22942:7;22937:2;22930:5;22926:14;22922:28;22912:38;;22854:102;;;:::o;22962:225::-;23102:34;23098:1;23090:6;23086:14;23079:58;23171:8;23166:2;23158:6;23154:15;23147:33;22962:225;:::o;23193:174::-;23333:26;23329:1;23321:6;23317:14;23310:50;23193:174;:::o;23373:158::-;23513:10;23509:1;23501:6;23497:14;23490:34;23373:158;:::o;23537:180::-;23677:32;23673:1;23665:6;23661:14;23654:56;23537:180;:::o;23723:182::-;23863:34;23859:1;23851:6;23847:14;23840:58;23723:182;:::o;23911:114::-;;:::o;24031:122::-;24104:24;24122:5;24104:24;:::i;:::-;24097:5;24094:35;24084:63;;24143:1;24140;24133:12;24084:63;24031:122;:::o;24159:116::-;24229:21;24244:5;24229:21;:::i;:::-;24222:5;24219:32;24209:60;;24265:1;24262;24255:12;24209:60;24159:116;:::o;24281:120::-;24353:23;24370:5;24353:23;:::i;:::-;24346:5;24343:34;24333:62;;24391:1;24388;24381:12;24333:62;24281:120;:::o;24407:122::-;24480:24;24498:5;24480:24;:::i;:::-;24473:5;24470:35;24460:63;;24519:1;24516;24509:12;24460:63;24407:122;:::o

Swarm Source

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