ETH Price: $2,813.05 (+8.40%)
 

Overview

Max Total Supply

0 NFT

Holders

528

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 NFT
0xc8c7625364d63080cb3f34574596caf26cc3276e
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:
VanEck

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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


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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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


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


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

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits 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 @openzeppelin/contracts/access/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/VanEck.sol


pragma solidity ^0.8.12;


contract VanEck is ERC721, Ownable {
	string private _baseURIString;
    constructor() ERC721("VanEck", "NFT") {}
	
	function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIString;
    }
	
	function setBaseURI(string memory baseURI) external onlyOwner {
        _baseURIString = baseURI;
    }

    function mintNFT(address to, uint256 tokenId) public onlyOwner {
        _safeMint(to, tokenId);
    }
}

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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f56616e45636b00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e46540000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000285565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b60208210811415620002b557620002b462000256565b5b50919050565b612e6380620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a22cb46511610071578063a22cb465146102cb578063b88d4fde146102e7578063c87b56dd14610303578063e985e9c514610333578063f2fde38b1461036357610116565b806370a0823114610255578063715018a6146102855780638da5cb5b1461028f57806395d89b41146102ad57610116565b806323b872dd116100e957806323b872dd146101b55780633c168eab146101d157806342842e0e146101ed57806355f804b3146102095780636352211e1461022557610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b61013560048036038101906101309190611bfe565b61037f565b6040516101429190611c46565b60405180910390f35b610153610461565b6040516101609190611cfa565b60405180910390f35b610183600480360381019061017e9190611d52565b6104f3565b6040516101909190611dc0565b60405180910390f35b6101b360048036038101906101ae9190611e07565b610578565b005b6101cf60048036038101906101ca9190611e47565b610690565b005b6101eb60048036038101906101e69190611e07565b6106f0565b005b61020760048036038101906102029190611e47565b61077a565b005b610223600480360381019061021e9190611fcf565b61079a565b005b61023f600480360381019061023a9190611d52565b610830565b60405161024c9190611dc0565b60405180910390f35b61026f600480360381019061026a9190612018565b6108e2565b60405161027c9190612054565b60405180910390f35b61028d61099a565b005b610297610a22565b6040516102a49190611dc0565b60405180910390f35b6102b5610a4c565b6040516102c29190611cfa565b60405180910390f35b6102e560048036038101906102e0919061209b565b610ade565b005b61030160048036038101906102fc919061217c565b610af4565b005b61031d60048036038101906103189190611d52565b610b56565b60405161032a9190611cfa565b60405180910390f35b61034d600480360381019061034891906121ff565b610bfd565b60405161035a9190611c46565b60405180910390f35b61037d60048036038101906103789190612018565b610c91565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061044a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061045a575061045982610d89565b5b9050919050565b6060600080546104709061226e565b80601f016020809104026020016040519081016040528092919081815260200182805461049c9061226e565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b60006104fe82610df3565b61053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490612312565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061058382610830565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb906123a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610613610e5f565b73ffffffffffffffffffffffffffffffffffffffff16148061064257506106418161063c610e5f565b610bfd565b5b610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067890612436565b60405180910390fd5b61068b8383610e67565b505050565b6106a161069b610e5f565b82610f20565b6106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d7906124c8565b60405180910390fd5b6106eb838383610ffe565b505050565b6106f8610e5f565b73ffffffffffffffffffffffffffffffffffffffff16610716610a22565b73ffffffffffffffffffffffffffffffffffffffff161461076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390612534565b60405180910390fd5b6107768282611265565b5050565b61079583838360405180602001604052806000815250610af4565b505050565b6107a2610e5f565b73ffffffffffffffffffffffffffffffffffffffff166107c0610a22565b73ffffffffffffffffffffffffffffffffffffffff1614610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90612534565b60405180910390fd5b806007908051906020019061082c929190611aef565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d0906125c6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90612658565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a2610e5f565b73ffffffffffffffffffffffffffffffffffffffff166109c0610a22565b73ffffffffffffffffffffffffffffffffffffffff1614610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90612534565b60405180910390fd5b610a206000611283565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a5b9061226e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a879061226e565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b610af0610ae9610e5f565b8383611349565b5050565b610b05610aff610e5f565b83610f20565b610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b906124c8565b60405180910390fd5b610b50848484846114b6565b50505050565b6060610b6182610df3565b610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b97906126ea565b60405180910390fd5b6000610baa611512565b90506000815111610bca5760405180602001604052806000815250610bf5565b80610bd4846115a4565b604051602001610be5929190612746565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c99610e5f565b73ffffffffffffffffffffffffffffffffffffffff16610cb7610a22565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490612534565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906127dc565b60405180910390fd5b610d8681611283565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610eda83610830565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f2b82610df3565b610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061286e565b60405180910390fd5b6000610f7583610830565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610fb75750610fb68185610bfd565b5b80610ff557508373ffffffffffffffffffffffffffffffffffffffff16610fdd846104f3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661101e82610830565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90612900565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90612992565b60405180910390fd5b6110ef838383611705565b6110fa600082610e67565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114a91906129e1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111a19190612a15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461126083838361170a565b505050565b61127f82826040518060200160405280600081525061170f565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612ab7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a99190611c46565b60405180910390a3505050565b6114c1848484610ffe565b6114cd8484848461176a565b61150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612b49565b60405180910390fd5b50505050565b6060600780546115219061226e565b80601f016020809104026020016040519081016040528092919081815260200182805461154d9061226e565b801561159a5780601f1061156f5761010080835404028352916020019161159a565b820191906000526020600020905b81548152906001019060200180831161157d57829003601f168201915b5050505050905090565b606060008214156115ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611700565b600082905060005b6000821461161e57808061160790612b69565b915050600a826116179190612be1565b91506115f4565b60008167ffffffffffffffff81111561163a57611639611ea4565b5b6040519080825280601f01601f19166020018201604052801561166c5781602001600182028036833780820191505090505b5090505b600085146116f95760018261168591906129e1565b9150600a856116949190612c12565b60306116a09190612a15565b60f81b8183815181106116b6576116b5612c43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116f29190612be1565b9450611670565b8093505050505b919050565b505050565b505050565b61171983836118f2565b611726600084848461176a565b611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90612b49565b60405180910390fd5b505050565b600061178b8473ffffffffffffffffffffffffffffffffffffffff16611acc565b156118e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117b4610e5f565b8786866040518563ffffffff1660e01b81526004016117d69493929190612cc7565b6020604051808303816000875af192505050801561181257506040513d601f19601f8201168201806040525081019061180f9190612d28565b60015b611895573d8060008114611842576040519150601f19603f3d011682016040523d82523d6000602084013e611847565b606091505b5060008151141561188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490612b49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118ea565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990612da1565b60405180910390fd5b61196b81610df3565b156119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290612e0d565b60405180910390fd5b6119b760008383611705565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a079190612a15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ac86000838361170a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611afb9061226e565b90600052602060002090601f016020900481019282611b1d5760008555611b64565b82601f10611b3657805160ff1916838001178555611b64565b82800160010185558215611b64579182015b82811115611b63578251825591602001919060010190611b48565b5b509050611b719190611b75565b5090565b5b80821115611b8e576000816000905550600101611b76565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611bdb81611ba6565b8114611be657600080fd5b50565b600081359050611bf881611bd2565b92915050565b600060208284031215611c1457611c13611b9c565b5b6000611c2284828501611be9565b91505092915050565b60008115159050919050565b611c4081611c2b565b82525050565b6000602082019050611c5b6000830184611c37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c9b578082015181840152602081019050611c80565b83811115611caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ccc82611c61565b611cd68185611c6c565b9350611ce6818560208601611c7d565b611cef81611cb0565b840191505092915050565b60006020820190508181036000830152611d148184611cc1565b905092915050565b6000819050919050565b611d2f81611d1c565b8114611d3a57600080fd5b50565b600081359050611d4c81611d26565b92915050565b600060208284031215611d6857611d67611b9c565b5b6000611d7684828501611d3d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611daa82611d7f565b9050919050565b611dba81611d9f565b82525050565b6000602082019050611dd56000830184611db1565b92915050565b611de481611d9f565b8114611def57600080fd5b50565b600081359050611e0181611ddb565b92915050565b60008060408385031215611e1e57611e1d611b9c565b5b6000611e2c85828601611df2565b9250506020611e3d85828601611d3d565b9150509250929050565b600080600060608486031215611e6057611e5f611b9c565b5b6000611e6e86828701611df2565b9350506020611e7f86828701611df2565b9250506040611e9086828701611d3d565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611edc82611cb0565b810181811067ffffffffffffffff82111715611efb57611efa611ea4565b5b80604052505050565b6000611f0e611b92565b9050611f1a8282611ed3565b919050565b600067ffffffffffffffff821115611f3a57611f39611ea4565b5b611f4382611cb0565b9050602081019050919050565b82818337600083830152505050565b6000611f72611f6d84611f1f565b611f04565b905082815260208101848484011115611f8e57611f8d611e9f565b5b611f99848285611f50565b509392505050565b600082601f830112611fb657611fb5611e9a565b5b8135611fc6848260208601611f5f565b91505092915050565b600060208284031215611fe557611fe4611b9c565b5b600082013567ffffffffffffffff81111561200357612002611ba1565b5b61200f84828501611fa1565b91505092915050565b60006020828403121561202e5761202d611b9c565b5b600061203c84828501611df2565b91505092915050565b61204e81611d1c565b82525050565b60006020820190506120696000830184612045565b92915050565b61207881611c2b565b811461208357600080fd5b50565b6000813590506120958161206f565b92915050565b600080604083850312156120b2576120b1611b9c565b5b60006120c085828601611df2565b92505060206120d185828601612086565b9150509250929050565b600067ffffffffffffffff8211156120f6576120f5611ea4565b5b6120ff82611cb0565b9050602081019050919050565b600061211f61211a846120db565b611f04565b90508281526020810184848401111561213b5761213a611e9f565b5b612146848285611f50565b509392505050565b600082601f83011261216357612162611e9a565b5b813561217384826020860161210c565b91505092915050565b6000806000806080858703121561219657612195611b9c565b5b60006121a487828801611df2565b94505060206121b587828801611df2565b93505060406121c687828801611d3d565b925050606085013567ffffffffffffffff8111156121e7576121e6611ba1565b5b6121f38782880161214e565b91505092959194509250565b6000806040838503121561221657612215611b9c565b5b600061222485828601611df2565b925050602061223585828601611df2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061228657607f821691505b6020821081141561229a5761229961223f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006122fc602c83611c6c565b9150612307826122a0565b604082019050919050565b6000602082019050818103600083015261232b816122ef565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061238e602183611c6c565b915061239982612332565b604082019050919050565b600060208201905081810360008301526123bd81612381565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612420603883611c6c565b915061242b826123c4565b604082019050919050565b6000602082019050818103600083015261244f81612413565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006124b2603183611c6c565b91506124bd82612456565b604082019050919050565b600060208201905081810360008301526124e1816124a5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061251e602083611c6c565b9150612529826124e8565b602082019050919050565b6000602082019050818103600083015261254d81612511565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006125b0602983611c6c565b91506125bb82612554565b604082019050919050565b600060208201905081810360008301526125df816125a3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612642602a83611c6c565b915061264d826125e6565b604082019050919050565b6000602082019050818103600083015261267181612635565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006126d4602f83611c6c565b91506126df82612678565b604082019050919050565b60006020820190508181036000830152612703816126c7565b9050919050565b600081905092915050565b600061272082611c61565b61272a818561270a565b935061273a818560208601611c7d565b80840191505092915050565b60006127528285612715565b915061275e8284612715565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127c6602683611c6c565b91506127d18261276a565b604082019050919050565b600060208201905081810360008301526127f5816127b9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612858602c83611c6c565b9150612863826127fc565b604082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006128ea602583611c6c565b91506128f58261288e565b604082019050919050565b60006020820190508181036000830152612919816128dd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061297c602483611c6c565b915061298782612920565b604082019050919050565b600060208201905081810360008301526129ab8161296f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129ec82611d1c565b91506129f783611d1c565b925082821015612a0a57612a096129b2565b5b828203905092915050565b6000612a2082611d1c565b9150612a2b83611d1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a6057612a5f6129b2565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612aa1601983611c6c565b9150612aac82612a6b565b602082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612b33603283611c6c565b9150612b3e82612ad7565b604082019050919050565b60006020820190508181036000830152612b6281612b26565b9050919050565b6000612b7482611d1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba757612ba66129b2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612bec82611d1c565b9150612bf783611d1c565b925082612c0757612c06612bb2565b5b828204905092915050565b6000612c1d82611d1c565b9150612c2883611d1c565b925082612c3857612c37612bb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612c9982612c72565b612ca38185612c7d565b9350612cb3818560208601611c7d565b612cbc81611cb0565b840191505092915050565b6000608082019050612cdc6000830187611db1565b612ce96020830186611db1565b612cf66040830185612045565b8181036060830152612d088184612c8e565b905095945050505050565b600081519050612d2281611bd2565b92915050565b600060208284031215612d3e57612d3d611b9c565b5b6000612d4c84828501612d13565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612d8b602083611c6c565b9150612d9682612d55565b602082019050919050565b60006020820190508181036000830152612dba81612d7e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612df7601c83611c6c565b9150612e0282612dc1565b602082019050919050565b60006020820190508181036000830152612e2681612dea565b905091905056fea264697066735822122087277db414203a16cd878f32b8a080483c393e2e285f8f7e23daf4d0502a71bb64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a2578063a22cb46511610071578063a22cb465146102cb578063b88d4fde146102e7578063c87b56dd14610303578063e985e9c514610333578063f2fde38b1461036357610116565b806370a0823114610255578063715018a6146102855780638da5cb5b1461028f57806395d89b41146102ad57610116565b806323b872dd116100e957806323b872dd146101b55780633c168eab146101d157806342842e0e146101ed57806355f804b3146102095780636352211e1461022557610116565b806301ffc9a71461011b57806306fdde031461014b578063081812fc14610169578063095ea7b314610199575b600080fd5b61013560048036038101906101309190611bfe565b61037f565b6040516101429190611c46565b60405180910390f35b610153610461565b6040516101609190611cfa565b60405180910390f35b610183600480360381019061017e9190611d52565b6104f3565b6040516101909190611dc0565b60405180910390f35b6101b360048036038101906101ae9190611e07565b610578565b005b6101cf60048036038101906101ca9190611e47565b610690565b005b6101eb60048036038101906101e69190611e07565b6106f0565b005b61020760048036038101906102029190611e47565b61077a565b005b610223600480360381019061021e9190611fcf565b61079a565b005b61023f600480360381019061023a9190611d52565b610830565b60405161024c9190611dc0565b60405180910390f35b61026f600480360381019061026a9190612018565b6108e2565b60405161027c9190612054565b60405180910390f35b61028d61099a565b005b610297610a22565b6040516102a49190611dc0565b60405180910390f35b6102b5610a4c565b6040516102c29190611cfa565b60405180910390f35b6102e560048036038101906102e0919061209b565b610ade565b005b61030160048036038101906102fc919061217c565b610af4565b005b61031d60048036038101906103189190611d52565b610b56565b60405161032a9190611cfa565b60405180910390f35b61034d600480360381019061034891906121ff565b610bfd565b60405161035a9190611c46565b60405180910390f35b61037d60048036038101906103789190612018565b610c91565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061044a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061045a575061045982610d89565b5b9050919050565b6060600080546104709061226e565b80601f016020809104026020016040519081016040528092919081815260200182805461049c9061226e565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b60006104fe82610df3565b61053d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053490612312565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061058382610830565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105eb906123a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610613610e5f565b73ffffffffffffffffffffffffffffffffffffffff16148061064257506106418161063c610e5f565b610bfd565b5b610681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067890612436565b60405180910390fd5b61068b8383610e67565b505050565b6106a161069b610e5f565b82610f20565b6106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d7906124c8565b60405180910390fd5b6106eb838383610ffe565b505050565b6106f8610e5f565b73ffffffffffffffffffffffffffffffffffffffff16610716610a22565b73ffffffffffffffffffffffffffffffffffffffff161461076c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076390612534565b60405180910390fd5b6107768282611265565b5050565b61079583838360405180602001604052806000815250610af4565b505050565b6107a2610e5f565b73ffffffffffffffffffffffffffffffffffffffff166107c0610a22565b73ffffffffffffffffffffffffffffffffffffffff1614610816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080d90612534565b60405180910390fd5b806007908051906020019061082c929190611aef565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d0906125c6565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90612658565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109a2610e5f565b73ffffffffffffffffffffffffffffffffffffffff166109c0610a22565b73ffffffffffffffffffffffffffffffffffffffff1614610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d90612534565b60405180910390fd5b610a206000611283565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a5b9061226e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a879061226e565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b610af0610ae9610e5f565b8383611349565b5050565b610b05610aff610e5f565b83610f20565b610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b906124c8565b60405180910390fd5b610b50848484846114b6565b50505050565b6060610b6182610df3565b610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b97906126ea565b60405180910390fd5b6000610baa611512565b90506000815111610bca5760405180602001604052806000815250610bf5565b80610bd4846115a4565b604051602001610be5929190612746565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610c99610e5f565b73ffffffffffffffffffffffffffffffffffffffff16610cb7610a22565b73ffffffffffffffffffffffffffffffffffffffff1614610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490612534565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d74906127dc565b60405180910390fd5b610d8681611283565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610eda83610830565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610f2b82610df3565b610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f619061286e565b60405180910390fd5b6000610f7583610830565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610fb75750610fb68185610bfd565b5b80610ff557508373ffffffffffffffffffffffffffffffffffffffff16610fdd846104f3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661101e82610830565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90612900565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90612992565b60405180910390fd5b6110ef838383611705565b6110fa600082610e67565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114a91906129e1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111a19190612a15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461126083838361170a565b505050565b61127f82826040518060200160405280600081525061170f565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113af90612ab7565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a99190611c46565b60405180910390a3505050565b6114c1848484610ffe565b6114cd8484848461176a565b61150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390612b49565b60405180910390fd5b50505050565b6060600780546115219061226e565b80601f016020809104026020016040519081016040528092919081815260200182805461154d9061226e565b801561159a5780601f1061156f5761010080835404028352916020019161159a565b820191906000526020600020905b81548152906001019060200180831161157d57829003601f168201915b5050505050905090565b606060008214156115ec576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611700565b600082905060005b6000821461161e57808061160790612b69565b915050600a826116179190612be1565b91506115f4565b60008167ffffffffffffffff81111561163a57611639611ea4565b5b6040519080825280601f01601f19166020018201604052801561166c5781602001600182028036833780820191505090505b5090505b600085146116f95760018261168591906129e1565b9150600a856116949190612c12565b60306116a09190612a15565b60f81b8183815181106116b6576116b5612c43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116f29190612be1565b9450611670565b8093505050505b919050565b505050565b505050565b61171983836118f2565b611726600084848461176a565b611765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175c90612b49565b60405180910390fd5b505050565b600061178b8473ffffffffffffffffffffffffffffffffffffffff16611acc565b156118e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117b4610e5f565b8786866040518563ffffffff1660e01b81526004016117d69493929190612cc7565b6020604051808303816000875af192505050801561181257506040513d601f19601f8201168201806040525081019061180f9190612d28565b60015b611895573d8060008114611842576040519150601f19603f3d011682016040523d82523d6000602084013e611847565b606091505b5060008151141561188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490612b49565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118ea565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195990612da1565b60405180910390fd5b61196b81610df3565b156119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a290612e0d565b60405180910390fd5b6119b760008383611705565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a079190612a15565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ac86000838361170a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611afb9061226e565b90600052602060002090601f016020900481019282611b1d5760008555611b64565b82601f10611b3657805160ff1916838001178555611b64565b82800160010185558215611b64579182015b82811115611b63578251825591602001919060010190611b48565b5b509050611b719190611b75565b5090565b5b80821115611b8e576000816000905550600101611b76565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611bdb81611ba6565b8114611be657600080fd5b50565b600081359050611bf881611bd2565b92915050565b600060208284031215611c1457611c13611b9c565b5b6000611c2284828501611be9565b91505092915050565b60008115159050919050565b611c4081611c2b565b82525050565b6000602082019050611c5b6000830184611c37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c9b578082015181840152602081019050611c80565b83811115611caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ccc82611c61565b611cd68185611c6c565b9350611ce6818560208601611c7d565b611cef81611cb0565b840191505092915050565b60006020820190508181036000830152611d148184611cc1565b905092915050565b6000819050919050565b611d2f81611d1c565b8114611d3a57600080fd5b50565b600081359050611d4c81611d26565b92915050565b600060208284031215611d6857611d67611b9c565b5b6000611d7684828501611d3d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611daa82611d7f565b9050919050565b611dba81611d9f565b82525050565b6000602082019050611dd56000830184611db1565b92915050565b611de481611d9f565b8114611def57600080fd5b50565b600081359050611e0181611ddb565b92915050565b60008060408385031215611e1e57611e1d611b9c565b5b6000611e2c85828601611df2565b9250506020611e3d85828601611d3d565b9150509250929050565b600080600060608486031215611e6057611e5f611b9c565b5b6000611e6e86828701611df2565b9350506020611e7f86828701611df2565b9250506040611e9086828701611d3d565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611edc82611cb0565b810181811067ffffffffffffffff82111715611efb57611efa611ea4565b5b80604052505050565b6000611f0e611b92565b9050611f1a8282611ed3565b919050565b600067ffffffffffffffff821115611f3a57611f39611ea4565b5b611f4382611cb0565b9050602081019050919050565b82818337600083830152505050565b6000611f72611f6d84611f1f565b611f04565b905082815260208101848484011115611f8e57611f8d611e9f565b5b611f99848285611f50565b509392505050565b600082601f830112611fb657611fb5611e9a565b5b8135611fc6848260208601611f5f565b91505092915050565b600060208284031215611fe557611fe4611b9c565b5b600082013567ffffffffffffffff81111561200357612002611ba1565b5b61200f84828501611fa1565b91505092915050565b60006020828403121561202e5761202d611b9c565b5b600061203c84828501611df2565b91505092915050565b61204e81611d1c565b82525050565b60006020820190506120696000830184612045565b92915050565b61207881611c2b565b811461208357600080fd5b50565b6000813590506120958161206f565b92915050565b600080604083850312156120b2576120b1611b9c565b5b60006120c085828601611df2565b92505060206120d185828601612086565b9150509250929050565b600067ffffffffffffffff8211156120f6576120f5611ea4565b5b6120ff82611cb0565b9050602081019050919050565b600061211f61211a846120db565b611f04565b90508281526020810184848401111561213b5761213a611e9f565b5b612146848285611f50565b509392505050565b600082601f83011261216357612162611e9a565b5b813561217384826020860161210c565b91505092915050565b6000806000806080858703121561219657612195611b9c565b5b60006121a487828801611df2565b94505060206121b587828801611df2565b93505060406121c687828801611d3d565b925050606085013567ffffffffffffffff8111156121e7576121e6611ba1565b5b6121f38782880161214e565b91505092959194509250565b6000806040838503121561221657612215611b9c565b5b600061222485828601611df2565b925050602061223585828601611df2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061228657607f821691505b6020821081141561229a5761229961223f565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006122fc602c83611c6c565b9150612307826122a0565b604082019050919050565b6000602082019050818103600083015261232b816122ef565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061238e602183611c6c565b915061239982612332565b604082019050919050565b600060208201905081810360008301526123bd81612381565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612420603883611c6c565b915061242b826123c4565b604082019050919050565b6000602082019050818103600083015261244f81612413565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006124b2603183611c6c565b91506124bd82612456565b604082019050919050565b600060208201905081810360008301526124e1816124a5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061251e602083611c6c565b9150612529826124e8565b602082019050919050565b6000602082019050818103600083015261254d81612511565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006125b0602983611c6c565b91506125bb82612554565b604082019050919050565b600060208201905081810360008301526125df816125a3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612642602a83611c6c565b915061264d826125e6565b604082019050919050565b6000602082019050818103600083015261267181612635565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006126d4602f83611c6c565b91506126df82612678565b604082019050919050565b60006020820190508181036000830152612703816126c7565b9050919050565b600081905092915050565b600061272082611c61565b61272a818561270a565b935061273a818560208601611c7d565b80840191505092915050565b60006127528285612715565b915061275e8284612715565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127c6602683611c6c565b91506127d18261276a565b604082019050919050565b600060208201905081810360008301526127f5816127b9565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612858602c83611c6c565b9150612863826127fc565b604082019050919050565b600060208201905081810360008301526128878161284b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006128ea602583611c6c565b91506128f58261288e565b604082019050919050565b60006020820190508181036000830152612919816128dd565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061297c602483611c6c565b915061298782612920565b604082019050919050565b600060208201905081810360008301526129ab8161296f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129ec82611d1c565b91506129f783611d1c565b925082821015612a0a57612a096129b2565b5b828203905092915050565b6000612a2082611d1c565b9150612a2b83611d1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a6057612a5f6129b2565b5b828201905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612aa1601983611c6c565b9150612aac82612a6b565b602082019050919050565b60006020820190508181036000830152612ad081612a94565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612b33603283611c6c565b9150612b3e82612ad7565b604082019050919050565b60006020820190508181036000830152612b6281612b26565b9050919050565b6000612b7482611d1c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba757612ba66129b2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612bec82611d1c565b9150612bf783611d1c565b925082612c0757612c06612bb2565b5b828204905092915050565b6000612c1d82611d1c565b9150612c2883611d1c565b925082612c3857612c37612bb2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000612c9982612c72565b612ca38185612c7d565b9350612cb3818560208601611c7d565b612cbc81611cb0565b840191505092915050565b6000608082019050612cdc6000830187611db1565b612ce96020830186611db1565b612cf66040830185612045565b8181036060830152612d088184612c8e565b905095945050505050565b600081519050612d2281611bd2565b92915050565b600060208284031215612d3e57612d3d611b9c565b5b6000612d4c84828501612d13565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612d8b602083611c6c565b9150612d9682612d55565b602082019050919050565b60006020820190508181036000830152612dba81612d7e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612df7601c83611c6c565b9150612e0282612dc1565b602082019050919050565b60006020820190508181036000830152612e2681612dea565b905091905056fea264697066735822122087277db414203a16cd878f32b8a080483c393e2e285f8f7e23daf4d0502a71bb64736f6c634300080c0033

Deployed Bytecode Sourcemap

37491:462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21774:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22719:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24279:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23802:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25029:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37846:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25439:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37733:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22413:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22143:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36608:103;;;:::i;:::-;;35957:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22888:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24572:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25695:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23063:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24798:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36866:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21774:305;21876:4;21928:25;21913:40;;;:11;:40;;;;:105;;;;21985:33;21970:48;;;:11;:48;;;;21913:105;:158;;;;22035:36;22059:11;22035:23;:36::i;:::-;21913:158;21893:178;;21774:305;;;:::o;22719:100::-;22773:13;22806:5;22799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22719:100;:::o;24279:221::-;24355:7;24383:16;24391:7;24383;:16::i;:::-;24375:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24468:15;:24;24484:7;24468:24;;;;;;;;;;;;;;;;;;;;;24461:31;;24279:221;;;:::o;23802:411::-;23883:13;23899:23;23914:7;23899:14;:23::i;:::-;23883:39;;23947:5;23941:11;;:2;:11;;;;23933:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24041:5;24025:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24050:37;24067:5;24074:12;:10;:12::i;:::-;24050:16;:37::i;:::-;24025:62;24003:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24184:21;24193:2;24197:7;24184:8;:21::i;:::-;23872:341;23802:411;;:::o;25029:339::-;25224:41;25243:12;:10;:12::i;:::-;25257:7;25224:18;:41::i;:::-;25216:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25332:28;25342:4;25348:2;25352:7;25332:9;:28::i;:::-;25029:339;;;:::o;37846:104::-;36188:12;:10;:12::i;:::-;36177:23;;:7;:5;:7::i;:::-;:23;;;36169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37920:22:::1;37930:2;37934:7;37920:9;:22::i;:::-;37846:104:::0;;:::o;25439:185::-;25577:39;25594:4;25600:2;25604:7;25577:39;;;;;;;;;;;;:16;:39::i;:::-;25439:185;;;:::o;37733:105::-;36188:12;:10;:12::i;:::-;36177:23;;:7;:5;:7::i;:::-;:23;;;36169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37823:7:::1;37806:14;:24;;;;;;;;;;;;:::i;:::-;;37733:105:::0;:::o;22413:239::-;22485:7;22505:13;22521:7;:16;22529:7;22521:16;;;;;;;;;;;;;;;;;;;;;22505:32;;22573:1;22556:19;;:5;:19;;;;22548:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22639:5;22632:12;;;22413:239;;;:::o;22143:208::-;22215:7;22260:1;22243:19;;:5;:19;;;;22235:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22327:9;:16;22337:5;22327:16;;;;;;;;;;;;;;;;22320:23;;22143:208;;;:::o;36608:103::-;36188:12;:10;:12::i;:::-;36177:23;;:7;:5;:7::i;:::-;:23;;;36169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36673:30:::1;36700:1;36673:18;:30::i;:::-;36608:103::o:0;35957:87::-;36003:7;36030:6;;;;;;;;;;;36023:13;;35957:87;:::o;22888:104::-;22944:13;22977:7;22970:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22888:104;:::o;24572:155::-;24667:52;24686:12;:10;:12::i;:::-;24700:8;24710;24667:18;:52::i;:::-;24572:155;;:::o;25695:328::-;25870:41;25889:12;:10;:12::i;:::-;25903:7;25870:18;:41::i;:::-;25862:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25976:39;25990:4;25996:2;26000:7;26009:5;25976:13;:39::i;:::-;25695:328;;;;:::o;23063:334::-;23136:13;23170:16;23178:7;23170;:16::i;:::-;23162:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23251:21;23275:10;:8;:10::i;:::-;23251:34;;23327:1;23309:7;23303:21;:25;:86;;;;;;;;;;;;;;;;;23355:7;23364:18;:7;:16;:18::i;:::-;23338:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23303:86;23296:93;;;23063:334;;;:::o;24798:164::-;24895:4;24919:18;:25;24938:5;24919:25;;;;;;;;;;;;;;;:35;24945:8;24919:35;;;;;;;;;;;;;;;;;;;;;;;;;24912:42;;24798:164;;;;:::o;36866:201::-;36188:12;:10;:12::i;:::-;36177:23;;:7;:5;:7::i;:::-;:23;;;36169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36975:1:::1;36955:22;;:8;:22;;;;36947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37031:28;37050:8;37031:18;:28::i;:::-;36866:201:::0;:::o;20197:157::-;20282:4;20321:25;20306:40;;;:11;:40;;;;20299:47;;20197:157;;;:::o;27533:127::-;27598:4;27650:1;27622:30;;:7;:16;27630:7;27622:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27615:37;;27533:127;;;:::o;16980:98::-;17033:7;17060:10;17053:17;;16980:98;:::o;31679:174::-;31781:2;31754:15;:24;31770:7;31754:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31837:7;31833:2;31799:46;;31808:23;31823:7;31808:14;:23::i;:::-;31799:46;;;;;;;;;;;;31679:174;;:::o;27827:348::-;27920:4;27945:16;27953:7;27945;:16::i;:::-;27937:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28021:13;28037:23;28052:7;28037:14;:23::i;:::-;28021:39;;28090:5;28079:16;;:7;:16;;;:52;;;;28099:32;28116:5;28123:7;28099:16;:32::i;:::-;28079:52;:87;;;;28159:7;28135:31;;:20;28147:7;28135:11;:20::i;:::-;:31;;;28079:87;28071:96;;;27827:348;;;;:::o;30936:625::-;31095:4;31068:31;;:23;31083:7;31068:14;:23::i;:::-;:31;;;31060:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31174:1;31160:16;;:2;:16;;;;31152:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31230:39;31251:4;31257:2;31261:7;31230:20;:39::i;:::-;31334:29;31351:1;31355:7;31334:8;:29::i;:::-;31395:1;31376:9;:15;31386:4;31376:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31424:1;31407:9;:13;31417:2;31407:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31455:2;31436:7;:16;31444:7;31436:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31494:7;31490:2;31475:27;;31484:4;31475:27;;;;;;;;;;;;31515:38;31535:4;31541:2;31545:7;31515:19;:38::i;:::-;30936:625;;;:::o;28517:110::-;28593:26;28603:2;28607:7;28593:26;;;;;;;;;;;;:9;:26::i;:::-;28517:110;;:::o;37227:191::-;37301:16;37320:6;;;;;;;;;;;37301:25;;37346:8;37337:6;;:17;;;;;;;;;;;;;;;;;;37401:8;37370:40;;37391:8;37370:40;;;;;;;;;;;;37290:128;37227:191;:::o;31995:315::-;32150:8;32141:17;;:5;:17;;;;32133:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;32237:8;32199:18;:25;32218:5;32199:25;;;;;;;;;;;;;;;:35;32225:8;32199:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;32283:8;32261:41;;32276:5;32261:41;;;32293:8;32261:41;;;;;;:::i;:::-;;;;;;;;31995:315;;;:::o;26905:::-;27062:28;27072:4;27078:2;27082:7;27062:9;:28::i;:::-;27109:48;27132:4;27138:2;27142:7;27151:5;27109:22;:48::i;:::-;27101:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26905:315;;;;:::o;37612:115::-;37672:13;37705:14;37698:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37612:115;:::o;17567:723::-;17623:13;17853:1;17844:5;:10;17840:53;;;17871:10;;;;;;;;;;;;;;;;;;;;;17840:53;17903:12;17918:5;17903:20;;17934:14;17959:78;17974:1;17966:4;:9;17959:78;;17992:8;;;;;:::i;:::-;;;;18023:2;18015:10;;;;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18047:39;;18097:154;18113:1;18104:5;:10;18097:154;;18141:1;18131:11;;;;;:::i;:::-;;;18208:2;18200:5;:10;;;;:::i;:::-;18187:2;:24;;;;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18237:2;18228:11;;;;;:::i;:::-;;;18097:154;;;18275:6;18261:21;;;;;17567:723;;;;:::o;34246:126::-;;;;:::o;34757:125::-;;;;:::o;28854:321::-;28984:18;28990:2;28994:7;28984:5;:18::i;:::-;29035:54;29066:1;29070:2;29074:7;29083:5;29035:22;:54::i;:::-;29013:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28854:321;;;:::o;32875:799::-;33030:4;33051:15;:2;:13;;;:15::i;:::-;33047:620;;;33103:2;33087:36;;;33124:12;:10;:12::i;:::-;33138:4;33144:7;33153:5;33087:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33083:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33346:1;33329:6;:13;:18;33325:272;;;33372:60;;;;;;;;;;:::i;:::-;;;;;;;;33325:272;33547:6;33541:13;33532:6;33528:2;33524:15;33517:38;33083:529;33220:41;;;33210:51;;;:6;:51;;;;33203:58;;;;;33047:620;33651:4;33644:11;;32875:799;;;;;;;:::o;29511:439::-;29605:1;29591:16;;:2;:16;;;;29583:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29664:16;29672:7;29664;:16::i;:::-;29663:17;29655:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29726:45;29755:1;29759:2;29763:7;29726:20;:45::i;:::-;29801:1;29784:9;:13;29794:2;29784:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29832:2;29813:7;:16;29821:7;29813:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29877:7;29873:2;29852:33;;29869:1;29852:33;;;;;;;;;;;;29898:44;29926:1;29930:2;29934:7;29898:19;:44::i;:::-;29511:439;;:::o;9023:326::-;9083:4;9340:1;9318:7;:19;;;:23;9311:30;;9023:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:117::-;5672:1;5669;5662:12;5686:117;5795:1;5792;5785:12;5809:180;5857:77;5854:1;5847:88;5954:4;5951:1;5944:15;5978:4;5975:1;5968:15;5995:281;6078:27;6100:4;6078:27;:::i;:::-;6070:6;6066:40;6208:6;6196:10;6193:22;6172:18;6160:10;6157:34;6154:62;6151:88;;;6219:18;;:::i;:::-;6151:88;6259:10;6255:2;6248:22;6038:238;5995:281;;:::o;6282:129::-;6316:6;6343:20;;:::i;:::-;6333:30;;6372:33;6400:4;6392:6;6372:33;:::i;:::-;6282:129;;;:::o;6417:308::-;6479:4;6569:18;6561:6;6558:30;6555:56;;;6591:18;;:::i;:::-;6555:56;6629:29;6651:6;6629:29;:::i;:::-;6621:37;;6713:4;6707;6703:15;6695:23;;6417:308;;;:::o;6731:154::-;6815:6;6810:3;6805;6792:30;6877:1;6868:6;6863:3;6859:16;6852:27;6731:154;;;:::o;6891:412::-;6969:5;6994:66;7010:49;7052:6;7010:49;:::i;:::-;6994:66;:::i;:::-;6985:75;;7083:6;7076:5;7069:21;7121:4;7114:5;7110:16;7159:3;7150:6;7145:3;7141:16;7138:25;7135:112;;;7166:79;;:::i;:::-;7135:112;7256:41;7290:6;7285:3;7280;7256:41;:::i;:::-;6975:328;6891:412;;;;;:::o;7323:340::-;7379:5;7428:3;7421:4;7413:6;7409:17;7405:27;7395:122;;7436:79;;:::i;:::-;7395:122;7553:6;7540:20;7578:79;7653:3;7645:6;7638:4;7630:6;7626:17;7578:79;:::i;:::-;7569:88;;7385:278;7323:340;;;;:::o;7669:509::-;7738:6;7787:2;7775:9;7766:7;7762:23;7758:32;7755:119;;;7793:79;;:::i;:::-;7755:119;7941:1;7930:9;7926:17;7913:31;7971:18;7963:6;7960:30;7957:117;;;7993:79;;:::i;:::-;7957:117;8098:63;8153:7;8144:6;8133:9;8129:22;8098:63;:::i;:::-;8088:73;;7884:287;7669:509;;;;:::o;8184:329::-;8243:6;8292:2;8280:9;8271:7;8267:23;8263:32;8260:119;;;8298:79;;:::i;:::-;8260:119;8418:1;8443:53;8488:7;8479:6;8468:9;8464:22;8443:53;:::i;:::-;8433:63;;8389:117;8184:329;;;;:::o;8519:118::-;8606:24;8624:5;8606:24;:::i;:::-;8601:3;8594:37;8519:118;;:::o;8643:222::-;8736:4;8774:2;8763:9;8759:18;8751:26;;8787:71;8855:1;8844:9;8840:17;8831:6;8787:71;:::i;:::-;8643:222;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:231::-;12773:34;12769:1;12761:6;12757:14;12750:58;12842:14;12837:2;12829:6;12825:15;12818:39;12633:231;:::o;12870:366::-;13012:3;13033:67;13097:2;13092:3;13033:67;:::i;:::-;13026:74;;13109:93;13198:3;13109:93;:::i;:::-;13227:2;13222:3;13218:12;13211:19;;12870:366;;;:::o;13242:419::-;13408:4;13446:2;13435:9;13431:18;13423:26;;13495:9;13489:4;13485:20;13481:1;13470:9;13466:17;13459:47;13523:131;13649:4;13523:131;:::i;:::-;13515:139;;13242:419;;;:::o;13667:220::-;13807:34;13803:1;13795:6;13791:14;13784:58;13876:3;13871:2;13863:6;13859:15;13852:28;13667:220;:::o;13893:366::-;14035:3;14056:67;14120:2;14115:3;14056:67;:::i;:::-;14049:74;;14132:93;14221:3;14132:93;:::i;:::-;14250:2;14245:3;14241:12;14234:19;;13893:366;;;:::o;14265:419::-;14431:4;14469:2;14458:9;14454:18;14446:26;;14518:9;14512:4;14508:20;14504:1;14493:9;14489:17;14482:47;14546:131;14672:4;14546:131;:::i;:::-;14538:139;;14265:419;;;:::o;14690:243::-;14830:34;14826:1;14818:6;14814:14;14807:58;14899:26;14894:2;14886:6;14882:15;14875:51;14690:243;:::o;14939:366::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;14939:366;;;:::o;15311:419::-;15477:4;15515:2;15504:9;15500:18;15492:26;;15564:9;15558:4;15554:20;15550:1;15539:9;15535:17;15528:47;15592:131;15718:4;15592:131;:::i;:::-;15584:139;;15311:419;;;:::o;15736:236::-;15876:34;15872:1;15864:6;15860:14;15853:58;15945:19;15940:2;15932:6;15928:15;15921:44;15736:236;:::o;15978:366::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:419::-;16516:4;16554:2;16543:9;16539:18;16531:26;;16603:9;16597:4;16593:20;16589:1;16578:9;16574:17;16567:47;16631:131;16757:4;16631:131;:::i;:::-;16623:139;;16350:419;;;:::o;16775:182::-;16915:34;16911:1;16903:6;16899:14;16892:58;16775:182;:::o;16963:366::-;17105:3;17126:67;17190:2;17185:3;17126:67;:::i;:::-;17119:74;;17202:93;17291:3;17202:93;:::i;:::-;17320:2;17315:3;17311:12;17304:19;;16963:366;;;:::o;17335:419::-;17501:4;17539:2;17528:9;17524:18;17516:26;;17588:9;17582:4;17578:20;17574:1;17563:9;17559:17;17552:47;17616:131;17742:4;17616:131;:::i;:::-;17608:139;;17335:419;;;:::o;17760:228::-;17900:34;17896:1;17888:6;17884:14;17877:58;17969:11;17964:2;17956:6;17952:15;17945:36;17760:228;:::o;17994:366::-;18136:3;18157:67;18221:2;18216:3;18157:67;:::i;:::-;18150:74;;18233:93;18322:3;18233:93;:::i;:::-;18351:2;18346:3;18342:12;18335:19;;17994:366;;;:::o;18366:419::-;18532:4;18570:2;18559:9;18555:18;18547:26;;18619:9;18613:4;18609:20;18605:1;18594:9;18590:17;18583:47;18647:131;18773:4;18647:131;:::i;:::-;18639:139;;18366:419;;;:::o;18791:229::-;18931:34;18927:1;18919:6;18915:14;18908:58;19000:12;18995:2;18987:6;18983:15;18976:37;18791:229;:::o;19026:366::-;19168:3;19189:67;19253:2;19248:3;19189:67;:::i;:::-;19182:74;;19265:93;19354:3;19265:93;:::i;:::-;19383:2;19378:3;19374:12;19367:19;;19026:366;;;:::o;19398:419::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19651:9;19645:4;19641:20;19637:1;19626:9;19622:17;19615:47;19679:131;19805:4;19679:131;:::i;:::-;19671:139;;19398:419;;;:::o;19823:234::-;19963:34;19959:1;19951:6;19947:14;19940:58;20032:17;20027:2;20019:6;20015:15;20008:42;19823:234;:::o;20063:366::-;20205:3;20226:67;20290:2;20285:3;20226:67;:::i;:::-;20219:74;;20302:93;20391:3;20302:93;:::i;:::-;20420:2;20415:3;20411:12;20404:19;;20063:366;;;:::o;20435:419::-;20601:4;20639:2;20628:9;20624:18;20616:26;;20688:9;20682:4;20678:20;20674:1;20663:9;20659:17;20652:47;20716:131;20842:4;20716:131;:::i;:::-;20708:139;;20435:419;;;:::o;20860:148::-;20962:11;20999:3;20984:18;;20860:148;;;;:::o;21014:377::-;21120:3;21148:39;21181:5;21148:39;:::i;:::-;21203:89;21285:6;21280:3;21203:89;:::i;:::-;21196:96;;21301:52;21346:6;21341:3;21334:4;21327:5;21323:16;21301:52;:::i;:::-;21378:6;21373:3;21369:16;21362:23;;21124:267;21014:377;;;;:::o;21397:435::-;21577:3;21599:95;21690:3;21681:6;21599:95;:::i;:::-;21592:102;;21711:95;21802:3;21793:6;21711:95;:::i;:::-;21704:102;;21823:3;21816:10;;21397:435;;;;;:::o;21838:225::-;21978:34;21974:1;21966:6;21962:14;21955:58;22047:8;22042:2;22034:6;22030:15;22023:33;21838:225;:::o;22069:366::-;22211:3;22232:67;22296:2;22291:3;22232:67;:::i;:::-;22225:74;;22308:93;22397:3;22308:93;:::i;:::-;22426:2;22421:3;22417:12;22410:19;;22069:366;;;:::o;22441:419::-;22607:4;22645:2;22634:9;22630:18;22622:26;;22694:9;22688:4;22684:20;22680:1;22669:9;22665:17;22658:47;22722:131;22848:4;22722:131;:::i;:::-;22714:139;;22441:419;;;:::o;22866:231::-;23006:34;23002:1;22994:6;22990:14;22983:58;23075:14;23070:2;23062:6;23058:15;23051:39;22866:231;:::o;23103:366::-;23245:3;23266:67;23330:2;23325:3;23266:67;:::i;:::-;23259:74;;23342:93;23431:3;23342:93;:::i;:::-;23460:2;23455:3;23451:12;23444:19;;23103:366;;;:::o;23475:419::-;23641:4;23679:2;23668:9;23664:18;23656:26;;23728:9;23722:4;23718:20;23714:1;23703:9;23699:17;23692:47;23756:131;23882:4;23756:131;:::i;:::-;23748:139;;23475:419;;;:::o;23900:224::-;24040:34;24036:1;24028:6;24024:14;24017:58;24109:7;24104:2;24096:6;24092:15;24085:32;23900:224;:::o;24130:366::-;24272:3;24293:67;24357:2;24352:3;24293:67;:::i;:::-;24286:74;;24369:93;24458:3;24369:93;:::i;:::-;24487:2;24482:3;24478:12;24471:19;;24130:366;;;:::o;24502:419::-;24668:4;24706:2;24695:9;24691:18;24683:26;;24755:9;24749:4;24745:20;24741:1;24730:9;24726:17;24719:47;24783:131;24909:4;24783:131;:::i;:::-;24775:139;;24502:419;;;:::o;24927:223::-;25067:34;25063:1;25055:6;25051:14;25044:58;25136:6;25131:2;25123:6;25119:15;25112:31;24927:223;:::o;25156:366::-;25298:3;25319:67;25383:2;25378:3;25319:67;:::i;:::-;25312:74;;25395:93;25484:3;25395:93;:::i;:::-;25513:2;25508:3;25504:12;25497:19;;25156:366;;;:::o;25528:419::-;25694:4;25732:2;25721:9;25717:18;25709:26;;25781:9;25775:4;25771:20;25767:1;25756:9;25752:17;25745:47;25809:131;25935:4;25809:131;:::i;:::-;25801:139;;25528:419;;;:::o;25953:180::-;26001:77;25998:1;25991:88;26098:4;26095:1;26088:15;26122:4;26119:1;26112:15;26139:191;26179:4;26199:20;26217:1;26199:20;:::i;:::-;26194:25;;26233:20;26251:1;26233:20;:::i;:::-;26228:25;;26272:1;26269;26266:8;26263:34;;;26277:18;;:::i;:::-;26263:34;26322:1;26319;26315:9;26307:17;;26139:191;;;;:::o;26336:305::-;26376:3;26395:20;26413:1;26395:20;:::i;:::-;26390:25;;26429:20;26447:1;26429:20;:::i;:::-;26424:25;;26583:1;26515:66;26511:74;26508:1;26505:81;26502:107;;;26589:18;;:::i;:::-;26502:107;26633:1;26630;26626:9;26619:16;;26336:305;;;;:::o;26647:175::-;26787:27;26783:1;26775:6;26771:14;26764:51;26647:175;:::o;26828:366::-;26970:3;26991:67;27055:2;27050:3;26991:67;:::i;:::-;26984:74;;27067:93;27156:3;27067:93;:::i;:::-;27185:2;27180:3;27176:12;27169:19;;26828:366;;;:::o;27200:419::-;27366:4;27404:2;27393:9;27389:18;27381:26;;27453:9;27447:4;27443:20;27439:1;27428:9;27424:17;27417:47;27481:131;27607:4;27481:131;:::i;:::-;27473:139;;27200:419;;;:::o;27625:237::-;27765:34;27761:1;27753:6;27749:14;27742:58;27834:20;27829:2;27821:6;27817:15;27810:45;27625:237;:::o;27868:366::-;28010:3;28031:67;28095:2;28090:3;28031:67;:::i;:::-;28024:74;;28107:93;28196:3;28107:93;:::i;:::-;28225:2;28220:3;28216:12;28209:19;;27868:366;;;:::o;28240:419::-;28406:4;28444:2;28433:9;28429:18;28421:26;;28493:9;28487:4;28483:20;28479:1;28468:9;28464:17;28457:47;28521:131;28647:4;28521:131;:::i;:::-;28513:139;;28240:419;;;:::o;28665:233::-;28704:3;28727:24;28745:5;28727:24;:::i;:::-;28718:33;;28773:66;28766:5;28763:77;28760:103;;;28843:18;;:::i;:::-;28760:103;28890:1;28883:5;28879:13;28872:20;;28665:233;;;:::o;28904:180::-;28952:77;28949:1;28942:88;29049:4;29046:1;29039:15;29073:4;29070:1;29063:15;29090:185;29130:1;29147:20;29165:1;29147:20;:::i;:::-;29142:25;;29181:20;29199:1;29181:20;:::i;:::-;29176:25;;29220:1;29210:35;;29225:18;;:::i;:::-;29210:35;29267:1;29264;29260:9;29255:14;;29090:185;;;;:::o;29281:176::-;29313:1;29330:20;29348:1;29330:20;:::i;:::-;29325:25;;29364:20;29382:1;29364:20;:::i;:::-;29359:25;;29403:1;29393:35;;29408:18;;:::i;:::-;29393:35;29449:1;29446;29442:9;29437:14;;29281:176;;;;:::o;29463:180::-;29511:77;29508:1;29501:88;29608:4;29605:1;29598:15;29632:4;29629:1;29622:15;29649:98;29700:6;29734:5;29728:12;29718:22;;29649:98;;;:::o;29753:168::-;29836:11;29870:6;29865:3;29858:19;29910:4;29905:3;29901:14;29886:29;;29753:168;;;;:::o;29927:360::-;30013:3;30041:38;30073:5;30041:38;:::i;:::-;30095:70;30158:6;30153:3;30095:70;:::i;:::-;30088:77;;30174:52;30219:6;30214:3;30207:4;30200:5;30196:16;30174:52;:::i;:::-;30251:29;30273:6;30251:29;:::i;:::-;30246:3;30242:39;30235:46;;30017:270;29927:360;;;;:::o;30293:640::-;30488:4;30526:3;30515:9;30511:19;30503:27;;30540:71;30608:1;30597:9;30593:17;30584:6;30540:71;:::i;:::-;30621:72;30689:2;30678:9;30674:18;30665:6;30621:72;:::i;:::-;30703;30771:2;30760:9;30756:18;30747:6;30703:72;:::i;:::-;30822:9;30816:4;30812:20;30807:2;30796:9;30792:18;30785:48;30850:76;30921:4;30912:6;30850:76;:::i;:::-;30842:84;;30293:640;;;;;;;:::o;30939:141::-;30995:5;31026:6;31020:13;31011:22;;31042:32;31068:5;31042:32;:::i;:::-;30939:141;;;;:::o;31086:349::-;31155:6;31204:2;31192:9;31183:7;31179:23;31175:32;31172:119;;;31210:79;;:::i;:::-;31172:119;31330:1;31355:63;31410:7;31401:6;31390:9;31386:22;31355:63;:::i;:::-;31345:73;;31301:127;31086:349;;;;:::o;31441:182::-;31581:34;31577:1;31569:6;31565:14;31558:58;31441:182;:::o;31629:366::-;31771:3;31792:67;31856:2;31851:3;31792:67;:::i;:::-;31785:74;;31868:93;31957:3;31868:93;:::i;:::-;31986:2;31981:3;31977:12;31970:19;;31629:366;;;:::o;32001:419::-;32167:4;32205:2;32194:9;32190:18;32182:26;;32254:9;32248:4;32244:20;32240:1;32229:9;32225:17;32218:47;32282:131;32408:4;32282:131;:::i;:::-;32274:139;;32001:419;;;:::o;32426:178::-;32566:30;32562:1;32554:6;32550:14;32543:54;32426:178;:::o;32610:366::-;32752:3;32773:67;32837:2;32832:3;32773:67;:::i;:::-;32766:74;;32849:93;32938:3;32849:93;:::i;:::-;32967:2;32962:3;32958:12;32951:19;;32610:366;;;:::o;32982:419::-;33148:4;33186:2;33175:9;33171:18;33163:26;;33235:9;33229:4;33225:20;33221:1;33210:9;33206:17;33199:47;33263:131;33389:4;33263:131;:::i;:::-;33255:139;;32982:419;;;:::o

Swarm Source

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