ETH Price: $3,468.40 (+1.77%)
Gas: 8 Gwei

Token

vmfer (vmfer)
 

Overview

Max Total Supply

491 vmfer

Holders

251

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hopester.eth
Balance
1 vmfer
0x0db33b8940769cf6bf38f5a81ad80c61dc9adfa5
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:
vmfer

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-02-26
*/

// File: @openzeppelin/contracts/utils/Counters.sol
// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

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

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

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

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

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/LowGas.sol

pragma solidity >=0.7.0 <0.9.0;

contract vmfer is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    //other token nft contract
    address public otherTokenAddress =
        0xE2609354791Bf57E54B3f7F9A26b2dacBed61DA1;
    address public secondTokenAddress =
        0x79FCDEF22feeD20eDDacbB2587640e45491b757f;
    address public thirdTokenAddress =
        0xB156ADf8523FdC6152aFFdbA076a2143FD7e3c69;
    address public fourthTokenAddress =
        0x50092539A224953d82995C9D950E042dA4556283;
    address public fifthTokenAddress =
        0xdA858C5183e9024C0D5301ee85AE1e41dbe0F880;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    uint256 public cost = 0.02 ether;
    uint256 public maxSupply = 1000;
    uint256 public maxMintAmountPerTx = 10;
    uint256 public giveawaylimit = 500;
    uint256 public givedAway = 0;
    bool public paused = false;
    bool public revealed = false;

    struct GivedAwayFree {
        bool claimedFree;
    }
    mapping(address => GivedAwayFree) public givedAwayFree;

    constructor() ERC721("vmfer", "vmfer") {
        setHiddenMetadataUri(
            "ipfs://QmQuzeQE7Videvii8KCfN8oW1uHv1GiPhdwcyYfX69kC6m/hidden.json"
        );
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            supply.current() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(!paused, "The contract is paused!");
        // check if other user owns token from different contract
        uint256 ownedOtherToken = walletOfOwnerOfOtherContract(
            msg.sender,
            otherTokenAddress
        );
        uint256 _secondTokenAddress = walletOfOwnerOfOtherContract(
            msg.sender,
            secondTokenAddress
        );
        uint256 _thirdTokenAddress = walletOfOwnerOfOtherContract(
            msg.sender,
            thirdTokenAddress
        );
        uint256 _fourthTokenAddress = walletOfOwnerOfOtherContract(
            msg.sender,
            fourthTokenAddress
        );
        uint256 _fifthTokenAddress = walletOfOwnerOfOtherContract(
            msg.sender,
            fifthTokenAddress
        );

        //if user owns any token from different contract
        if (givedAway >= 500) {
            require(msg.value >= cost * _mintAmount, "Insufficient funds!");
            _mintLoop(msg.sender, _mintAmount);
        } else {
            if (
                ownedOtherToken > 0 || 
                _secondTokenAddress > 0 ||
                _thirdTokenAddress > 0 ||
                _fourthTokenAddress > 0 ||
                _fifthTokenAddress > 0
            ) {
                //check if user has already claimed free token
                if (givedAwayFree[msg.sender].claimedFree == true) {
                    // if user has already claimed free token, then he can't mint for free, and has to pay
                    require(
                        msg.value >= cost * _mintAmount,
                        "Insufficient funds!"
                    );
                    _mintLoop(msg.sender, _mintAmount);
                } else {
                    // if user has not claimed free token, then he can mint for free
                    _mintLoop(msg.sender, _mintAmount);
                    givedAwayFree[msg.sender].claimedFree = true;
                    givedAway++;
                }
            } else {
                // if user does not own any token from different contract, then he cannot mint for free
                require(msg.value >= cost * _mintAmount, "Insufficient funds!");
                _mintLoop(msg.sender, _mintAmount);
            }
        }
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _mintLoop(_receiver, _mintAmount);
    }

    function walletOfOwnerOfOtherContract(
        address _owner,
        address contractAddress
    ) public view returns (uint256 otherTokenAmount) {
        uint256 ownerTokenCount = ERC721(contractAddress).balanceOf(_owner);
        return ownerTokenCount;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return hiddenMetadataUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "";
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fifthTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fourthTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawaylimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"givedAway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"givedAwayFree","outputs":[{"internalType":"bool","name":"claimedFree","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"secondTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"contractAddress","type":"address"}],"name":"walletOfOwnerOfOtherContract","outputs":[{"internalType":"uint256","name":"otherTokenAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273e2609354791bf57e54b3f7f9a26b2dacbed61da1600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507379fcdef22feed20eddacbb2587640e45491b757f600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b156adf8523fdc6152affdba076a2143fd7e3c69600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507350092539a224953d82995c9d950e042da4556283600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073da858c5183e9024c0d5301ee85ae1e41dbe0f880600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600d9080519060200190620001d49291906200051b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9080519060200190620002229291906200051b565b5066470de4df8200006010556103e8601155600a6012556101f460135560006014556000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff0219169083151502179055503480156200028757600080fd5b506040518060400160405280600581526020017f766d6665720000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f766d66657200000000000000000000000000000000000000000000000000000081525081600090805190602001906200030c9291906200051b565b508060019080519060200190620003259291906200051b565b505050620003486200033c6200037860201b60201c565b6200038060201b60201c565b6200037260405180608001604052806041815260200162004f6b604191396200044660201b60201c565b620006b3565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004566200037860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200047c620004f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cc90620005f2565b60405180910390fd5b80600f9080519060200190620004ed9291906200051b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005299062000625565b90600052602060002090601f0160209004810192826200054d576000855562000599565b82601f106200056857805160ff191683800117855562000599565b8280016001018555821562000599579182015b82811115620005985782518255916020019190600101906200057b565b5b509050620005a89190620005ac565b5090565b5b80821115620005c7576000816000905550600101620005ad565b5090565b6000620005da60208362000614565b9150620005e7826200068a565b602082019050919050565b600060208201905081810360008301526200060d81620005cb565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200063e57607f821691505b602082108114156200065557620006546200065b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6148a880620006c36000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b071401b116100c1578063d5abeb011161007a578063d5abeb0114610947578063d619667314610972578063e0a808531461099d578063e985e9c5146109c6578063efbd73f414610a03578063f2fde38b14610a2c57610272565b8063b071401b14610837578063b88d4fde14610860578063bca0cf1c14610889578063c87b56dd146108b4578063d33c9467146108f1578063d59b22bb1461091c57610272565b80638da5cb5b116101135780638da5cb5b1461074657806394354fd01461077157806395d89b411461079c578063a0712d68146107c7578063a22cb465146107e3578063a45ba8e71461080c57610272565b80636352211e1461064f57806370a082311461068c578063715018a6146106c95780637ec4a659146106e05780637efa655b1461070957610272565b806323b872dd116101e85780634fdd43cb116101ac5780634fdd43cb1461054f57806351830227146105785780635503a0e8146105a3578063565f487f146105ce5780635c975abb146105f957806362b99ad41461062457610272565b806323b872dd146104805780633ccfd60b146104a957806342842e0e146104c0578063438b6300146104e957806344a0d68a1461052657610272565b806313faede61161023a57806313faede614610382578063152853a0146103ad57806316ba10e0146103d857806316c38b3c1461040157806318160ddd1461042a578063183fc5691461045557610272565b806301ffc9a71461027757806305db2b22146102b457806306fdde03146102f1578063081812fc1461031c578063095ea7b314610359575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906134a5565b610a55565b6040516102ab9190613b64565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906132b5565b610b37565b6040516102e89190613b64565b60405180910390f35b3480156102fd57600080fd5b50610306610b62565b6040516103139190613b7f565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613548565b610bf4565b6040516103509190613adb565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613438565b610c79565b005b34801561038e57600080fd5b50610397610d91565b6040516103a49190613e21565b60405180910390f35b3480156103b957600080fd5b506103c2610d97565b6040516103cf9190613adb565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906134ff565b610dbd565b005b34801561040d57600080fd5b5061042860048036038101906104239190613478565b610e53565b005b34801561043657600080fd5b5061043f610eec565b60405161044c9190613e21565b60405180910390f35b34801561046157600080fd5b5061046a610efd565b6040516104779190613e21565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190613322565b610f03565b005b3480156104b557600080fd5b506104be610f63565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613322565b61105f565b005b3480156104f557600080fd5b50610510600480360381019061050b91906132b5565b61107f565b60405161051d9190613b42565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613548565b61118a565b005b34801561055b57600080fd5b50610576600480360381019061057191906134ff565b611210565b005b34801561058457600080fd5b5061058d6112a6565b60405161059a9190613b64565b60405180910390f35b3480156105af57600080fd5b506105b86112b9565b6040516105c59190613b7f565b60405180910390f35b3480156105da57600080fd5b506105e3611347565b6040516105f09190613adb565b60405180910390f35b34801561060557600080fd5b5061060e61136d565b60405161061b9190613b64565b60405180910390f35b34801561063057600080fd5b50610639611380565b6040516106469190613b7f565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613548565b61140e565b6040516106839190613adb565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae91906132b5565b6114c0565b6040516106c09190613e21565b60405180910390f35b3480156106d557600080fd5b506106de611578565b005b3480156106ec57600080fd5b50610707600480360381019061070291906134ff565b611600565b005b34801561071557600080fd5b50610730600480360381019061072b91906132e2565b611696565b60405161073d9190613e21565b60405180910390f35b34801561075257600080fd5b5061075b61172e565b6040516107689190613adb565b60405180910390f35b34801561077d57600080fd5b50610786611758565b6040516107939190613e21565b60405180910390f35b3480156107a857600080fd5b506107b161175e565b6040516107be9190613b7f565b60405180910390f35b6107e160048036038101906107dc9190613548565b6117f0565b005b3480156107ef57600080fd5b5061080a600480360381019061080591906133f8565b611c1d565b005b34801561081857600080fd5b50610821611c33565b60405161082e9190613b7f565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613548565b611cc1565b005b34801561086c57600080fd5b5061088760048036038101906108829190613375565b611d47565b005b34801561089557600080fd5b5061089e611da9565b6040516108ab9190613adb565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613548565b611dcf565b6040516108e89190613b7f565b60405180910390f35b3480156108fd57600080fd5b50610906611f28565b6040516109139190613e21565b60405180910390f35b34801561092857600080fd5b50610931611f2e565b60405161093e9190613adb565b60405180910390f35b34801561095357600080fd5b5061095c611f54565b6040516109699190613e21565b60405180910390f35b34801561097e57600080fd5b50610987611f5a565b6040516109949190613adb565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613478565b611f80565b005b3480156109d257600080fd5b506109ed60048036038101906109e891906132e2565b612019565b6040516109fa9190613b64565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a2591906135a2565b6120ad565b005b348015610a3857600080fd5b50610a536004803603810190610a4e91906132b5565b6121e3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b305750610b2f826122db565b5b9050919050565b60166020528060005260406000206000915090508060000160009054906101000a900460ff16905081565b606060008054610b719061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9d9061412a565b8015610bea5780601f10610bbf57610100808354040283529160200191610bea565b820191906000526020600020905b815481529060010190602001808311610bcd57829003601f168201915b5050505050905090565b6000610bff82612345565b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613d21565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c848261140e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613da1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d146123b1565b73ffffffffffffffffffffffffffffffffffffffff161480610d435750610d4281610d3d6123b1565b612019565b5b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613ca1565b60405180910390fd5b610d8c83836123b9565b505050565b60105481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dc56123b1565b73ffffffffffffffffffffffffffffffffffffffff16610de361172e565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613d41565b60405180910390fd5b80600e9080519060200190610e4f9291906130b4565b5050565b610e5b6123b1565b73ffffffffffffffffffffffffffffffffffffffff16610e7961172e565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690613d41565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b6000610ef86007612472565b905090565b60145481565b610f14610f0e6123b1565b82612480565b610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90613de1565b60405180910390fd5b610f5e83838361255e565b505050565b610f6b6123b1565b73ffffffffffffffffffffffffffffffffffffffff16610f8961172e565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690613d41565b60405180910390fd5b6000610fe961172e565b73ffffffffffffffffffffffffffffffffffffffff164760405161100c90613ac6565b60006040518083038185875af1925050503d8060008114611049576040519150601f19603f3d011682016040523d82523d6000602084013e61104e565b606091505b505090508061105c57600080fd5b50565b61107a83838360405180602001604052806000815250611d47565b505050565b6060600061108c836114c0565b905060008167ffffffffffffffff8111156110aa576110a96142c3565b5b6040519080825280602002602001820160405280156110d85781602001602082028036833780820191505090505b50905060006001905060005b83811080156110f557506011548211155b1561117e5760006111058361140e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116a578284838151811061114f5761114e614294565b5b60200260200101818152505081806111669061418d565b9250505b82806111759061418d565b935050506110e4565b82945050505050919050565b6111926123b1565b73ffffffffffffffffffffffffffffffffffffffff166111b061172e565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613d41565b60405180910390fd5b8060108190555050565b6112186123b1565b73ffffffffffffffffffffffffffffffffffffffff1661123661172e565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613d41565b60405180910390fd5b80600f90805190602001906112a29291906130b4565b5050565b601560019054906101000a900460ff1681565b600e80546112c69061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546112f29061412a565b801561133f5780601f106113145761010080835404028352916020019161133f565b820191906000526020600020905b81548152906001019060200180831161132257829003601f168201915b505050505081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601560009054906101000a900460ff1681565b600d805461138d9061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546113b99061412a565b80156114065780601f106113db57610100808354040283529160200191611406565b820191906000526020600020905b8154815290600101906020018083116113e957829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90613ce1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890613cc1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115806123b1565b73ffffffffffffffffffffffffffffffffffffffff1661159e61172e565b73ffffffffffffffffffffffffffffffffffffffff16146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613d41565b60405180910390fd5b6115fe60006127c5565b565b6116086123b1565b73ffffffffffffffffffffffffffffffffffffffff1661162661172e565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390613d41565b60405180910390fd5b80600d90805190602001906116929291906130b4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016116d29190613adb565b60206040518083038186803b1580156116ea57600080fd5b505afa1580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117229190613575565b90508091505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606001805461176d9061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546117999061412a565b80156117e65780601f106117bb576101008083540402835291602001916117e6565b820191906000526020600020905b8154815290600101906020018083116117c957829003601f168201915b5050505050905090565b8060008111801561180357506012548111155b611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613c21565b60405180910390fd5b601154816118506007612472565b61185a9190613f5f565b111561189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613dc1565b60405180910390fd5b601560009054906101000a900460ff16156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613d61565b60405180910390fd5b600061191933600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b9050600061194933600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b9050600061197933600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b905060006119a933600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b905060006119d933600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b90506101f460145410611a4557866010546119f49190613fe6565b341015611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613e01565b60405180910390fd5b611a40338861288b565b611c14565b6000851180611a545750600084115b80611a5f5750600083115b80611a6a5750600082115b80611a755750600081115b15611bb85760011515601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1615151415611b355786601054611ae49190613fe6565b341015611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613e01565b60405180910390fd5b611b30338861288b565b611bb3565b611b3f338861288b565b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff02191690831515021790555060146000815480929190611bad9061418d565b91905055505b611c13565b86601054611bc69190613fe6565b341015611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613e01565b60405180910390fd5b611c12338861288b565b5b5b50505050505050565b611c2f611c286123b1565b83836128cb565b5050565b600f8054611c409061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6c9061412a565b8015611cb95780601f10611c8e57610100808354040283529160200191611cb9565b820191906000526020600020905b815481529060010190602001808311611c9c57829003601f168201915b505050505081565b611cc96123b1565b73ffffffffffffffffffffffffffffffffffffffff16611ce761172e565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d41565b60405180910390fd5b8060128190555050565b611d58611d526123b1565b83612480565b611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613de1565b60405180910390fd5b611da384848484612a38565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611dda82612345565b611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613d81565b60405180910390fd5b60001515601560019054906101000a900460ff1615151415611ec757600f8054611e429061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6e9061412a565b8015611ebb5780601f10611e9057610100808354040283529160200191611ebb565b820191906000526020600020905b815481529060010190602001808311611e9e57829003601f168201915b50505050509050611f23565b6000611ed1612a94565b90506000815111611ef15760405180602001604052806000815250611f1f565b80611efb84612b26565b600e604051602001611f0f93929190613a95565b6040516020818303038152906040525b9150505b919050565b60135481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f886123b1565b73ffffffffffffffffffffffffffffffffffffffff16611fa661172e565b73ffffffffffffffffffffffffffffffffffffffff1614611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff390613d41565b60405180910390fd5b80601560016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156120c057506012548111155b6120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690613c21565b60405180910390fd5b6011548161210d6007612472565b6121179190613f5f565b1115612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90613dc1565b60405180910390fd5b6121606123b1565b73ffffffffffffffffffffffffffffffffffffffff1661217e61172e565b73ffffffffffffffffffffffffffffffffffffffff16146121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613d41565b60405180910390fd5b6121de828461288b565b505050565b6121eb6123b1565b73ffffffffffffffffffffffffffffffffffffffff1661220961172e565b73ffffffffffffffffffffffffffffffffffffffff161461225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690613d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613bc1565b60405180910390fd5b6122d8816127c5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661242c8361140e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061248b82612345565b6124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190613c81565b60405180910390fd5b60006124d58361140e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254457508373ffffffffffffffffffffffffffffffffffffffff1661252c84610bf4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061255557506125548185612019565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661257e8261140e565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90613be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b90613c41565b60405180910390fd5b61264f838383612c87565b61265a6000826123b9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126aa9190614040565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127019190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c0838383612c8c565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156128c6576128a06007612c91565b6128b3836128ae6007612472565b612ca7565b80806128be9061418d565b91505061288e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190613c61565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a2b9190613b64565b60405180910390a3505050565b612a4384848461255e565b612a4f84848484612cc5565b612a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8590613ba1565b60405180910390fd5b50505050565b6060600d8054612aa39061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054612acf9061412a565b8015612b1c5780601f10612af157610100808354040283529160200191612b1c565b820191906000526020600020905b815481529060010190602001808311612aff57829003601f168201915b5050505050905090565b60606000821415612b6e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c82565b600082905060005b60008214612ba0578080612b899061418d565b915050600a82612b999190613fb5565b9150612b76565b60008167ffffffffffffffff811115612bbc57612bbb6142c3565b5b6040519080825280601f01601f191660200182016040528015612bee5781602001600182028036833780820191505090505b5090505b60008514612c7b57600182612c079190614040565b9150600a85612c1691906141d6565b6030612c229190613f5f565b60f81b818381518110612c3857612c37614294565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c749190613fb5565b9450612bf2565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612cc1828260405180602001604052806000815250612e5c565b5050565b6000612ce68473ffffffffffffffffffffffffffffffffffffffff16612eb7565b15612e4f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d0f6123b1565b8786866040518563ffffffff1660e01b8152600401612d319493929190613af6565b602060405180830381600087803b158015612d4b57600080fd5b505af1925050508015612d7c57506040513d601f19601f82011682018060405250810190612d7991906134d2565b60015b612dff573d8060008114612dac576040519150601f19603f3d011682016040523d82523d6000602084013e612db1565b606091505b50600081511415612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90613ba1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e54565b600190505b949350505050565b612e668383612eda565b612e736000848484612cc5565b612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990613ba1565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4190613d01565b60405180910390fd5b612f5381612345565b15612f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8a90613c01565b60405180910390fd5b612f9f60008383612c87565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fef9190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b060008383612c8c565b5050565b8280546130c09061412a565b90600052602060002090601f0160209004810192826130e25760008555613129565b82601f106130fb57805160ff1916838001178555613129565b82800160010185558215613129579182015b8281111561312857825182559160200191906001019061310d565b5b509050613136919061313a565b5090565b5b8082111561315357600081600090555060010161313b565b5090565b600061316a61316584613e61565b613e3c565b905082815260208101848484011115613186576131856142f7565b5b6131918482856140e8565b509392505050565b60006131ac6131a784613e92565b613e3c565b9050828152602081018484840111156131c8576131c76142f7565b5b6131d38482856140e8565b509392505050565b6000813590506131ea81614816565b92915050565b6000813590506131ff8161482d565b92915050565b60008135905061321481614844565b92915050565b60008151905061322981614844565b92915050565b600082601f830112613244576132436142f2565b5b8135613254848260208601613157565b91505092915050565b600082601f830112613272576132716142f2565b5b8135613282848260208601613199565b91505092915050565b60008135905061329a8161485b565b92915050565b6000815190506132af8161485b565b92915050565b6000602082840312156132cb576132ca614301565b5b60006132d9848285016131db565b91505092915050565b600080604083850312156132f9576132f8614301565b5b6000613307858286016131db565b9250506020613318858286016131db565b9150509250929050565b60008060006060848603121561333b5761333a614301565b5b6000613349868287016131db565b935050602061335a868287016131db565b925050604061336b8682870161328b565b9150509250925092565b6000806000806080858703121561338f5761338e614301565b5b600061339d878288016131db565b94505060206133ae878288016131db565b93505060406133bf8782880161328b565b925050606085013567ffffffffffffffff8111156133e0576133df6142fc565b5b6133ec8782880161322f565b91505092959194509250565b6000806040838503121561340f5761340e614301565b5b600061341d858286016131db565b925050602061342e858286016131f0565b9150509250929050565b6000806040838503121561344f5761344e614301565b5b600061345d858286016131db565b925050602061346e8582860161328b565b9150509250929050565b60006020828403121561348e5761348d614301565b5b600061349c848285016131f0565b91505092915050565b6000602082840312156134bb576134ba614301565b5b60006134c984828501613205565b91505092915050565b6000602082840312156134e8576134e7614301565b5b60006134f68482850161321a565b91505092915050565b60006020828403121561351557613514614301565b5b600082013567ffffffffffffffff811115613533576135326142fc565b5b61353f8482850161325d565b91505092915050565b60006020828403121561355e5761355d614301565b5b600061356c8482850161328b565b91505092915050565b60006020828403121561358b5761358a614301565b5b6000613599848285016132a0565b91505092915050565b600080604083850312156135b9576135b8614301565b5b60006135c78582860161328b565b92505060206135d8858286016131db565b9150509250929050565b60006135ee8383613a77565b60208301905092915050565b61360381614074565b82525050565b600061361482613ee8565b61361e8185613f16565b935061362983613ec3565b8060005b8381101561365a57815161364188826135e2565b975061364c83613f09565b92505060018101905061362d565b5085935050505092915050565b61367081614086565b82525050565b600061368182613ef3565b61368b8185613f27565b935061369b8185602086016140f7565b6136a481614306565b840191505092915050565b60006136ba82613efe565b6136c48185613f43565b93506136d48185602086016140f7565b6136dd81614306565b840191505092915050565b60006136f382613efe565b6136fd8185613f54565b935061370d8185602086016140f7565b80840191505092915050565b600081546137268161412a565b6137308186613f54565b9450600182166000811461374b576001811461375c5761378f565b60ff1983168652818601935061378f565b61376585613ed3565b60005b8381101561378757815481890152600182019150602081019050613768565b838801955050505b50505092915050565b60006137a5603283613f43565b91506137b082614317565b604082019050919050565b60006137c8602683613f43565b91506137d382614366565b604082019050919050565b60006137eb602583613f43565b91506137f6826143b5565b604082019050919050565b600061380e601c83613f43565b915061381982614404565b602082019050919050565b6000613831601483613f43565b915061383c8261442d565b602082019050919050565b6000613854602483613f43565b915061385f82614456565b604082019050919050565b6000613877601983613f43565b9150613882826144a5565b602082019050919050565b600061389a602c83613f43565b91506138a5826144ce565b604082019050919050565b60006138bd603883613f43565b91506138c88261451d565b604082019050919050565b60006138e0602a83613f43565b91506138eb8261456c565b604082019050919050565b6000613903602983613f43565b915061390e826145bb565b604082019050919050565b6000613926602083613f43565b91506139318261460a565b602082019050919050565b6000613949602c83613f43565b915061395482614633565b604082019050919050565b600061396c602083613f43565b915061397782614682565b602082019050919050565b600061398f601783613f43565b915061399a826146ab565b602082019050919050565b60006139b2602f83613f43565b91506139bd826146d4565b604082019050919050565b60006139d5602183613f43565b91506139e082614723565b604082019050919050565b60006139f8600083613f38565b9150613a0382614772565b600082019050919050565b6000613a1b601483613f43565b9150613a2682614775565b602082019050919050565b6000613a3e603183613f43565b9150613a498261479e565b604082019050919050565b6000613a61601383613f43565b9150613a6c826147ed565b602082019050919050565b613a80816140de565b82525050565b613a8f816140de565b82525050565b6000613aa182866136e8565b9150613aad82856136e8565b9150613ab98284613719565b9150819050949350505050565b6000613ad1826139eb565b9150819050919050565b6000602082019050613af060008301846135fa565b92915050565b6000608082019050613b0b60008301876135fa565b613b1860208301866135fa565b613b256040830185613a86565b8181036060830152613b378184613676565b905095945050505050565b60006020820190508181036000830152613b5c8184613609565b905092915050565b6000602082019050613b796000830184613667565b92915050565b60006020820190508181036000830152613b9981846136af565b905092915050565b60006020820190508181036000830152613bba81613798565b9050919050565b60006020820190508181036000830152613bda816137bb565b9050919050565b60006020820190508181036000830152613bfa816137de565b9050919050565b60006020820190508181036000830152613c1a81613801565b9050919050565b60006020820190508181036000830152613c3a81613824565b9050919050565b60006020820190508181036000830152613c5a81613847565b9050919050565b60006020820190508181036000830152613c7a8161386a565b9050919050565b60006020820190508181036000830152613c9a8161388d565b9050919050565b60006020820190508181036000830152613cba816138b0565b9050919050565b60006020820190508181036000830152613cda816138d3565b9050919050565b60006020820190508181036000830152613cfa816138f6565b9050919050565b60006020820190508181036000830152613d1a81613919565b9050919050565b60006020820190508181036000830152613d3a8161393c565b9050919050565b60006020820190508181036000830152613d5a8161395f565b9050919050565b60006020820190508181036000830152613d7a81613982565b9050919050565b60006020820190508181036000830152613d9a816139a5565b9050919050565b60006020820190508181036000830152613dba816139c8565b9050919050565b60006020820190508181036000830152613dda81613a0e565b9050919050565b60006020820190508181036000830152613dfa81613a31565b9050919050565b60006020820190508181036000830152613e1a81613a54565b9050919050565b6000602082019050613e366000830184613a86565b92915050565b6000613e46613e57565b9050613e52828261415c565b919050565b6000604051905090565b600067ffffffffffffffff821115613e7c57613e7b6142c3565b5b613e8582614306565b9050602081019050919050565b600067ffffffffffffffff821115613ead57613eac6142c3565b5b613eb682614306565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f6a826140de565b9150613f75836140de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613faa57613fa9614207565b5b828201905092915050565b6000613fc0826140de565b9150613fcb836140de565b925082613fdb57613fda614236565b5b828204905092915050565b6000613ff1826140de565b9150613ffc836140de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403557614034614207565b5b828202905092915050565b600061404b826140de565b9150614056836140de565b92508282101561406957614068614207565b5b828203905092915050565b600061407f826140be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141155780820151818401526020810190506140fa565b83811115614124576000848401525b50505050565b6000600282049050600182168061414257607f821691505b6020821081141561415657614155614265565b5b50919050565b61416582614306565b810181811067ffffffffffffffff82111715614184576141836142c3565b5b80604052505050565b6000614198826140de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141cb576141ca614207565b5b600182019050919050565b60006141e1826140de565b91506141ec836140de565b9250826141fc576141fb614236565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61481f81614074565b811461482a57600080fd5b50565b61483681614086565b811461484157600080fd5b50565b61484d81614092565b811461485857600080fd5b50565b614864816140de565b811461486f57600080fd5b5056fea2646970667358221220018f54c94476e7b7878e022db2860fe2b776202a2c995ede210d944b4514ca2964736f6c63430008070033697066733a2f2f516d51757a6551453756696465766969384b43664e386f573175487631476950686477637959665836396b43366d2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063b071401b116100c1578063d5abeb011161007a578063d5abeb0114610947578063d619667314610972578063e0a808531461099d578063e985e9c5146109c6578063efbd73f414610a03578063f2fde38b14610a2c57610272565b8063b071401b14610837578063b88d4fde14610860578063bca0cf1c14610889578063c87b56dd146108b4578063d33c9467146108f1578063d59b22bb1461091c57610272565b80638da5cb5b116101135780638da5cb5b1461074657806394354fd01461077157806395d89b411461079c578063a0712d68146107c7578063a22cb465146107e3578063a45ba8e71461080c57610272565b80636352211e1461064f57806370a082311461068c578063715018a6146106c95780637ec4a659146106e05780637efa655b1461070957610272565b806323b872dd116101e85780634fdd43cb116101ac5780634fdd43cb1461054f57806351830227146105785780635503a0e8146105a3578063565f487f146105ce5780635c975abb146105f957806362b99ad41461062457610272565b806323b872dd146104805780633ccfd60b146104a957806342842e0e146104c0578063438b6300146104e957806344a0d68a1461052657610272565b806313faede61161023a57806313faede614610382578063152853a0146103ad57806316ba10e0146103d857806316c38b3c1461040157806318160ddd1461042a578063183fc5691461045557610272565b806301ffc9a71461027757806305db2b22146102b457806306fdde03146102f1578063081812fc1461031c578063095ea7b314610359575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906134a5565b610a55565b6040516102ab9190613b64565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906132b5565b610b37565b6040516102e89190613b64565b60405180910390f35b3480156102fd57600080fd5b50610306610b62565b6040516103139190613b7f565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613548565b610bf4565b6040516103509190613adb565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613438565b610c79565b005b34801561038e57600080fd5b50610397610d91565b6040516103a49190613e21565b60405180910390f35b3480156103b957600080fd5b506103c2610d97565b6040516103cf9190613adb565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906134ff565b610dbd565b005b34801561040d57600080fd5b5061042860048036038101906104239190613478565b610e53565b005b34801561043657600080fd5b5061043f610eec565b60405161044c9190613e21565b60405180910390f35b34801561046157600080fd5b5061046a610efd565b6040516104779190613e21565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190613322565b610f03565b005b3480156104b557600080fd5b506104be610f63565b005b3480156104cc57600080fd5b506104e760048036038101906104e29190613322565b61105f565b005b3480156104f557600080fd5b50610510600480360381019061050b91906132b5565b61107f565b60405161051d9190613b42565b60405180910390f35b34801561053257600080fd5b5061054d60048036038101906105489190613548565b61118a565b005b34801561055b57600080fd5b50610576600480360381019061057191906134ff565b611210565b005b34801561058457600080fd5b5061058d6112a6565b60405161059a9190613b64565b60405180910390f35b3480156105af57600080fd5b506105b86112b9565b6040516105c59190613b7f565b60405180910390f35b3480156105da57600080fd5b506105e3611347565b6040516105f09190613adb565b60405180910390f35b34801561060557600080fd5b5061060e61136d565b60405161061b9190613b64565b60405180910390f35b34801561063057600080fd5b50610639611380565b6040516106469190613b7f565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190613548565b61140e565b6040516106839190613adb565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae91906132b5565b6114c0565b6040516106c09190613e21565b60405180910390f35b3480156106d557600080fd5b506106de611578565b005b3480156106ec57600080fd5b50610707600480360381019061070291906134ff565b611600565b005b34801561071557600080fd5b50610730600480360381019061072b91906132e2565b611696565b60405161073d9190613e21565b60405180910390f35b34801561075257600080fd5b5061075b61172e565b6040516107689190613adb565b60405180910390f35b34801561077d57600080fd5b50610786611758565b6040516107939190613e21565b60405180910390f35b3480156107a857600080fd5b506107b161175e565b6040516107be9190613b7f565b60405180910390f35b6107e160048036038101906107dc9190613548565b6117f0565b005b3480156107ef57600080fd5b5061080a600480360381019061080591906133f8565b611c1d565b005b34801561081857600080fd5b50610821611c33565b60405161082e9190613b7f565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613548565b611cc1565b005b34801561086c57600080fd5b5061088760048036038101906108829190613375565b611d47565b005b34801561089557600080fd5b5061089e611da9565b6040516108ab9190613adb565b60405180910390f35b3480156108c057600080fd5b506108db60048036038101906108d69190613548565b611dcf565b6040516108e89190613b7f565b60405180910390f35b3480156108fd57600080fd5b50610906611f28565b6040516109139190613e21565b60405180910390f35b34801561092857600080fd5b50610931611f2e565b60405161093e9190613adb565b60405180910390f35b34801561095357600080fd5b5061095c611f54565b6040516109699190613e21565b60405180910390f35b34801561097e57600080fd5b50610987611f5a565b6040516109949190613adb565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf9190613478565b611f80565b005b3480156109d257600080fd5b506109ed60048036038101906109e891906132e2565b612019565b6040516109fa9190613b64565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a2591906135a2565b6120ad565b005b348015610a3857600080fd5b50610a536004803603810190610a4e91906132b5565b6121e3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b305750610b2f826122db565b5b9050919050565b60166020528060005260406000206000915090508060000160009054906101000a900460ff16905081565b606060008054610b719061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9d9061412a565b8015610bea5780601f10610bbf57610100808354040283529160200191610bea565b820191906000526020600020905b815481529060010190602001808311610bcd57829003601f168201915b5050505050905090565b6000610bff82612345565b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613d21565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c848261140e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90613da1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d146123b1565b73ffffffffffffffffffffffffffffffffffffffff161480610d435750610d4281610d3d6123b1565b612019565b5b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613ca1565b60405180910390fd5b610d8c83836123b9565b505050565b60105481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dc56123b1565b73ffffffffffffffffffffffffffffffffffffffff16610de361172e565b73ffffffffffffffffffffffffffffffffffffffff1614610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613d41565b60405180910390fd5b80600e9080519060200190610e4f9291906130b4565b5050565b610e5b6123b1565b73ffffffffffffffffffffffffffffffffffffffff16610e7961172e565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690613d41565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b6000610ef86007612472565b905090565b60145481565b610f14610f0e6123b1565b82612480565b610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90613de1565b60405180910390fd5b610f5e83838361255e565b505050565b610f6b6123b1565b73ffffffffffffffffffffffffffffffffffffffff16610f8961172e565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd690613d41565b60405180910390fd5b6000610fe961172e565b73ffffffffffffffffffffffffffffffffffffffff164760405161100c90613ac6565b60006040518083038185875af1925050503d8060008114611049576040519150601f19603f3d011682016040523d82523d6000602084013e61104e565b606091505b505090508061105c57600080fd5b50565b61107a83838360405180602001604052806000815250611d47565b505050565b6060600061108c836114c0565b905060008167ffffffffffffffff8111156110aa576110a96142c3565b5b6040519080825280602002602001820160405280156110d85781602001602082028036833780820191505090505b50905060006001905060005b83811080156110f557506011548211155b1561117e5760006111058361140e565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116a578284838151811061114f5761114e614294565b5b60200260200101818152505081806111669061418d565b9250505b82806111759061418d565b935050506110e4565b82945050505050919050565b6111926123b1565b73ffffffffffffffffffffffffffffffffffffffff166111b061172e565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613d41565b60405180910390fd5b8060108190555050565b6112186123b1565b73ffffffffffffffffffffffffffffffffffffffff1661123661172e565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613d41565b60405180910390fd5b80600f90805190602001906112a29291906130b4565b5050565b601560019054906101000a900460ff1681565b600e80546112c69061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546112f29061412a565b801561133f5780601f106113145761010080835404028352916020019161133f565b820191906000526020600020905b81548152906001019060200180831161132257829003601f168201915b505050505081565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601560009054906101000a900460ff1681565b600d805461138d9061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546113b99061412a565b80156114065780601f106113db57610100808354040283529160200191611406565b820191906000526020600020905b8154815290600101906020018083116113e957829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90613ce1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152890613cc1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115806123b1565b73ffffffffffffffffffffffffffffffffffffffff1661159e61172e565b73ffffffffffffffffffffffffffffffffffffffff16146115f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115eb90613d41565b60405180910390fd5b6115fe60006127c5565b565b6116086123b1565b73ffffffffffffffffffffffffffffffffffffffff1661162661172e565b73ffffffffffffffffffffffffffffffffffffffff161461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390613d41565b60405180910390fd5b80600d90805190602001906116929291906130b4565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b81526004016116d29190613adb565b60206040518083038186803b1580156116ea57600080fd5b505afa1580156116fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117229190613575565b90508091505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606001805461176d9061412a565b80601f01602080910402602001604051908101604052809291908181526020018280546117999061412a565b80156117e65780601f106117bb576101008083540402835291602001916117e6565b820191906000526020600020905b8154815290600101906020018083116117c957829003601f168201915b5050505050905090565b8060008111801561180357506012548111155b611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990613c21565b60405180910390fd5b601154816118506007612472565b61185a9190613f5f565b111561189b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189290613dc1565b60405180910390fd5b601560009054906101000a900460ff16156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290613d61565b60405180910390fd5b600061191933600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b9050600061194933600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b9050600061197933600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b905060006119a933600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b905060006119d933600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611696565b90506101f460145410611a4557866010546119f49190613fe6565b341015611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613e01565b60405180910390fd5b611a40338861288b565b611c14565b6000851180611a545750600084115b80611a5f5750600083115b80611a6a5750600082115b80611a755750600081115b15611bb85760011515601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1615151415611b355786601054611ae49190613fe6565b341015611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d90613e01565b60405180910390fd5b611b30338861288b565b611bb3565b611b3f338861288b565b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff02191690831515021790555060146000815480929190611bad9061418d565b91905055505b611c13565b86601054611bc69190613fe6565b341015611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613e01565b60405180910390fd5b611c12338861288b565b5b5b50505050505050565b611c2f611c286123b1565b83836128cb565b5050565b600f8054611c409061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6c9061412a565b8015611cb95780601f10611c8e57610100808354040283529160200191611cb9565b820191906000526020600020905b815481529060010190602001808311611c9c57829003601f168201915b505050505081565b611cc96123b1565b73ffffffffffffffffffffffffffffffffffffffff16611ce761172e565b73ffffffffffffffffffffffffffffffffffffffff1614611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d41565b60405180910390fd5b8060128190555050565b611d58611d526123b1565b83612480565b611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613de1565b60405180910390fd5b611da384848484612a38565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611dda82612345565b611e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1090613d81565b60405180910390fd5b60001515601560019054906101000a900460ff1615151415611ec757600f8054611e429061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6e9061412a565b8015611ebb5780601f10611e9057610100808354040283529160200191611ebb565b820191906000526020600020905b815481529060010190602001808311611e9e57829003601f168201915b50505050509050611f23565b6000611ed1612a94565b90506000815111611ef15760405180602001604052806000815250611f1f565b80611efb84612b26565b600e604051602001611f0f93929190613a95565b6040516020818303038152906040525b9150505b919050565b60135481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f886123b1565b73ffffffffffffffffffffffffffffffffffffffff16611fa661172e565b73ffffffffffffffffffffffffffffffffffffffff1614611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff390613d41565b60405180910390fd5b80601560016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156120c057506012548111155b6120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690613c21565b60405180910390fd5b6011548161210d6007612472565b6121179190613f5f565b1115612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90613dc1565b60405180910390fd5b6121606123b1565b73ffffffffffffffffffffffffffffffffffffffff1661217e61172e565b73ffffffffffffffffffffffffffffffffffffffff16146121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613d41565b60405180910390fd5b6121de828461288b565b505050565b6121eb6123b1565b73ffffffffffffffffffffffffffffffffffffffff1661220961172e565b73ffffffffffffffffffffffffffffffffffffffff161461225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690613d41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613bc1565b60405180910390fd5b6122d8816127c5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661242c8361140e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061248b82612345565b6124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190613c81565b60405180910390fd5b60006124d58361140e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061254457508373ffffffffffffffffffffffffffffffffffffffff1661252c84610bf4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061255557506125548185612019565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661257e8261140e565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb90613be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b90613c41565b60405180910390fd5b61264f838383612c87565b61265a6000826123b9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126aa9190614040565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127019190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c0838383612c8c565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156128c6576128a06007612c91565b6128b3836128ae6007612472565b612ca7565b80806128be9061418d565b91505061288e565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190613c61565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a2b9190613b64565b60405180910390a3505050565b612a4384848461255e565b612a4f84848484612cc5565b612a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8590613ba1565b60405180910390fd5b50505050565b6060600d8054612aa39061412a565b80601f0160208091040260200160405190810160405280929190818152602001828054612acf9061412a565b8015612b1c5780601f10612af157610100808354040283529160200191612b1c565b820191906000526020600020905b815481529060010190602001808311612aff57829003601f168201915b5050505050905090565b60606000821415612b6e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c82565b600082905060005b60008214612ba0578080612b899061418d565b915050600a82612b999190613fb5565b9150612b76565b60008167ffffffffffffffff811115612bbc57612bbb6142c3565b5b6040519080825280601f01601f191660200182016040528015612bee5781602001600182028036833780820191505090505b5090505b60008514612c7b57600182612c079190614040565b9150600a85612c1691906141d6565b6030612c229190613f5f565b60f81b818381518110612c3857612c37614294565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c749190613fb5565b9450612bf2565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612cc1828260405180602001604052806000815250612e5c565b5050565b6000612ce68473ffffffffffffffffffffffffffffffffffffffff16612eb7565b15612e4f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d0f6123b1565b8786866040518563ffffffff1660e01b8152600401612d319493929190613af6565b602060405180830381600087803b158015612d4b57600080fd5b505af1925050508015612d7c57506040513d601f19601f82011682018060405250810190612d7991906134d2565b60015b612dff573d8060008114612dac576040519150601f19603f3d011682016040523d82523d6000602084013e612db1565b606091505b50600081511415612df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dee90613ba1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e54565b600190505b949350505050565b612e668383612eda565b612e736000848484612cc5565b612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990613ba1565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4190613d01565b60405180910390fd5b612f5381612345565b15612f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8a90613c01565b60405180910390fd5b612f9f60008383612c87565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fef9190613f5f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b060008383612c8c565b5050565b8280546130c09061412a565b90600052602060002090601f0160209004810192826130e25760008555613129565b82601f106130fb57805160ff1916838001178555613129565b82800160010185558215613129579182015b8281111561312857825182559160200191906001019061310d565b5b509050613136919061313a565b5090565b5b8082111561315357600081600090555060010161313b565b5090565b600061316a61316584613e61565b613e3c565b905082815260208101848484011115613186576131856142f7565b5b6131918482856140e8565b509392505050565b60006131ac6131a784613e92565b613e3c565b9050828152602081018484840111156131c8576131c76142f7565b5b6131d38482856140e8565b509392505050565b6000813590506131ea81614816565b92915050565b6000813590506131ff8161482d565b92915050565b60008135905061321481614844565b92915050565b60008151905061322981614844565b92915050565b600082601f830112613244576132436142f2565b5b8135613254848260208601613157565b91505092915050565b600082601f830112613272576132716142f2565b5b8135613282848260208601613199565b91505092915050565b60008135905061329a8161485b565b92915050565b6000815190506132af8161485b565b92915050565b6000602082840312156132cb576132ca614301565b5b60006132d9848285016131db565b91505092915050565b600080604083850312156132f9576132f8614301565b5b6000613307858286016131db565b9250506020613318858286016131db565b9150509250929050565b60008060006060848603121561333b5761333a614301565b5b6000613349868287016131db565b935050602061335a868287016131db565b925050604061336b8682870161328b565b9150509250925092565b6000806000806080858703121561338f5761338e614301565b5b600061339d878288016131db565b94505060206133ae878288016131db565b93505060406133bf8782880161328b565b925050606085013567ffffffffffffffff8111156133e0576133df6142fc565b5b6133ec8782880161322f565b91505092959194509250565b6000806040838503121561340f5761340e614301565b5b600061341d858286016131db565b925050602061342e858286016131f0565b9150509250929050565b6000806040838503121561344f5761344e614301565b5b600061345d858286016131db565b925050602061346e8582860161328b565b9150509250929050565b60006020828403121561348e5761348d614301565b5b600061349c848285016131f0565b91505092915050565b6000602082840312156134bb576134ba614301565b5b60006134c984828501613205565b91505092915050565b6000602082840312156134e8576134e7614301565b5b60006134f68482850161321a565b91505092915050565b60006020828403121561351557613514614301565b5b600082013567ffffffffffffffff811115613533576135326142fc565b5b61353f8482850161325d565b91505092915050565b60006020828403121561355e5761355d614301565b5b600061356c8482850161328b565b91505092915050565b60006020828403121561358b5761358a614301565b5b6000613599848285016132a0565b91505092915050565b600080604083850312156135b9576135b8614301565b5b60006135c78582860161328b565b92505060206135d8858286016131db565b9150509250929050565b60006135ee8383613a77565b60208301905092915050565b61360381614074565b82525050565b600061361482613ee8565b61361e8185613f16565b935061362983613ec3565b8060005b8381101561365a57815161364188826135e2565b975061364c83613f09565b92505060018101905061362d565b5085935050505092915050565b61367081614086565b82525050565b600061368182613ef3565b61368b8185613f27565b935061369b8185602086016140f7565b6136a481614306565b840191505092915050565b60006136ba82613efe565b6136c48185613f43565b93506136d48185602086016140f7565b6136dd81614306565b840191505092915050565b60006136f382613efe565b6136fd8185613f54565b935061370d8185602086016140f7565b80840191505092915050565b600081546137268161412a565b6137308186613f54565b9450600182166000811461374b576001811461375c5761378f565b60ff1983168652818601935061378f565b61376585613ed3565b60005b8381101561378757815481890152600182019150602081019050613768565b838801955050505b50505092915050565b60006137a5603283613f43565b91506137b082614317565b604082019050919050565b60006137c8602683613f43565b91506137d382614366565b604082019050919050565b60006137eb602583613f43565b91506137f6826143b5565b604082019050919050565b600061380e601c83613f43565b915061381982614404565b602082019050919050565b6000613831601483613f43565b915061383c8261442d565b602082019050919050565b6000613854602483613f43565b915061385f82614456565b604082019050919050565b6000613877601983613f43565b9150613882826144a5565b602082019050919050565b600061389a602c83613f43565b91506138a5826144ce565b604082019050919050565b60006138bd603883613f43565b91506138c88261451d565b604082019050919050565b60006138e0602a83613f43565b91506138eb8261456c565b604082019050919050565b6000613903602983613f43565b915061390e826145bb565b604082019050919050565b6000613926602083613f43565b91506139318261460a565b602082019050919050565b6000613949602c83613f43565b915061395482614633565b604082019050919050565b600061396c602083613f43565b915061397782614682565b602082019050919050565b600061398f601783613f43565b915061399a826146ab565b602082019050919050565b60006139b2602f83613f43565b91506139bd826146d4565b604082019050919050565b60006139d5602183613f43565b91506139e082614723565b604082019050919050565b60006139f8600083613f38565b9150613a0382614772565b600082019050919050565b6000613a1b601483613f43565b9150613a2682614775565b602082019050919050565b6000613a3e603183613f43565b9150613a498261479e565b604082019050919050565b6000613a61601383613f43565b9150613a6c826147ed565b602082019050919050565b613a80816140de565b82525050565b613a8f816140de565b82525050565b6000613aa182866136e8565b9150613aad82856136e8565b9150613ab98284613719565b9150819050949350505050565b6000613ad1826139eb565b9150819050919050565b6000602082019050613af060008301846135fa565b92915050565b6000608082019050613b0b60008301876135fa565b613b1860208301866135fa565b613b256040830185613a86565b8181036060830152613b378184613676565b905095945050505050565b60006020820190508181036000830152613b5c8184613609565b905092915050565b6000602082019050613b796000830184613667565b92915050565b60006020820190508181036000830152613b9981846136af565b905092915050565b60006020820190508181036000830152613bba81613798565b9050919050565b60006020820190508181036000830152613bda816137bb565b9050919050565b60006020820190508181036000830152613bfa816137de565b9050919050565b60006020820190508181036000830152613c1a81613801565b9050919050565b60006020820190508181036000830152613c3a81613824565b9050919050565b60006020820190508181036000830152613c5a81613847565b9050919050565b60006020820190508181036000830152613c7a8161386a565b9050919050565b60006020820190508181036000830152613c9a8161388d565b9050919050565b60006020820190508181036000830152613cba816138b0565b9050919050565b60006020820190508181036000830152613cda816138d3565b9050919050565b60006020820190508181036000830152613cfa816138f6565b9050919050565b60006020820190508181036000830152613d1a81613919565b9050919050565b60006020820190508181036000830152613d3a8161393c565b9050919050565b60006020820190508181036000830152613d5a8161395f565b9050919050565b60006020820190508181036000830152613d7a81613982565b9050919050565b60006020820190508181036000830152613d9a816139a5565b9050919050565b60006020820190508181036000830152613dba816139c8565b9050919050565b60006020820190508181036000830152613dda81613a0e565b9050919050565b60006020820190508181036000830152613dfa81613a31565b9050919050565b60006020820190508181036000830152613e1a81613a54565b9050919050565b6000602082019050613e366000830184613a86565b92915050565b6000613e46613e57565b9050613e52828261415c565b919050565b6000604051905090565b600067ffffffffffffffff821115613e7c57613e7b6142c3565b5b613e8582614306565b9050602081019050919050565b600067ffffffffffffffff821115613ead57613eac6142c3565b5b613eb682614306565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f6a826140de565b9150613f75836140de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613faa57613fa9614207565b5b828201905092915050565b6000613fc0826140de565b9150613fcb836140de565b925082613fdb57613fda614236565b5b828204905092915050565b6000613ff1826140de565b9150613ffc836140de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561403557614034614207565b5b828202905092915050565b600061404b826140de565b9150614056836140de565b92508282101561406957614068614207565b5b828203905092915050565b600061407f826140be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141155780820151818401526020810190506140fa565b83811115614124576000848401525b50505050565b6000600282049050600182168061414257607f821691505b6020821081141561415657614155614265565b5b50919050565b61416582614306565b810181811067ffffffffffffffff82111715614184576141836142c3565b5b80604052505050565b6000614198826140de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141cb576141ca614207565b5b600182019050919050565b60006141e1826140de565b91506141ec836140de565b9250826141fc576141fb614236565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61481f81614074565b811461482a57600080fd5b50565b61483681614086565b811461484157600080fd5b50565b61484d81614092565b811461485857600080fd5b50565b614864816140de565b811461486f57600080fd5b5056fea2646970667358221220018f54c94476e7b7878e022db2860fe2b776202a2c995ede210d944b4514ca2964736f6c63430008070033

Deployed Bytecode Sourcemap

40472:7531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26330:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41575:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27499:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29192:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28715:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41245:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40848:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47296:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47410:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42147:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41408:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30111:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47501:147;;;;;;;;;;;;;:::i;:::-;;30558:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45177:743;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46758:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47013:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41476:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41165:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41035:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41443:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41130:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27106:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26749:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6275:103;;;;;;;;;;;;;:::i;:::-;;47182:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44899:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5624:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41322:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27668:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42250:2440;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29572:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41205:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46846:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30814:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40661:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45928:727;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41367:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40941:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41284:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40754:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46663;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29830:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44698:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6533:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26330:355;26477:4;26534:25;26519:40;;;:11;:40;;;;:105;;;;26591:33;26576:48;;;:11;:48;;;;26519:105;:158;;;;26641:36;26665:11;26641:23;:36::i;:::-;26519:158;26499:178;;26330:355;;;:::o;41575:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27499:100::-;27553:13;27586:5;27579:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27499:100;:::o;29192:308::-;29313:7;29360:16;29368:7;29360;:16::i;:::-;29338:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29468:15;:24;29484:7;29468:24;;;;;;;;;;;;;;;;;;;;;29461:31;;29192:308;;;:::o;28715:411::-;28796:13;28812:23;28827:7;28812:14;:23::i;:::-;28796:39;;28860:5;28854:11;;:2;:11;;;;28846:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28954:5;28938:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28963:37;28980:5;28987:12;:10;:12::i;:::-;28963:16;:37::i;:::-;28938:62;28916:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29097:21;29106:2;29110:7;29097:8;:21::i;:::-;28785:341;28715:411;;:::o;41245:32::-;;;;:::o;40848:86::-;;;;;;;;;;;;;:::o;47296:106::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47384:10:::1;47372:9;:22;;;;;;;;;;;;:::i;:::-;;47296:106:::0;:::o;47410:83::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47479:6:::1;47470;;:15;;;;;;;;;;;;;;;;;;47410:83:::0;:::o;42147:95::-;42191:7;42218:16;:6;:14;:16::i;:::-;42211:23;;42147:95;:::o;41408:28::-;;;;:::o;30111:376::-;30320:41;30339:12;:10;:12::i;:::-;30353:7;30320:18;:41::i;:::-;30298:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30451:28;30461:4;30467:2;30471:7;30451:9;:28::i;:::-;30111:376;;;:::o;47501:147::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47550:7:::1;47571;:5;:7::i;:::-;47563:21;;47592;47563:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47549:69;;;47637:2;47629:11;;;::::0;::::1;;47538:110;47501:147::o:0;30558:185::-;30696:39;30713:4;30719:2;30723:7;30696:39;;;;;;;;;;;;:16;:39::i;:::-;30558:185;;;:::o;45177:743::-;45264:16;45298:23;45324:17;45334:6;45324:9;:17::i;:::-;45298:43;;45352:30;45399:15;45385:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45352:63;;45426:22;45451:1;45426:26;;45463:23;45503:377;45542:15;45524;:33;:64;;;;;45579:9;;45561:14;:27;;45524:64;45503:377;;;45615:25;45643:23;45651:14;45643:7;:23::i;:::-;45615:51;;45708:6;45687:27;;:17;:27;;;45683:153;;;45768:14;45735:13;45749:15;45735:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;45803:17;;;;;:::i;:::-;;;;45683:153;45852:16;;;;;:::i;:::-;;;;45600:280;45503:377;;;45899:13;45892:20;;;;;;45177:743;;;:::o;46758:80::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46825:5:::1;46818:4;:12;;;;46758:80:::0;:::o;47013:161::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47148:18:::1;47128:17;:38;;;;;;;;;;;;:::i;:::-;;47013:161:::0;:::o;41476:28::-;;;;;;;;;;;;;:::o;41165:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41035:86::-;;;;;;;;;;;;;:::o;41443:26::-;;;;;;;;;;;;;:::o;41130:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27106:326::-;27223:7;27248:13;27264:7;:16;27272:7;27264:16;;;;;;;;;;;;;;;;;;;;;27248:32;;27330:1;27313:19;;:5;:19;;;;27291:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27419:5;27412:12;;;27106:326;;;:::o;26749:295::-;26866:7;26930:1;26913:19;;:5;:19;;;;26891:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27020:9;:16;27030:5;27020:16;;;;;;;;;;;;;;;;27013:23;;26749:295;;;:::o;6275:103::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6340:30:::1;6367:1;6340:18;:30::i;:::-;6275:103::o:0;47182:106::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47270:10:::1;47258:9;:22;;;;;;;;;;;;:::i;:::-;;47182:106:::0;:::o;44899:270::-;45024:24;45061:23;45094:15;45087:33;;;45121:6;45087:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45061:67;;45146:15;45139:22;;;44899:270;;;;:::o;5624:87::-;5670:7;5697:6;;;;;;;;;;;5690:13;;5624:87;:::o;41322:38::-;;;;:::o;27668:104::-;27724:13;27757:7;27750:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27668:104;:::o;42250:2440::-;42342:11;41909:1;41895:11;:15;:52;;;;;41929:18;;41914:11;:33;;41895:52;41873:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;42062:9;;42047:11;42028:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42006:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;42380:6:::1;;;;;;;;;;;42379:7;42371:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;42492:23;42518:96;42561:10;42586:17;;;;;;;;;;;42518:28;:96::i;:::-;42492:122;;42625:27;42655:97;42698:10;42723:18;;;;;;;;;;;42655:28;:97::i;:::-;42625:127;;42763:26;42792:96;42835:10;42860:17;;;;;;;;;;;42792:28;:96::i;:::-;42763:125;;42899:27;42929:97;42972:10;42997:18;;;;;;;;;;;42929:28;:97::i;:::-;42899:127;;43037:26;43066:96;43109:10;43134:17;;;;;;;;;;;43066:28;:96::i;:::-;43037:125;;43250:3;43237:9;;:16;43233:1450;;43298:11;43291:4;;:18;;;;:::i;:::-;43278:9;:31;;43270:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43348:34;43358:10;43370:11;43348:9;:34::i;:::-;43233:1450;;;43455:1;43437:15;:19;:64;;;;43500:1;43478:19;:23;43437:64;:107;;;;43543:1;43522:18;:22;43437:107;:151;;;;43587:1;43565:19;:23;43437:151;:194;;;;43630:1;43609:18;:22;43437:194;43415:1257;;;43775:4;43734:45;;:13;:25;43748:10;43734:25;;;;;;;;;;;;;;;:37;;;;;;;;;;;;:45;;;43730:665;;;43966:11;43959:4;;:18;;;;:::i;:::-;43946:9;:31;;43912:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;44071:34;44081:10;44093:11;44071:9;:34::i;:::-;43730:665;;;44240:34;44250:10;44262:11;44240:9;:34::i;:::-;44337:4;44297:13;:25;44311:10;44297:25;;;;;;;;;;;;;;;:37;;;:44;;;;;;;;;;;;;;;;;;44364:9;;:11;;;;;;;;;:::i;:::-;;;;;;43730:665;43415:1257;;;44568:11;44561:4;;:18;;;;:::i;:::-;44548:9;:31;;44540:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44622:34;44632:10;44644:11;44622:9;:34::i;:::-;43415:1257;43233:1450;42360:2330;;;;;42250:2440:::0;;:::o;29572:187::-;29699:52;29718:12;:10;:12::i;:::-;29732:8;29742;29699:18;:52::i;:::-;29572:187;;:::o;41205:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46846:159::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46978:19:::1;46957:18;:40;;;;46846:159:::0;:::o;30814:365::-;31003:41;31022:12;:10;:12::i;:::-;31036:7;31003:18;:41::i;:::-;30981:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;31132:39;31146:4;31152:2;31156:7;31165:5;31132:13;:39::i;:::-;30814:365;;;;:::o;40661:86::-;;;;;;;;;;;;;:::o;45928:727::-;46047:13;46100:17;46108:8;46100:7;:17::i;:::-;46078:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;46221:5;46209:17;;:8;;;;;;;;;;;:17;;;46205:74;;;46250:17;46243:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46205:74;46291:28;46322:10;:8;:10::i;:::-;46291:41;;46394:1;46369:14;46363:28;:32;:284;;;;;;;;;;;;;;;;;46487:14;46528:19;:8;:17;:19::i;:::-;46574:9;46444:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46363:284;46343:304;;;45928:727;;;;:::o;41367:34::-;;;;:::o;40941:87::-;;;;;;;;;;;;;:::o;41284:31::-;;;;:::o;40754:87::-;;;;;;;;;;;;;:::o;46663:::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46736:6:::1;46725:8;;:17;;;;;;;;;;;;;;;;;;46663:87:::0;:::o;29830:214::-;29972:4;30001:18;:25;30020:5;30001:25;;;;;;;;;;;;;;;:35;30027:8;30001:35;;;;;;;;;;;;;;;;;;;;;;;;;29994:42;;29830:214;;;;:::o;44698:193::-;44802:11;41909:1;41895:11;:15;:52;;;;;41929:18;;41914:11;:33;;41895:52;41873:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;42062:9;;42047:11;42028:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;42006:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;5855:12:::1;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44850:33:::2;44860:9;44871:11;44850:9;:33::i;:::-;44698:193:::0;;;:::o;6533:238::-;5855:12;:10;:12::i;:::-;5844:23;;:7;:5;:7::i;:::-;:23;;;5836:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6656:1:::1;6636:22;;:8;:22;;;;6614:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6735:28;6754:8;6735:18;:28::i;:::-;6533:238:::0;:::o;18902:207::-;19032:4;19076:25;19061:40;;;:11;:40;;;;19054:47;;18902:207;;;:::o;32726:127::-;32791:4;32843:1;32815:30;;:7;:16;32823:7;32815:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32808:37;;32726:127;;;:::o;4327:98::-;4380:7;4407:10;4400:17;;4327:98;:::o;37013:174::-;37115:2;37088:15;:24;37104:7;37088:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37171:7;37167:2;37133:46;;37142:23;37157:7;37142:14;:23::i;:::-;37133:46;;;;;;;;;;;;37013:174;;:::o;903:114::-;968:7;995;:14;;;988:21;;903:114;;;:::o;33020:452::-;33149:4;33193:16;33201:7;33193;:16::i;:::-;33171:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33292:13;33308:23;33323:7;33308:14;:23::i;:::-;33292:39;;33361:5;33350:16;;:7;:16;;;:64;;;;33407:7;33383:31;;:20;33395:7;33383:11;:20::i;:::-;:31;;;33350:64;:113;;;;33431:32;33448:5;33455:7;33431:16;:32::i;:::-;33350:113;33342:122;;;33020:452;;;;:::o;36233:662::-;36406:4;36379:31;;:23;36394:7;36379:14;:23::i;:::-;:31;;;36357:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;36508:1;36494:16;;:2;:16;;;;36486:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36564:39;36585:4;36591:2;36595:7;36564:20;:39::i;:::-;36668:29;36685:1;36689:7;36668:8;:29::i;:::-;36729:1;36710:9;:15;36720:4;36710:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36758:1;36741:9;:13;36751:2;36741:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36789:2;36770:7;:16;36778:7;36770:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36828:7;36824:2;36809:27;;36818:4;36809:27;;;;;;;;;;;;36849:38;36869:4;36875:2;36879:7;36849:19;:38::i;:::-;36233:662;;;:::o;6931:191::-;7005:16;7024:6;;;;;;;;;;;7005:25;;7050:8;7041:6;;:17;;;;;;;;;;;;;;;;;;7105:8;7074:40;;7095:8;7074:40;;;;;;;;;;;;6994:128;6931:191;:::o;47656:226::-;47740:9;47735:140;47759:11;47755:1;:15;47735:140;;;47792:18;:6;:16;:18::i;:::-;47825:38;47835:9;47846:16;:6;:14;:16::i;:::-;47825:9;:38::i;:::-;47772:3;;;;;:::i;:::-;;;;47735:140;;;;47656:226;;:::o;37329:315::-;37484:8;37475:17;;:5;:17;;;;37467:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37571:8;37533:18;:25;37552:5;37533:25;;;;;;;;;;;;;;;:35;37559:8;37533:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37617:8;37595:41;;37610:5;37595:41;;;37627:8;37595:41;;;;;;:::i;:::-;;;;;;;;37329:315;;;:::o;32061:352::-;32218:28;32228:4;32234:2;32238:7;32218:9;:28::i;:::-;32279:48;32302:4;32308:2;32312:7;32321:5;32279:22;:48::i;:::-;32257:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;32061:352;;;;:::o;47890:110::-;47950:13;47983:9;47976:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47890:110;:::o;1859:723::-;1915:13;2145:1;2136:5;:10;2132:53;;;2163:10;;;;;;;;;;;;;;;;;;;;;2132:53;2195:12;2210:5;2195:20;;2226:14;2251:78;2266:1;2258:4;:9;2251:78;;2284:8;;;;;:::i;:::-;;;;2315:2;2307:10;;;;;:::i;:::-;;;2251:78;;;2339:19;2371:6;2361:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2339:39;;2389:154;2405:1;2396:5;:10;2389:154;;2433:1;2423:11;;;;;:::i;:::-;;;2500:2;2492:5;:10;;;;:::i;:::-;2479:2;:24;;;;:::i;:::-;2466:39;;2449:6;2456;2449:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2529:2;2520:11;;;;;:::i;:::-;;;2389:154;;;2567:6;2553:21;;;;;1859:723;;;;:::o;39761:126::-;;;;:::o;40272:125::-;;;;:::o;1025:127::-;1132:1;1114:7;:14;;;:19;;;;;;;;;;;1025:127;:::o;33814:110::-;33890:26;33900:2;33904:7;33890:26;;;;;;;;;;;;:9;:26::i;:::-;33814:110;;:::o;38209:980::-;38364:4;38385:15;:2;:13;;;:15::i;:::-;38381:801;;;38454:2;38438:36;;;38497:12;:10;:12::i;:::-;38532:4;38559:7;38589:5;38438:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38417:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38813:1;38796:6;:13;:18;38792:320;;;38839:108;;;;;;;;;;:::i;:::-;;;;;;;;38792:320;39062:6;39056:13;39047:6;39043:2;39039:15;39032:38;38417:710;38687:41;;;38677:51;;;:6;:51;;;;38670:58;;;;;38381:801;39166:4;39159:11;;38209:980;;;;;;;:::o;34151:321::-;34281:18;34287:2;34291:7;34281:5;:18::i;:::-;34332:54;34363:1;34367:2;34371:7;34380:5;34332:22;:54::i;:::-;34310:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34151:321;;;:::o;8360:326::-;8420:4;8677:1;8655:7;:19;;;:23;8648:30;;8360:326;;;:::o;34808:439::-;34902:1;34888:16;;:2;:16;;;;34880:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34961:16;34969:7;34961;:16::i;:::-;34960:17;34952:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35023:45;35052:1;35056:2;35060:7;35023:20;:45::i;:::-;35098:1;35081:9;:13;35091:2;35081:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35129:2;35110:7;:16;35118:7;35110:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35174:7;35170:2;35149:33;;35166:1;35149:33;;;;;;;;;;;;35195:44;35223:1;35227:2;35231:7;35195:19;:44::i;:::-;34808:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:143::-;2334:5;2365:6;2359:13;2350:22;;2381:33;2408:5;2381:33;:::i;:::-;2277:143;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:474::-;2829:6;2837;2886:2;2874:9;2865:7;2861:23;2857:32;2854:119;;;2892:79;;:::i;:::-;2854:119;3012:1;3037:53;3082:7;3073:6;3062:9;3058:22;3037:53;:::i;:::-;3027:63;;2983:117;3139:2;3165:53;3210:7;3201:6;3190:9;3186:22;3165:53;:::i;:::-;3155:63;;3110:118;2761:474;;;;;:::o;3241:619::-;3318:6;3326;3334;3383:2;3371:9;3362:7;3358:23;3354:32;3351:119;;;3389:79;;:::i;:::-;3351:119;3509:1;3534:53;3579:7;3570:6;3559:9;3555:22;3534:53;:::i;:::-;3524:63;;3480:117;3636:2;3662:53;3707:7;3698:6;3687:9;3683:22;3662:53;:::i;:::-;3652:63;;3607:118;3764:2;3790:53;3835:7;3826:6;3815:9;3811:22;3790:53;:::i;:::-;3780:63;;3735:118;3241:619;;;;;:::o;3866:943::-;3961:6;3969;3977;3985;4034:3;4022:9;4013:7;4009:23;4005:33;4002:120;;;4041:79;;:::i;:::-;4002:120;4161:1;4186:53;4231:7;4222:6;4211:9;4207:22;4186:53;:::i;:::-;4176:63;;4132:117;4288:2;4314:53;4359:7;4350:6;4339:9;4335:22;4314:53;:::i;:::-;4304:63;;4259:118;4416:2;4442:53;4487:7;4478:6;4467:9;4463:22;4442:53;:::i;:::-;4432:63;;4387:118;4572:2;4561:9;4557:18;4544:32;4603:18;4595:6;4592:30;4589:117;;;4625:79;;:::i;:::-;4589:117;4730:62;4784:7;4775:6;4764:9;4760:22;4730:62;:::i;:::-;4720:72;;4515:287;3866:943;;;;;;;:::o;4815:468::-;4880:6;4888;4937:2;4925:9;4916:7;4912:23;4908:32;4905:119;;;4943:79;;:::i;:::-;4905:119;5063:1;5088:53;5133:7;5124:6;5113:9;5109:22;5088:53;:::i;:::-;5078:63;;5034:117;5190:2;5216:50;5258:7;5249:6;5238:9;5234:22;5216:50;:::i;:::-;5206:60;;5161:115;4815:468;;;;;:::o;5289:474::-;5357:6;5365;5414:2;5402:9;5393:7;5389:23;5385:32;5382:119;;;5420:79;;:::i;:::-;5382:119;5540:1;5565:53;5610:7;5601:6;5590:9;5586:22;5565:53;:::i;:::-;5555:63;;5511:117;5667:2;5693:53;5738:7;5729:6;5718:9;5714:22;5693:53;:::i;:::-;5683:63;;5638:118;5289:474;;;;;:::o;5769:323::-;5825:6;5874:2;5862:9;5853:7;5849:23;5845:32;5842:119;;;5880:79;;:::i;:::-;5842:119;6000:1;6025:50;6067:7;6058:6;6047:9;6043:22;6025:50;:::i;:::-;6015:60;;5971:114;5769:323;;;;:::o;6098:327::-;6156:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:119;;;6211:79;;:::i;:::-;6173:119;6331:1;6356:52;6400:7;6391:6;6380:9;6376:22;6356:52;:::i;:::-;6346:62;;6302:116;6098:327;;;;:::o;6431:349::-;6500:6;6549:2;6537:9;6528:7;6524:23;6520:32;6517:119;;;6555:79;;:::i;:::-;6517:119;6675:1;6700:63;6755:7;6746:6;6735:9;6731:22;6700:63;:::i;:::-;6690:73;;6646:127;6431:349;;;;:::o;6786:509::-;6855:6;6904:2;6892:9;6883:7;6879:23;6875:32;6872:119;;;6910:79;;:::i;:::-;6872:119;7058:1;7047:9;7043:17;7030:31;7088:18;7080:6;7077:30;7074:117;;;7110:79;;:::i;:::-;7074:117;7215:63;7270:7;7261:6;7250:9;7246:22;7215:63;:::i;:::-;7205:73;;7001:287;6786:509;;;;:::o;7301:329::-;7360:6;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7535:1;7560:53;7605:7;7596:6;7585:9;7581:22;7560:53;:::i;:::-;7550:63;;7506:117;7301:329;;;;:::o;7636:351::-;7706:6;7755:2;7743:9;7734:7;7730:23;7726:32;7723:119;;;7761:79;;:::i;:::-;7723:119;7881:1;7906:64;7962:7;7953:6;7942:9;7938:22;7906:64;:::i;:::-;7896:74;;7852:128;7636:351;;;;:::o;7993:474::-;8061:6;8069;8118:2;8106:9;8097:7;8093:23;8089:32;8086:119;;;8124:79;;:::i;:::-;8086:119;8244:1;8269:53;8314:7;8305:6;8294:9;8290:22;8269:53;:::i;:::-;8259:63;;8215:117;8371:2;8397:53;8442:7;8433:6;8422:9;8418:22;8397:53;:::i;:::-;8387:63;;8342:118;7993:474;;;;;:::o;8473:179::-;8542:10;8563:46;8605:3;8597:6;8563:46;:::i;:::-;8641:4;8636:3;8632:14;8618:28;;8473:179;;;;:::o;8658:118::-;8745:24;8763:5;8745:24;:::i;:::-;8740:3;8733:37;8658:118;;:::o;8812:732::-;8931:3;8960:54;9008:5;8960:54;:::i;:::-;9030:86;9109:6;9104:3;9030:86;:::i;:::-;9023:93;;9140:56;9190:5;9140:56;:::i;:::-;9219:7;9250:1;9235:284;9260:6;9257:1;9254:13;9235:284;;;9336:6;9330:13;9363:63;9422:3;9407:13;9363:63;:::i;:::-;9356:70;;9449:60;9502:6;9449:60;:::i;:::-;9439:70;;9295:224;9282:1;9279;9275:9;9270:14;;9235:284;;;9239:14;9535:3;9528:10;;8936:608;;;8812:732;;;;:::o;9550:109::-;9631:21;9646:5;9631:21;:::i;:::-;9626:3;9619:34;9550:109;;:::o;9665:360::-;9751:3;9779:38;9811:5;9779:38;:::i;:::-;9833:70;9896:6;9891:3;9833:70;:::i;:::-;9826:77;;9912:52;9957:6;9952:3;9945:4;9938:5;9934:16;9912:52;:::i;:::-;9989:29;10011:6;9989:29;:::i;:::-;9984:3;9980:39;9973:46;;9755:270;9665:360;;;;:::o;10031:364::-;10119:3;10147:39;10180:5;10147:39;:::i;:::-;10202:71;10266:6;10261:3;10202:71;:::i;:::-;10195:78;;10282:52;10327:6;10322:3;10315:4;10308:5;10304:16;10282:52;:::i;:::-;10359:29;10381:6;10359:29;:::i;:::-;10354:3;10350:39;10343:46;;10123:272;10031:364;;;;:::o;10401:377::-;10507:3;10535:39;10568:5;10535:39;:::i;:::-;10590:89;10672:6;10667:3;10590:89;:::i;:::-;10583:96;;10688:52;10733:6;10728:3;10721:4;10714:5;10710:16;10688:52;:::i;:::-;10765:6;10760:3;10756:16;10749:23;;10511:267;10401:377;;;;:::o;10808:845::-;10911:3;10948:5;10942:12;10977:36;11003:9;10977:36;:::i;:::-;11029:89;11111:6;11106:3;11029:89;:::i;:::-;11022:96;;11149:1;11138:9;11134:17;11165:1;11160:137;;;;11311:1;11306:341;;;;11127:520;;11160:137;11244:4;11240:9;11229;11225:25;11220:3;11213:38;11280:6;11275:3;11271:16;11264:23;;11160:137;;11306:341;11373:38;11405:5;11373:38;:::i;:::-;11433:1;11447:154;11461:6;11458:1;11455:13;11447:154;;;11535:7;11529:14;11525:1;11520:3;11516:11;11509:35;11585:1;11576:7;11572:15;11561:26;;11483:4;11480:1;11476:12;11471:17;;11447:154;;;11630:6;11625:3;11621:16;11614:23;;11313:334;;11127:520;;10915:738;;10808:845;;;;:::o;11659:366::-;11801:3;11822:67;11886:2;11881:3;11822:67;:::i;:::-;11815:74;;11898:93;11987:3;11898:93;:::i;:::-;12016:2;12011:3;12007:12;12000:19;;11659:366;;;:::o;12031:::-;12173:3;12194:67;12258:2;12253:3;12194:67;:::i;:::-;12187:74;;12270:93;12359:3;12270:93;:::i;:::-;12388:2;12383:3;12379:12;12372:19;;12031:366;;;:::o;12403:::-;12545:3;12566:67;12630:2;12625:3;12566:67;:::i;:::-;12559:74;;12642:93;12731:3;12642:93;:::i;:::-;12760:2;12755:3;12751:12;12744:19;;12403:366;;;:::o;12775:::-;12917:3;12938:67;13002:2;12997:3;12938:67;:::i;:::-;12931:74;;13014:93;13103:3;13014:93;:::i;:::-;13132:2;13127:3;13123:12;13116:19;;12775:366;;;:::o;13147:::-;13289:3;13310:67;13374:2;13369:3;13310:67;:::i;:::-;13303:74;;13386:93;13475:3;13386:93;:::i;:::-;13504:2;13499:3;13495:12;13488:19;;13147:366;;;:::o;13519:::-;13661:3;13682:67;13746:2;13741:3;13682:67;:::i;:::-;13675:74;;13758:93;13847:3;13758:93;:::i;:::-;13876:2;13871:3;13867:12;13860:19;;13519:366;;;:::o;13891:::-;14033:3;14054:67;14118:2;14113:3;14054:67;:::i;:::-;14047:74;;14130:93;14219:3;14130:93;:::i;:::-;14248:2;14243:3;14239:12;14232:19;;13891:366;;;:::o;14263:::-;14405:3;14426:67;14490:2;14485:3;14426:67;:::i;:::-;14419:74;;14502:93;14591:3;14502:93;:::i;:::-;14620:2;14615:3;14611:12;14604:19;;14263:366;;;:::o;14635:::-;14777:3;14798:67;14862:2;14857:3;14798:67;:::i;:::-;14791:74;;14874:93;14963:3;14874:93;:::i;:::-;14992:2;14987:3;14983:12;14976:19;;14635:366;;;:::o;15007:::-;15149:3;15170:67;15234:2;15229:3;15170:67;:::i;:::-;15163:74;;15246:93;15335:3;15246:93;:::i;:::-;15364:2;15359:3;15355:12;15348:19;;15007:366;;;:::o;15379:::-;15521:3;15542:67;15606:2;15601:3;15542:67;:::i;:::-;15535:74;;15618:93;15707:3;15618:93;:::i;:::-;15736:2;15731:3;15727:12;15720:19;;15379:366;;;:::o;15751:::-;15893:3;15914:67;15978:2;15973:3;15914:67;:::i;:::-;15907:74;;15990:93;16079:3;15990:93;:::i;:::-;16108:2;16103:3;16099:12;16092:19;;15751:366;;;:::o;16123:::-;16265:3;16286:67;16350:2;16345:3;16286:67;:::i;:::-;16279:74;;16362:93;16451:3;16362:93;:::i;:::-;16480:2;16475:3;16471:12;16464:19;;16123:366;;;:::o;16495:::-;16637:3;16658:67;16722:2;16717:3;16658:67;:::i;:::-;16651:74;;16734:93;16823:3;16734:93;:::i;:::-;16852:2;16847:3;16843:12;16836:19;;16495:366;;;:::o;16867:::-;17009:3;17030:67;17094:2;17089:3;17030:67;:::i;:::-;17023:74;;17106:93;17195:3;17106:93;:::i;:::-;17224:2;17219:3;17215:12;17208:19;;16867:366;;;:::o;17239:::-;17381:3;17402:67;17466:2;17461:3;17402:67;:::i;:::-;17395:74;;17478:93;17567:3;17478:93;:::i;:::-;17596:2;17591:3;17587:12;17580:19;;17239:366;;;:::o;17611:::-;17753:3;17774:67;17838:2;17833:3;17774:67;:::i;:::-;17767:74;;17850:93;17939:3;17850:93;:::i;:::-;17968:2;17963:3;17959:12;17952:19;;17611:366;;;:::o;17983:398::-;18142:3;18163:83;18244:1;18239:3;18163:83;:::i;:::-;18156:90;;18255:93;18344:3;18255:93;:::i;:::-;18373:1;18368:3;18364:11;18357:18;;17983:398;;;:::o;18387:366::-;18529:3;18550:67;18614:2;18609:3;18550:67;:::i;:::-;18543:74;;18626:93;18715:3;18626:93;:::i;:::-;18744:2;18739:3;18735:12;18728:19;;18387:366;;;:::o;18759:::-;18901:3;18922:67;18986:2;18981:3;18922:67;:::i;:::-;18915:74;;18998:93;19087:3;18998:93;:::i;:::-;19116:2;19111:3;19107:12;19100:19;;18759:366;;;:::o;19131:::-;19273:3;19294:67;19358:2;19353:3;19294:67;:::i;:::-;19287:74;;19370:93;19459:3;19370:93;:::i;:::-;19488:2;19483:3;19479:12;19472:19;;19131:366;;;:::o;19503:108::-;19580:24;19598:5;19580:24;:::i;:::-;19575:3;19568:37;19503:108;;:::o;19617:118::-;19704:24;19722:5;19704:24;:::i;:::-;19699:3;19692:37;19617:118;;:::o;19741:589::-;19966:3;19988:95;20079:3;20070:6;19988:95;:::i;:::-;19981:102;;20100:95;20191:3;20182:6;20100:95;:::i;:::-;20093:102;;20212:92;20300:3;20291:6;20212:92;:::i;:::-;20205:99;;20321:3;20314:10;;19741:589;;;;;;:::o;20336:379::-;20520:3;20542:147;20685:3;20542:147;:::i;:::-;20535:154;;20706:3;20699:10;;20336:379;;;:::o;20721:222::-;20814:4;20852:2;20841:9;20837:18;20829:26;;20865:71;20933:1;20922:9;20918:17;20909:6;20865:71;:::i;:::-;20721:222;;;;:::o;20949:640::-;21144:4;21182:3;21171:9;21167:19;21159:27;;21196:71;21264:1;21253:9;21249:17;21240:6;21196:71;:::i;:::-;21277:72;21345:2;21334:9;21330:18;21321:6;21277:72;:::i;:::-;21359;21427:2;21416:9;21412:18;21403:6;21359:72;:::i;:::-;21478:9;21472:4;21468:20;21463:2;21452:9;21448:18;21441:48;21506:76;21577:4;21568:6;21506:76;:::i;:::-;21498:84;;20949:640;;;;;;;:::o;21595:373::-;21738:4;21776:2;21765:9;21761:18;21753:26;;21825:9;21819:4;21815:20;21811:1;21800:9;21796:17;21789:47;21853:108;21956:4;21947:6;21853:108;:::i;:::-;21845:116;;21595:373;;;;:::o;21974:210::-;22061:4;22099:2;22088:9;22084:18;22076:26;;22112:65;22174:1;22163:9;22159:17;22150:6;22112:65;:::i;:::-;21974:210;;;;:::o;22190:313::-;22303:4;22341:2;22330:9;22326:18;22318:26;;22390:9;22384:4;22380:20;22376:1;22365:9;22361:17;22354:47;22418:78;22491:4;22482:6;22418:78;:::i;:::-;22410:86;;22190:313;;;;:::o;22509:419::-;22675:4;22713:2;22702:9;22698:18;22690:26;;22762:9;22756:4;22752:20;22748:1;22737:9;22733:17;22726:47;22790:131;22916:4;22790:131;:::i;:::-;22782:139;;22509:419;;;:::o;22934:::-;23100:4;23138:2;23127:9;23123:18;23115:26;;23187:9;23181:4;23177:20;23173:1;23162:9;23158:17;23151:47;23215:131;23341:4;23215:131;:::i;:::-;23207:139;;22934:419;;;:::o;23359:::-;23525:4;23563:2;23552:9;23548:18;23540:26;;23612:9;23606:4;23602:20;23598:1;23587:9;23583:17;23576:47;23640:131;23766:4;23640:131;:::i;:::-;23632:139;;23359:419;;;:::o;23784:::-;23950:4;23988:2;23977:9;23973:18;23965:26;;24037:9;24031:4;24027:20;24023:1;24012:9;24008:17;24001:47;24065:131;24191:4;24065:131;:::i;:::-;24057:139;;23784:419;;;:::o;24209:::-;24375:4;24413:2;24402:9;24398:18;24390:26;;24462:9;24456:4;24452:20;24448:1;24437:9;24433:17;24426:47;24490:131;24616:4;24490:131;:::i;:::-;24482:139;;24209:419;;;:::o;24634:::-;24800:4;24838:2;24827:9;24823:18;24815:26;;24887:9;24881:4;24877:20;24873:1;24862:9;24858:17;24851:47;24915:131;25041:4;24915:131;:::i;:::-;24907:139;;24634:419;;;:::o;25059:::-;25225:4;25263:2;25252:9;25248:18;25240:26;;25312:9;25306:4;25302:20;25298:1;25287:9;25283:17;25276:47;25340:131;25466:4;25340:131;:::i;:::-;25332:139;;25059:419;;;:::o;25484:::-;25650:4;25688:2;25677:9;25673:18;25665:26;;25737:9;25731:4;25727:20;25723:1;25712:9;25708:17;25701:47;25765:131;25891:4;25765:131;:::i;:::-;25757:139;;25484:419;;;:::o;25909:::-;26075:4;26113:2;26102:9;26098:18;26090:26;;26162:9;26156:4;26152:20;26148:1;26137:9;26133:17;26126:47;26190:131;26316:4;26190:131;:::i;:::-;26182:139;;25909:419;;;:::o;26334:::-;26500:4;26538:2;26527:9;26523:18;26515:26;;26587:9;26581:4;26577:20;26573:1;26562:9;26558:17;26551:47;26615:131;26741:4;26615:131;:::i;:::-;26607:139;;26334:419;;;:::o;26759:::-;26925:4;26963:2;26952:9;26948:18;26940:26;;27012:9;27006:4;27002:20;26998:1;26987:9;26983:17;26976:47;27040:131;27166:4;27040:131;:::i;:::-;27032:139;;26759:419;;;:::o;27184:::-;27350:4;27388:2;27377:9;27373:18;27365:26;;27437:9;27431:4;27427:20;27423:1;27412:9;27408:17;27401:47;27465:131;27591:4;27465:131;:::i;:::-;27457:139;;27184:419;;;:::o;27609:::-;27775:4;27813:2;27802:9;27798:18;27790:26;;27862:9;27856:4;27852:20;27848:1;27837:9;27833:17;27826:47;27890:131;28016:4;27890:131;:::i;:::-;27882:139;;27609:419;;;:::o;28034:::-;28200:4;28238:2;28227:9;28223:18;28215:26;;28287:9;28281:4;28277:20;28273:1;28262:9;28258:17;28251:47;28315:131;28441:4;28315:131;:::i;:::-;28307:139;;28034:419;;;:::o;28459:::-;28625:4;28663:2;28652:9;28648:18;28640:26;;28712:9;28706:4;28702:20;28698:1;28687:9;28683:17;28676:47;28740:131;28866:4;28740:131;:::i;:::-;28732:139;;28459:419;;;:::o;28884:::-;29050:4;29088:2;29077:9;29073:18;29065:26;;29137:9;29131:4;29127:20;29123:1;29112:9;29108:17;29101:47;29165:131;29291:4;29165:131;:::i;:::-;29157:139;;28884:419;;;:::o;29309:::-;29475:4;29513:2;29502:9;29498:18;29490:26;;29562:9;29556:4;29552:20;29548:1;29537:9;29533:17;29526:47;29590:131;29716:4;29590:131;:::i;:::-;29582:139;;29309:419;;;:::o;29734:::-;29900:4;29938:2;29927:9;29923:18;29915:26;;29987:9;29981:4;29977:20;29973:1;29962:9;29958:17;29951:47;30015:131;30141:4;30015:131;:::i;:::-;30007:139;;29734:419;;;:::o;30159:::-;30325:4;30363:2;30352:9;30348:18;30340:26;;30412:9;30406:4;30402:20;30398:1;30387:9;30383:17;30376:47;30440:131;30566:4;30440:131;:::i;:::-;30432:139;;30159:419;;;:::o;30584:::-;30750:4;30788:2;30777:9;30773:18;30765:26;;30837:9;30831:4;30827:20;30823:1;30812:9;30808:17;30801:47;30865:131;30991:4;30865:131;:::i;:::-;30857:139;;30584:419;;;:::o;31009:222::-;31102:4;31140:2;31129:9;31125:18;31117:26;;31153:71;31221:1;31210:9;31206:17;31197:6;31153:71;:::i;:::-;31009:222;;;;:::o;31237:129::-;31271:6;31298:20;;:::i;:::-;31288:30;;31327:33;31355:4;31347:6;31327:33;:::i;:::-;31237:129;;;:::o;31372:75::-;31405:6;31438:2;31432:9;31422:19;;31372:75;:::o;31453:307::-;31514:4;31604:18;31596:6;31593:30;31590:56;;;31626:18;;:::i;:::-;31590:56;31664:29;31686:6;31664:29;:::i;:::-;31656:37;;31748:4;31742;31738:15;31730:23;;31453:307;;;:::o;31766:308::-;31828:4;31918:18;31910:6;31907:30;31904:56;;;31940:18;;:::i;:::-;31904:56;31978:29;32000:6;31978:29;:::i;:::-;31970:37;;32062:4;32056;32052:15;32044:23;;31766:308;;;:::o;32080:132::-;32147:4;32170:3;32162:11;;32200:4;32195:3;32191:14;32183:22;;32080:132;;;:::o;32218:141::-;32267:4;32290:3;32282:11;;32313:3;32310:1;32303:14;32347:4;32344:1;32334:18;32326:26;;32218:141;;;:::o;32365:114::-;32432:6;32466:5;32460:12;32450:22;;32365:114;;;:::o;32485:98::-;32536:6;32570:5;32564:12;32554:22;;32485:98;;;:::o;32589:99::-;32641:6;32675:5;32669:12;32659:22;;32589:99;;;:::o;32694:113::-;32764:4;32796;32791:3;32787:14;32779:22;;32694:113;;;:::o;32813:184::-;32912:11;32946:6;32941:3;32934:19;32986:4;32981:3;32977:14;32962:29;;32813:184;;;;:::o;33003:168::-;33086:11;33120:6;33115:3;33108:19;33160:4;33155:3;33151:14;33136:29;;33003:168;;;;:::o;33177:147::-;33278:11;33315:3;33300:18;;33177:147;;;;:::o;33330:169::-;33414:11;33448:6;33443:3;33436:19;33488:4;33483:3;33479:14;33464:29;;33330:169;;;;:::o;33505:148::-;33607:11;33644:3;33629:18;;33505:148;;;;:::o;33659:305::-;33699:3;33718:20;33736:1;33718:20;:::i;:::-;33713:25;;33752:20;33770:1;33752:20;:::i;:::-;33747:25;;33906:1;33838:66;33834:74;33831:1;33828:81;33825:107;;;33912:18;;:::i;:::-;33825:107;33956:1;33953;33949:9;33942:16;;33659:305;;;;:::o;33970:185::-;34010:1;34027:20;34045:1;34027:20;:::i;:::-;34022:25;;34061:20;34079:1;34061:20;:::i;:::-;34056:25;;34100:1;34090:35;;34105:18;;:::i;:::-;34090:35;34147:1;34144;34140:9;34135:14;;33970:185;;;;:::o;34161:348::-;34201:7;34224:20;34242:1;34224:20;:::i;:::-;34219:25;;34258:20;34276:1;34258:20;:::i;:::-;34253:25;;34446:1;34378:66;34374:74;34371:1;34368:81;34363:1;34356:9;34349:17;34345:105;34342:131;;;34453:18;;:::i;:::-;34342:131;34501:1;34498;34494:9;34483:20;;34161:348;;;;:::o;34515:191::-;34555:4;34575:20;34593:1;34575:20;:::i;:::-;34570:25;;34609:20;34627:1;34609:20;:::i;:::-;34604:25;;34648:1;34645;34642:8;34639:34;;;34653:18;;:::i;:::-;34639:34;34698:1;34695;34691:9;34683:17;;34515:191;;;;:::o;34712:96::-;34749:7;34778:24;34796:5;34778:24;:::i;:::-;34767:35;;34712:96;;;:::o;34814:90::-;34848:7;34891:5;34884:13;34877:21;34866:32;;34814:90;;;:::o;34910:149::-;34946:7;34986:66;34979:5;34975:78;34964:89;;34910:149;;;:::o;35065:126::-;35102:7;35142:42;35135:5;35131:54;35120:65;;35065:126;;;:::o;35197:77::-;35234:7;35263:5;35252:16;;35197:77;;;:::o;35280:154::-;35364:6;35359:3;35354;35341:30;35426:1;35417:6;35412:3;35408:16;35401:27;35280:154;;;:::o;35440:307::-;35508:1;35518:113;35532:6;35529:1;35526:13;35518:113;;;35617:1;35612:3;35608:11;35602:18;35598:1;35593:3;35589:11;35582:39;35554:2;35551:1;35547:10;35542:15;;35518:113;;;35649:6;35646:1;35643:13;35640:101;;;35729:1;35720:6;35715:3;35711:16;35704:27;35640:101;35489:258;35440:307;;;:::o;35753:320::-;35797:6;35834:1;35828:4;35824:12;35814:22;;35881:1;35875:4;35871:12;35902:18;35892:81;;35958:4;35950:6;35946:17;35936:27;;35892:81;36020:2;36012:6;36009:14;35989:18;35986:38;35983:84;;;36039:18;;:::i;:::-;35983:84;35804:269;35753:320;;;:::o;36079:281::-;36162:27;36184:4;36162:27;:::i;:::-;36154:6;36150:40;36292:6;36280:10;36277:22;36256:18;36244:10;36241:34;36238:62;36235:88;;;36303:18;;:::i;:::-;36235:88;36343:10;36339:2;36332:22;36122:238;36079:281;;:::o;36366:233::-;36405:3;36428:24;36446:5;36428:24;:::i;:::-;36419:33;;36474:66;36467:5;36464:77;36461:103;;;36544:18;;:::i;:::-;36461:103;36591:1;36584:5;36580:13;36573:20;;36366:233;;;:::o;36605:176::-;36637:1;36654:20;36672:1;36654:20;:::i;:::-;36649:25;;36688:20;36706:1;36688:20;:::i;:::-;36683:25;;36727:1;36717:35;;36732:18;;:::i;:::-;36717:35;36773:1;36770;36766:9;36761:14;;36605:176;;;;:::o;36787:180::-;36835:77;36832:1;36825:88;36932:4;36929:1;36922:15;36956:4;36953:1;36946:15;36973:180;37021:77;37018:1;37011:88;37118:4;37115:1;37108:15;37142:4;37139:1;37132:15;37159:180;37207:77;37204:1;37197:88;37304:4;37301:1;37294:15;37328:4;37325:1;37318:15;37345:180;37393:77;37390:1;37383:88;37490:4;37487:1;37480:15;37514:4;37511:1;37504:15;37531:180;37579:77;37576:1;37569:88;37676:4;37673:1;37666:15;37700:4;37697:1;37690:15;37717:117;37826:1;37823;37816:12;37840:117;37949:1;37946;37939:12;37963:117;38072:1;38069;38062:12;38086:117;38195:1;38192;38185:12;38209:102;38250:6;38301:2;38297:7;38292:2;38285:5;38281:14;38277:28;38267:38;;38209:102;;;:::o;38317:237::-;38457:34;38453:1;38445:6;38441:14;38434:58;38526:20;38521:2;38513:6;38509:15;38502:45;38317:237;:::o;38560:225::-;38700:34;38696:1;38688:6;38684:14;38677:58;38769:8;38764:2;38756:6;38752:15;38745:33;38560:225;:::o;38791:224::-;38931:34;38927:1;38919:6;38915:14;38908:58;39000:7;38995:2;38987:6;38983:15;38976:32;38791:224;:::o;39021:178::-;39161:30;39157:1;39149:6;39145:14;39138:54;39021:178;:::o;39205:170::-;39345:22;39341:1;39333:6;39329:14;39322:46;39205:170;:::o;39381:223::-;39521:34;39517:1;39509:6;39505:14;39498:58;39590:6;39585:2;39577:6;39573:15;39566:31;39381:223;:::o;39610:175::-;39750:27;39746:1;39738:6;39734:14;39727:51;39610:175;:::o;39791:231::-;39931:34;39927:1;39919:6;39915:14;39908:58;40000:14;39995:2;39987:6;39983:15;39976:39;39791:231;:::o;40028:243::-;40168:34;40164:1;40156:6;40152:14;40145:58;40237:26;40232:2;40224:6;40220:15;40213:51;40028:243;:::o;40277:229::-;40417:34;40413:1;40405:6;40401:14;40394:58;40486:12;40481:2;40473:6;40469:15;40462:37;40277:229;:::o;40512:228::-;40652:34;40648:1;40640:6;40636:14;40629:58;40721:11;40716:2;40708:6;40704:15;40697:36;40512:228;:::o;40746:182::-;40886:34;40882:1;40874:6;40870:14;40863:58;40746:182;:::o;40934:231::-;41074:34;41070:1;41062:6;41058:14;41051:58;41143:14;41138:2;41130:6;41126:15;41119:39;40934:231;:::o;41171:182::-;41311:34;41307:1;41299:6;41295:14;41288:58;41171:182;:::o;41359:173::-;41499:25;41495:1;41487:6;41483:14;41476:49;41359:173;:::o;41538:234::-;41678:34;41674:1;41666:6;41662:14;41655:58;41747:17;41742:2;41734:6;41730:15;41723:42;41538:234;:::o;41778:220::-;41918:34;41914:1;41906:6;41902:14;41895:58;41987:3;41982:2;41974:6;41970:15;41963:28;41778:220;:::o;42004:114::-;;:::o;42124:170::-;42264:22;42260:1;42252:6;42248:14;42241:46;42124:170;:::o;42300:236::-;42440:34;42436:1;42428:6;42424:14;42417:58;42509:19;42504:2;42496:6;42492:15;42485:44;42300:236;:::o;42542:169::-;42682:21;42678:1;42670:6;42666:14;42659:45;42542:169;:::o;42717:122::-;42790:24;42808:5;42790:24;:::i;:::-;42783:5;42780:35;42770:63;;42829:1;42826;42819:12;42770:63;42717:122;:::o;42845:116::-;42915:21;42930:5;42915:21;:::i;:::-;42908:5;42905:32;42895:60;;42951:1;42948;42941:12;42895:60;42845:116;:::o;42967:120::-;43039:23;43056:5;43039:23;:::i;:::-;43032:5;43029:34;43019:62;;43077:1;43074;43067:12;43019:62;42967:120;:::o;43093:122::-;43166:24;43184:5;43166:24;:::i;:::-;43159:5;43156:35;43146:63;;43205:1;43202;43195:12;43146:63;43093:122;:::o

Swarm Source

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