ETH Price: $3,117.96 (+1.01%)
Gas: 3 Gwei

Token

NewElite (ELITE)
 

Overview

Max Total Supply

55 ELITE

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ELITE
0xfccba679d3c8aaf521fbc69aedba9666174a7584
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:
NewElite

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-19
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 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 {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/NewElite.sol


pragma solidity ^0.8.2;




contract NewElite is ERC721, ERC721Enumerable, Ownable {
    // Private 
    string private baseURI;
    
    // Sale status
    bool public vipMintIsActive = false;
    bool public publicMintIsActive = false;
    
    // Constants 
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant MAX_PER_TXN = 10;
    uint256 public constant TOKEN_PRICE = 0.1 ether;
    
    // Maps address to number of remaining vip mints
    mapping(address => uint8) private vipList;
    
    // Reserved for team, giveaways, and promotions
    uint256 public reserveSupply = 100; 

    constructor() ERC721("NewElite", "ELITE") {}
    
    function publicMint(uint256 _amount) external payable {
        uint256 supply = totalSupply();
        
        require(publicMintIsActive, "Elite: Public Mint is not active");
        require(supply + _amount + reserveSupply <= MAX_SUPPLY, "Elite: Max token supply exceeded");
        require(TOKEN_PRICE * _amount <= msg.value, "Elite: Ether value sent is not correct");
        require(_amount <= MAX_PER_TXN, "Elite: Exceeded max mint per txn");
        
        for (uint256 i = 0; i < _amount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function vipPresaleMint(uint8 _amount) external payable {
        uint256 supply = totalSupply();
        require(vipMintIsActive,  "Elite: Vip Mint is not active");
        require(_amount <= vipList[msg.sender], "Elite: Exceeded your max vip mint");
        require(supply + _amount + reserveSupply <= MAX_SUPPLY, "Elite: Max token supply exceeded");
        require(TOKEN_PRICE * _amount <= msg.value, "Elite: Ether value sent is not correct");
        
        vipList[msg.sender] -= _amount; 
        for (uint256 i = 0; i < _amount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function numAvailableToMint(address addr) external view returns (uint8) {
        return vipList[addr];
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    
    // onlyOwner 
    function setVipList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            vipList[addresses[i]] = numAllowedToMint;
        }
    }
    
    function reserve(uint256 n) public onlyOwner {
      uint supply = totalSupply();
      require(supply + n + reserveSupply <= MAX_SUPPLY, "Elite: Max token supply exceeded");
      require(n <= reserveSupply, "Elite: Reserve supply exceeded");
      
      reserveSupply -= n; 
      for (uint256 i = 0; i < n; i++) {
          _safeMint(msg.sender, supply + i);
      }
    }
    
    function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
        baseURI = _tokenBaseURI;
    }
    
    function setVipMintIsActive(bool _vipMintIsActive) external onlyOwner {
        vipMintIsActive = _vipMintIsActive;
    }
    
    function setPublicMintIsActive(bool _publicMintIsActive) external onlyOwner {
        publicMintIsActive = _publicMintIsActive;
    }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    
    
    // Override
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

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":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintIsActive","type":"bool"}],"name":"setPublicMintIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setVipList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_vipMintIsActive","type":"bool"}],"name":"setVipMintIsActive","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vipMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"vipPresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600c805461ffff191690556064600e553480156200002157600080fd5b5060408051808201825260088152674e6577456c69746560c01b602080830191825283518085019094526005845264454c49544560d81b9084015281519192916200006f91600091620000fe565b50805162000085906001906020840190620000fe565b505050620000a26200009c620000a860201b60201c565b620000ac565b620001e1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010c90620001a4565b90600052602060002090601f0160209004810192826200013057600085556200017b565b82601f106200014b57805160ff19168380011785556200017b565b828001600101855582156200017b579182015b828111156200017b5782518255916020019190600101906200015e565b50620001899291506200018d565b5090565b5b808211156200018957600081556001016200018e565b600181811c90821680620001b957607f821691505b60208210811415620001db57634e487b7160e01b600052602260045260246000fd5b50919050565b61258180620001f16000396000f3fe6080604052600436106101f95760003560e01c80636c9b98dd1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105a0578063d2d8cb67146105c0578063d9a7c2bf146105dc578063e985e9c5146105f6578063f2fde38b1461063f57600080fd5b8063a22cb465146104f5578063afc020dc14610515578063b88d4fde14610535578063c04a28361461055557600080fd5b8063819b25ba116100dc578063819b25ba146104835780638da5cb5b146104a357806395527a12146104c157806395d89b41146104e057600080fd5b80636c9b98dd1461040e57806370a082311461042e578063715018a61461044e57806373749fbd1461046357600080fd5b80632f745c591161019057806342ff74101161015f57806342ff7410146103865780634f6ccce71461039957806351b96d92146103b957806355f804b3146103ce5780636352211e146103ee57600080fd5b80632f745c591461031b57806332cb6b0c1461033b5780633ccfd60b1461035157806342842e0e1461036657600080fd5b8063095ea7b3116101cc578063095ea7b3146102b157806318160ddd146102d357806323b872dd146102e85780632db115441461030857600080fd5b806301ffc9a7146101fe57806303d41eb61461023357806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e610219366004611e4e565b61065f565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610249600e5481565b60405190815260200161022a565b34801561026357600080fd5b5061026c610670565b60405161022a9190611ec3565b34801561028557600080fd5b50610299610294366004611ed6565b610702565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102d16102cc366004611f0b565b61079c565b005b3480156102df57600080fd5b50600854610249565b3480156102f457600080fd5b506102d1610303366004611f35565b6108b2565b6102d1610316366004611ed6565b6108e3565b34801561032757600080fd5b50610249610336366004611f0b565b610a33565b34801561034757600080fd5b5061024961271081565b34801561035d57600080fd5b506102d1610ac9565b34801561037257600080fd5b506102d1610381366004611f35565b610b26565b6102d1610394366004611f82565b610b41565b3480156103a557600080fd5b506102496103b4366004611ed6565b610ce9565b3480156103c557600080fd5b50610249600a81565b3480156103da57600080fd5b506102d16103e9366004611f9d565b610d7c565b3480156103fa57600080fd5b50610299610409366004611ed6565b610db2565b34801561041a57600080fd5b506102d161042936600461200f565b610e29565b34801561043a57600080fd5b50610249610449366004612093565b610ecd565b34801561045a57600080fd5b506102d1610f54565b34801561046f57600080fd5b506102d161047e3660046120be565b610f8a565b34801561048f57600080fd5b506102d161049e366004611ed6565b610fce565b3480156104af57600080fd5b50600a546001600160a01b0316610299565b3480156104cd57600080fd5b50600c5461021e90610100900460ff1681565b3480156104ec57600080fd5b5061026c6110d4565b34801561050157600080fd5b506102d16105103660046120d9565b6110e3565b34801561052157600080fd5b506102d16105303660046120be565b6111a8565b34801561054157600080fd5b506102d1610550366004612122565b6111e5565b34801561056157600080fd5b5061058e610570366004612093565b6001600160a01b03166000908152600d602052604090205460ff1690565b60405160ff909116815260200161022a565b3480156105ac57600080fd5b5061026c6105bb366004611ed6565b611217565b3480156105cc57600080fd5b5061024967016345785d8a000081565b3480156105e857600080fd5b50600c5461021e9060ff1681565b34801561060257600080fd5b5061021e6106113660046121fe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064b57600080fd5b506102d161065a366004612093565b6112f2565b600061066a8261138d565b92915050565b60606000805461067f90612228565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90612228565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a782610db2565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610777565b336001600160a01b038216148061083157506108318133610611565b6108a35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610777565b6108ad83836113b2565b505050565b6108bc3382611420565b6108d85760405162461bcd60e51b815260040161077790612263565b6108ad838383611517565b60006108ee60085490565b600c54909150610100900460ff166109485760405162461bcd60e51b815260206004820181905260248201527f456c6974653a205075626c6963204d696e74206973206e6f74206163746976656044820152606401610777565b600e546127109061095984846122ca565b61096391906122ca565b11156109815760405162461bcd60e51b8152600401610777906122e2565b346109948367016345785d8a0000612317565b11156109b25760405162461bcd60e51b815260040161077790612336565b600a821115610a035760405162461bcd60e51b815260206004820181905260248201527f456c6974653a204578636565646564206d6178206d696e74207065722074786e6044820152606401610777565b60005b828110156108ad57610a2133610a1c83856122ca565b6116c2565b80610a2b8161237c565b915050610a06565b6000610a3e83610ecd565b8210610aa05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610777565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610af35760405162461bcd60e51b815260040161077790612397565b6040514790339082156108fc029083906000818181858888f19350505050158015610b22573d6000803e3d6000fd5b5050565b6108ad838383604051806020016040528060008152506111e5565b6000610b4c60085490565b600c5490915060ff16610ba15760405162461bcd60e51b815260206004820152601d60248201527f456c6974653a20566970204d696e74206973206e6f74206163746976650000006044820152606401610777565b336000908152600d602052604090205460ff9081169083161115610c115760405162461bcd60e51b815260206004820152602160248201527f456c6974653a20457863656564656420796f7572206d617820766970206d696e6044820152601d60fa1b6064820152608401610777565b600e5461271090610c2560ff8516846122ca565b610c2f91906122ca565b1115610c4d5760405162461bcd60e51b8152600401610777906122e2565b34610c6360ff841667016345785d8a0000612317565b1115610c815760405162461bcd60e51b815260040161077790612336565b336000908152600d602052604081208054849290610ca390849060ff166123cc565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156108ad57610cd733610a1c83856122ca565b80610ce18161237c565b915050610cbe565b6000610cf460085490565b8210610d575760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610777565b60088281548110610d6a57610d6a6123ef565b90600052602060002001549050919050565b600a546001600160a01b03163314610da65760405162461bcd60e51b815260040161077790612397565b6108ad600b8383611d9f565b6000818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610777565b600a546001600160a01b03163314610e535760405162461bcd60e51b815260040161077790612397565b60005b82811015610ec75781600d6000868685818110610e7557610e756123ef565b9050602002016020810190610e8a9190612093565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610ebf8161237c565b915050610e56565b50505050565b60006001600160a01b038216610f385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610777565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161077790612397565b610f8860006116dc565b565b600a546001600160a01b03163314610fb45760405162461bcd60e51b815260040161077790612397565b600c80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610ff85760405162461bcd60e51b815260040161077790612397565b600061100360085490565b9050612710600e54838361101791906122ca565b61102191906122ca565b111561103f5760405162461bcd60e51b8152600401610777906122e2565b600e548211156110915760405162461bcd60e51b815260206004820152601e60248201527f456c6974653a205265736572766520737570706c7920657863656564656400006044820152606401610777565b81600e60008282546110a39190612405565b90915550600090505b828110156108ad576110c233610a1c83856122ca565b806110cc8161237c565b9150506110ac565b60606001805461067f90612228565b6001600160a01b03821633141561113c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610777565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111d25760405162461bcd60e51b815260040161077790612397565b600c805460ff1916911515919091179055565b6111ef3383611420565b61120b5760405162461bcd60e51b815260040161077790612263565b610ec78484848461172e565b6000818152600260205260409020546060906001600160a01b03166112965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b60006112a0611761565b905060008151116112c057604051806020016040528060008152506112eb565b806112ca84611770565b6040516020016112db92919061241c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461131c5760405162461bcd60e51b815260040161077790612397565b6001600160a01b0381166113815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61138a816116dc565b50565b60006001600160e01b0319821663780e9d6360e01b148061066a575061066a8261186e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113e782610db2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610777565b60006114a483610db2565b9050806001600160a01b0316846001600160a01b031614806114df5750836001600160a01b03166114d484610702565b6001600160a01b0316145b8061150f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661152a82610db2565b6001600160a01b0316146115925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610777565b6001600160a01b0382166115f45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610777565b6115ff8383836118be565b61160a6000826113b2565b6001600160a01b0383166000908152600360205260408120805460019290611633908490612405565b90915550506001600160a01b03821660009081526003602052604081208054600192906116619084906122ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b228282604051806020016040528060008152506118c9565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611739848484611517565b611745848484846118fc565b610ec75760405162461bcd60e51b81526004016107779061244b565b6060600b805461067f90612228565b6060816117945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117be57806117a88161237c565b91506117b79050600a836124b3565b9150611798565b60008167ffffffffffffffff8111156117d9576117d961210c565b6040519080825280601f01601f191660200182016040528015611803576020820181803683370190505b5090505b841561150f57611818600183612405565b9150611825600a866124c7565b6118309060306122ca565b60f81b818381518110611845576118456123ef565b60200101906001600160f81b031916908160001a905350611867600a866124b3565b9450611807565b60006001600160e01b031982166380ac58cd60e01b148061189f57506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b6108ad838383611a09565b6118d38383611ac1565b6118e060008484846118fc565b6108ad5760405162461bcd60e51b81526004016107779061244b565b60006001600160a01b0384163b156119fe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119409033908990889088906004016124db565b602060405180830381600087803b15801561195a57600080fd5b505af192505050801561198a575060408051601f3d908101601f1916820190925261198791810190612518565b60015b6119e4573d8080156119b8576040519150601f19603f3d011682016040523d82523d6000602084013e6119bd565b606091505b5080516119dc5760405162461bcd60e51b81526004016107779061244b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150f565b506001949350505050565b6001600160a01b038316611a6457611a5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a87565b816001600160a01b0316836001600160a01b031614611a8757611a878382611c0f565b6001600160a01b038216611a9e576108ad81611cac565b826001600160a01b0316826001600160a01b0316146108ad576108ad8282611d5b565b6001600160a01b038216611b175760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610777565b6000818152600260205260409020546001600160a01b031615611b7c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610777565b611b88600083836118be565b6001600160a01b0382166000908152600360205260408120805460019290611bb19084906122ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c1c84610ecd565b611c269190612405565b600083815260076020526040902054909150808214611c79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cbe90600190612405565b60008381526009602052604081205460088054939450909284908110611ce657611ce66123ef565b906000526020600020015490508060088381548110611d0757611d076123ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d3f57611d3f612535565b6001900381819060005260206000200160009055905550505050565b6000611d6683610ecd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611dab90612228565b90600052602060002090601f016020900481019282611dcd5760008555611e13565b82601f10611de65782800160ff19823516178555611e13565b82800160010185558215611e13579182015b82811115611e13578235825591602001919060010190611df8565b50611e1f929150611e23565b5090565b5b80821115611e1f5760008155600101611e24565b6001600160e01b03198116811461138a57600080fd5b600060208284031215611e6057600080fd5b81356112eb81611e38565b60005b83811015611e86578181015183820152602001611e6e565b83811115610ec75750506000910152565b60008151808452611eaf816020860160208601611e6b565b601f01601f19169290920160200192915050565b6020815260006112eb6020830184611e97565b600060208284031215611ee857600080fd5b5035919050565b80356001600160a01b0381168114611f0657600080fd5b919050565b60008060408385031215611f1e57600080fd5b611f2783611eef565b946020939093013593505050565b600080600060608486031215611f4a57600080fd5b611f5384611eef565b9250611f6160208501611eef565b9150604084013590509250925092565b803560ff81168114611f0657600080fd5b600060208284031215611f9457600080fd5b6112eb82611f71565b60008060208385031215611fb057600080fd5b823567ffffffffffffffff80821115611fc857600080fd5b818501915085601f830112611fdc57600080fd5b813581811115611feb57600080fd5b866020828501011115611ffd57600080fd5b60209290920196919550909350505050565b60008060006040848603121561202457600080fd5b833567ffffffffffffffff8082111561203c57600080fd5b818601915086601f83011261205057600080fd5b81358181111561205f57600080fd5b8760208260051b850101111561207457600080fd5b60209283019550935061208a9186019050611f71565b90509250925092565b6000602082840312156120a557600080fd5b6112eb82611eef565b80358015158114611f0657600080fd5b6000602082840312156120d057600080fd5b6112eb826120ae565b600080604083850312156120ec57600080fd5b6120f583611eef565b9150612103602084016120ae565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561213857600080fd5b61214185611eef565b935061214f60208601611eef565b925060408501359150606085013567ffffffffffffffff8082111561217357600080fd5b818701915087601f83011261218757600080fd5b8135818111156121995761219961210c565b604051601f8201601f19908116603f011681019083821181831017156121c1576121c161210c565b816040528281528a60208487010111156121da57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561221157600080fd5b61221a83611eef565b915061210360208401611eef565b600181811c9082168061223c57607f821691505b6020821081141561225d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122dd576122dd6122b4565b500190565b6020808252818101527f456c6974653a204d617820746f6b656e20737570706c79206578636565646564604082015260600190565b6000816000190483118215151615612331576123316122b4565b500290565b60208082526026908201527f456c6974653a2045746865722076616c75652073656e74206973206e6f7420636040820152651bdc9c9958dd60d21b606082015260800190565b6000600019821415612390576123906122b4565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060ff821660ff8416808210156123e6576123e66122b4565b90039392505050565b634e487b7160e01b600052603260045260246000fd5b600082821015612417576124176122b4565b500390565b6000835161242e818460208801611e6b565b835190830190612442818360208801611e6b565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124c2576124c261249d565b500490565b6000826124d6576124d661249d565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250e90830184611e97565b9695505050505050565b60006020828403121561252a57600080fd5b81516112eb81611e38565b634e487b7160e01b600052603160045260246000fdfea264697066735822122085f0ba9b0cfa50195020f44fa143793e5f07d57e73489bd181a41acefb06771164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c9b98dd1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105a0578063d2d8cb67146105c0578063d9a7c2bf146105dc578063e985e9c5146105f6578063f2fde38b1461063f57600080fd5b8063a22cb465146104f5578063afc020dc14610515578063b88d4fde14610535578063c04a28361461055557600080fd5b8063819b25ba116100dc578063819b25ba146104835780638da5cb5b146104a357806395527a12146104c157806395d89b41146104e057600080fd5b80636c9b98dd1461040e57806370a082311461042e578063715018a61461044e57806373749fbd1461046357600080fd5b80632f745c591161019057806342ff74101161015f57806342ff7410146103865780634f6ccce71461039957806351b96d92146103b957806355f804b3146103ce5780636352211e146103ee57600080fd5b80632f745c591461031b57806332cb6b0c1461033b5780633ccfd60b1461035157806342842e0e1461036657600080fd5b8063095ea7b3116101cc578063095ea7b3146102b157806318160ddd146102d357806323b872dd146102e85780632db115441461030857600080fd5b806301ffc9a7146101fe57806303d41eb61461023357806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b5061021e610219366004611e4e565b61065f565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610249600e5481565b60405190815260200161022a565b34801561026357600080fd5b5061026c610670565b60405161022a9190611ec3565b34801561028557600080fd5b50610299610294366004611ed6565b610702565b6040516001600160a01b03909116815260200161022a565b3480156102bd57600080fd5b506102d16102cc366004611f0b565b61079c565b005b3480156102df57600080fd5b50600854610249565b3480156102f457600080fd5b506102d1610303366004611f35565b6108b2565b6102d1610316366004611ed6565b6108e3565b34801561032757600080fd5b50610249610336366004611f0b565b610a33565b34801561034757600080fd5b5061024961271081565b34801561035d57600080fd5b506102d1610ac9565b34801561037257600080fd5b506102d1610381366004611f35565b610b26565b6102d1610394366004611f82565b610b41565b3480156103a557600080fd5b506102496103b4366004611ed6565b610ce9565b3480156103c557600080fd5b50610249600a81565b3480156103da57600080fd5b506102d16103e9366004611f9d565b610d7c565b3480156103fa57600080fd5b50610299610409366004611ed6565b610db2565b34801561041a57600080fd5b506102d161042936600461200f565b610e29565b34801561043a57600080fd5b50610249610449366004612093565b610ecd565b34801561045a57600080fd5b506102d1610f54565b34801561046f57600080fd5b506102d161047e3660046120be565b610f8a565b34801561048f57600080fd5b506102d161049e366004611ed6565b610fce565b3480156104af57600080fd5b50600a546001600160a01b0316610299565b3480156104cd57600080fd5b50600c5461021e90610100900460ff1681565b3480156104ec57600080fd5b5061026c6110d4565b34801561050157600080fd5b506102d16105103660046120d9565b6110e3565b34801561052157600080fd5b506102d16105303660046120be565b6111a8565b34801561054157600080fd5b506102d1610550366004612122565b6111e5565b34801561056157600080fd5b5061058e610570366004612093565b6001600160a01b03166000908152600d602052604090205460ff1690565b60405160ff909116815260200161022a565b3480156105ac57600080fd5b5061026c6105bb366004611ed6565b611217565b3480156105cc57600080fd5b5061024967016345785d8a000081565b3480156105e857600080fd5b50600c5461021e9060ff1681565b34801561060257600080fd5b5061021e6106113660046121fe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064b57600080fd5b506102d161065a366004612093565b6112f2565b600061066a8261138d565b92915050565b60606000805461067f90612228565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90612228565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a782610db2565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610777565b336001600160a01b038216148061083157506108318133610611565b6108a35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610777565b6108ad83836113b2565b505050565b6108bc3382611420565b6108d85760405162461bcd60e51b815260040161077790612263565b6108ad838383611517565b60006108ee60085490565b600c54909150610100900460ff166109485760405162461bcd60e51b815260206004820181905260248201527f456c6974653a205075626c6963204d696e74206973206e6f74206163746976656044820152606401610777565b600e546127109061095984846122ca565b61096391906122ca565b11156109815760405162461bcd60e51b8152600401610777906122e2565b346109948367016345785d8a0000612317565b11156109b25760405162461bcd60e51b815260040161077790612336565b600a821115610a035760405162461bcd60e51b815260206004820181905260248201527f456c6974653a204578636565646564206d6178206d696e74207065722074786e6044820152606401610777565b60005b828110156108ad57610a2133610a1c83856122ca565b6116c2565b80610a2b8161237c565b915050610a06565b6000610a3e83610ecd565b8210610aa05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610777565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610af35760405162461bcd60e51b815260040161077790612397565b6040514790339082156108fc029083906000818181858888f19350505050158015610b22573d6000803e3d6000fd5b5050565b6108ad838383604051806020016040528060008152506111e5565b6000610b4c60085490565b600c5490915060ff16610ba15760405162461bcd60e51b815260206004820152601d60248201527f456c6974653a20566970204d696e74206973206e6f74206163746976650000006044820152606401610777565b336000908152600d602052604090205460ff9081169083161115610c115760405162461bcd60e51b815260206004820152602160248201527f456c6974653a20457863656564656420796f7572206d617820766970206d696e6044820152601d60fa1b6064820152608401610777565b600e5461271090610c2560ff8516846122ca565b610c2f91906122ca565b1115610c4d5760405162461bcd60e51b8152600401610777906122e2565b34610c6360ff841667016345785d8a0000612317565b1115610c815760405162461bcd60e51b815260040161077790612336565b336000908152600d602052604081208054849290610ca390849060ff166123cc565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156108ad57610cd733610a1c83856122ca565b80610ce18161237c565b915050610cbe565b6000610cf460085490565b8210610d575760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610777565b60088281548110610d6a57610d6a6123ef565b90600052602060002001549050919050565b600a546001600160a01b03163314610da65760405162461bcd60e51b815260040161077790612397565b6108ad600b8383611d9f565b6000818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610777565b600a546001600160a01b03163314610e535760405162461bcd60e51b815260040161077790612397565b60005b82811015610ec75781600d6000868685818110610e7557610e756123ef565b9050602002016020810190610e8a9190612093565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610ebf8161237c565b915050610e56565b50505050565b60006001600160a01b038216610f385760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610777565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f7e5760405162461bcd60e51b815260040161077790612397565b610f8860006116dc565b565b600a546001600160a01b03163314610fb45760405162461bcd60e51b815260040161077790612397565b600c80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610ff85760405162461bcd60e51b815260040161077790612397565b600061100360085490565b9050612710600e54838361101791906122ca565b61102191906122ca565b111561103f5760405162461bcd60e51b8152600401610777906122e2565b600e548211156110915760405162461bcd60e51b815260206004820152601e60248201527f456c6974653a205265736572766520737570706c7920657863656564656400006044820152606401610777565b81600e60008282546110a39190612405565b90915550600090505b828110156108ad576110c233610a1c83856122ca565b806110cc8161237c565b9150506110ac565b60606001805461067f90612228565b6001600160a01b03821633141561113c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610777565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111d25760405162461bcd60e51b815260040161077790612397565b600c805460ff1916911515919091179055565b6111ef3383611420565b61120b5760405162461bcd60e51b815260040161077790612263565b610ec78484848461172e565b6000818152600260205260409020546060906001600160a01b03166112965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b60006112a0611761565b905060008151116112c057604051806020016040528060008152506112eb565b806112ca84611770565b6040516020016112db92919061241c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461131c5760405162461bcd60e51b815260040161077790612397565b6001600160a01b0381166113815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b61138a816116dc565b50565b60006001600160e01b0319821663780e9d6360e01b148061066a575061066a8261186e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113e782610db2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610777565b60006114a483610db2565b9050806001600160a01b0316846001600160a01b031614806114df5750836001600160a01b03166114d484610702565b6001600160a01b0316145b8061150f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661152a82610db2565b6001600160a01b0316146115925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610777565b6001600160a01b0382166115f45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610777565b6115ff8383836118be565b61160a6000826113b2565b6001600160a01b0383166000908152600360205260408120805460019290611633908490612405565b90915550506001600160a01b03821660009081526003602052604081208054600192906116619084906122ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b228282604051806020016040528060008152506118c9565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611739848484611517565b611745848484846118fc565b610ec75760405162461bcd60e51b81526004016107779061244b565b6060600b805461067f90612228565b6060816117945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117be57806117a88161237c565b91506117b79050600a836124b3565b9150611798565b60008167ffffffffffffffff8111156117d9576117d961210c565b6040519080825280601f01601f191660200182016040528015611803576020820181803683370190505b5090505b841561150f57611818600183612405565b9150611825600a866124c7565b6118309060306122ca565b60f81b818381518110611845576118456123ef565b60200101906001600160f81b031916908160001a905350611867600a866124b3565b9450611807565b60006001600160e01b031982166380ac58cd60e01b148061189f57506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b6108ad838383611a09565b6118d38383611ac1565b6118e060008484846118fc565b6108ad5760405162461bcd60e51b81526004016107779061244b565b60006001600160a01b0384163b156119fe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119409033908990889088906004016124db565b602060405180830381600087803b15801561195a57600080fd5b505af192505050801561198a575060408051601f3d908101601f1916820190925261198791810190612518565b60015b6119e4573d8080156119b8576040519150601f19603f3d011682016040523d82523d6000602084013e6119bd565b606091505b5080516119dc5760405162461bcd60e51b81526004016107779061244b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150f565b506001949350505050565b6001600160a01b038316611a6457611a5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a87565b816001600160a01b0316836001600160a01b031614611a8757611a878382611c0f565b6001600160a01b038216611a9e576108ad81611cac565b826001600160a01b0316826001600160a01b0316146108ad576108ad8282611d5b565b6001600160a01b038216611b175760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610777565b6000818152600260205260409020546001600160a01b031615611b7c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610777565b611b88600083836118be565b6001600160a01b0382166000908152600360205260408120805460019290611bb19084906122ca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c1c84610ecd565b611c269190612405565b600083815260076020526040902054909150808214611c79576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cbe90600190612405565b60008381526009602052604081205460088054939450909284908110611ce657611ce66123ef565b906000526020600020015490508060088381548110611d0757611d076123ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d3f57611d3f612535565b6001900381819060005260206000200160009055905550505050565b6000611d6683610ecd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611dab90612228565b90600052602060002090601f016020900481019282611dcd5760008555611e13565b82601f10611de65782800160ff19823516178555611e13565b82800160010185558215611e13579182015b82811115611e13578235825591602001919060010190611df8565b50611e1f929150611e23565b5090565b5b80821115611e1f5760008155600101611e24565b6001600160e01b03198116811461138a57600080fd5b600060208284031215611e6057600080fd5b81356112eb81611e38565b60005b83811015611e86578181015183820152602001611e6e565b83811115610ec75750506000910152565b60008151808452611eaf816020860160208601611e6b565b601f01601f19169290920160200192915050565b6020815260006112eb6020830184611e97565b600060208284031215611ee857600080fd5b5035919050565b80356001600160a01b0381168114611f0657600080fd5b919050565b60008060408385031215611f1e57600080fd5b611f2783611eef565b946020939093013593505050565b600080600060608486031215611f4a57600080fd5b611f5384611eef565b9250611f6160208501611eef565b9150604084013590509250925092565b803560ff81168114611f0657600080fd5b600060208284031215611f9457600080fd5b6112eb82611f71565b60008060208385031215611fb057600080fd5b823567ffffffffffffffff80821115611fc857600080fd5b818501915085601f830112611fdc57600080fd5b813581811115611feb57600080fd5b866020828501011115611ffd57600080fd5b60209290920196919550909350505050565b60008060006040848603121561202457600080fd5b833567ffffffffffffffff8082111561203c57600080fd5b818601915086601f83011261205057600080fd5b81358181111561205f57600080fd5b8760208260051b850101111561207457600080fd5b60209283019550935061208a9186019050611f71565b90509250925092565b6000602082840312156120a557600080fd5b6112eb82611eef565b80358015158114611f0657600080fd5b6000602082840312156120d057600080fd5b6112eb826120ae565b600080604083850312156120ec57600080fd5b6120f583611eef565b9150612103602084016120ae565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561213857600080fd5b61214185611eef565b935061214f60208601611eef565b925060408501359150606085013567ffffffffffffffff8082111561217357600080fd5b818701915087601f83011261218757600080fd5b8135818111156121995761219961210c565b604051601f8201601f19908116603f011681019083821181831017156121c1576121c161210c565b816040528281528a60208487010111156121da57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561221157600080fd5b61221a83611eef565b915061210360208401611eef565b600181811c9082168061223c57607f821691505b6020821081141561225d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122dd576122dd6122b4565b500190565b6020808252818101527f456c6974653a204d617820746f6b656e20737570706c79206578636565646564604082015260600190565b6000816000190483118215151615612331576123316122b4565b500290565b60208082526026908201527f456c6974653a2045746865722076616c75652073656e74206973206e6f7420636040820152651bdc9c9958dd60d21b606082015260800190565b6000600019821415612390576123906122b4565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060ff821660ff8416808210156123e6576123e66122b4565b90039392505050565b634e487b7160e01b600052603260045260246000fd5b600082821015612417576124176122b4565b500390565b6000835161242e818460208801611e6b565b835190830190612442818360208801611e6b565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124c2576124c261249d565b500490565b6000826124d6576124d661249d565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250e90830184611e97565b9695505050505050565b60006020828403121561252a57600080fd5b81516112eb81611e38565b634e487b7160e01b600052603160045260246000fdfea264697066735822122085f0ba9b0cfa50195020f44fa143793e5f07d57e73489bd181a41acefb06771164736f6c63430008090033

Deployed Bytecode Sourcemap

43185:3725:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46736:171;;;;;;;;;;-1:-1:-1;46736:171:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;46736:171:0;;;;;;;;43748:34;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;43748:34:0;592:177:1;24859:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26418:221::-;;;;;;;;;;-1:-1:-1;26418:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;26418:221:0;1710:203:1;25941:411:0;;;;;;;;;;-1:-1:-1;25941:411:0;;;;;:::i;:::-;;:::i;:::-;;37607:113;;;;;;;;;;-1:-1:-1;37695:10:0;:17;37607:113;;27308:339;;;;;;;;;;-1:-1:-1;27308:339:0;;;;;:::i;:::-;;:::i;43848:581::-;;;;;;:::i;:::-;;:::i;37275:256::-;;;;;;;;;;-1:-1:-1;37275:256:0;;;;;:::i;:::-;;:::i;43431:42::-;;;;;;;;;;;;43468:5;43431:42;;46372:140;;;;;;;;;;;;;:::i;27718:185::-;;;;;;;;;;-1:-1:-1;27718:185:0;;;;;:::i;:::-;;:::i;44441:619::-;;;;;;:::i;:::-;;:::i;37797:233::-;;;;;;;;;;-1:-1:-1;37797:233:0;;;;;:::i;:::-;;:::i;43480:40::-;;;;;;;;;;;;43518:2;43480:40;;45966:112;;;;;;;;;;-1:-1:-1;45966:112:0;;;;;:::i;:::-;;:::i;24553:239::-;;;;;;;;;;-1:-1:-1;24553:239:0;;;;;:::i;:::-;;:::i;45332:225::-;;;;;;;;;;-1:-1:-1;45332:225:0;;;;;:::i;:::-;;:::i;24283:208::-;;;;;;;;;;-1:-1:-1;24283:208:0;;;;;:::i;:::-;;:::i;4558:94::-;;;;;;;;;;;;;:::i;46225:135::-;;;;;;;;;;-1:-1:-1;46225:135:0;;;;;:::i;:::-;;:::i;45569:385::-;;;;;;;;;;-1:-1:-1;45569:385:0;;;;;:::i;:::-;;:::i;3907:87::-;;;;;;;;;;-1:-1:-1;3980:6:0;;-1:-1:-1;;;;;3980:6:0;3907:87;;43361:38;;;;;;;;;;-1:-1:-1;43361:38:0;;;;;;;;;;;25028:104;;;;;;;;;;;;;:::i;26711:295::-;;;;;;;;;;-1:-1:-1;26711:295:0;;;;;:::i;:::-;;:::i;46090:123::-;;;;;;;;;;-1:-1:-1;46090:123:0;;;;;:::i;:::-;;:::i;27974:328::-;;;;;;;;;;-1:-1:-1;27974:328:0;;;;;:::i;:::-;;:::i;45072:111::-;;;;;;;;;;-1:-1:-1;45072:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;45162:13:0;45137:5;45162:13;;;:7;:13;;;;;;;;;45072:111;;;;6576:4:1;6564:17;;;6546:36;;6534:2;6519:18;45072:111:0;6404:184:1;25203:334:0;;;;;;;;;;-1:-1:-1;25203:334:0;;;;;:::i;:::-;;:::i;43527:47::-;;;;;;;;;;;;43565:9;43527:47;;43319:35;;;;;;;;;;-1:-1:-1;43319:35:0;;;;;;;;27077:164;;;;;;;;;;-1:-1:-1;27077:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27077:164;4807:192;;;;;;;;;;-1:-1:-1;4807:192:0;;;;;:::i;:::-;;:::i;46736:171::-;46839:4;46863:36;46887:11;46863:23;:36::i;:::-;46856:43;46736:171;-1:-1:-1;;46736:171:0:o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;26514:73;;;;-1:-1:-1;;;26514:73:0;;7445:2:1;26514:73:0;;;7427:21:1;7484:2;7464:18;;;7457:30;7523:34;7503:18;;;7496:62;-1:-1:-1;;;7574:18:1;;;7567:42;7626:19;;26514:73:0;;;;;;;;;-1:-1:-1;26607:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26607:24:0;;26418:221::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;-1:-1:-1;;;;;26080:11:0;:2;-1:-1:-1;;;;;26080:11:0;;;26072:57;;;;-1:-1:-1;;;26072:57:0;;7858:2:1;26072:57:0;;;7840:21:1;7897:2;7877:18;;;7870:30;7936:34;7916:18;;;7909:62;-1:-1:-1;;;7987:18:1;;;7980:31;8028:19;;26072:57:0;7656:397:1;26072:57:0;2775:10;-1:-1:-1;;;;;26164:21:0;;;;:62;;-1:-1:-1;26189:37:0;26206:5;2775:10;27077:164;:::i;26189:37::-;26142:168;;;;-1:-1:-1;;;26142:168:0;;8260:2:1;26142:168:0;;;8242:21:1;8299:2;8279:18;;;8272:30;8338:34;8318:18;;;8311:62;8409:26;8389:18;;;8382:54;8453:19;;26142:168:0;8058:420:1;26142:168:0;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;27308:339::-;27503:41;2775:10;27536:7;27503:18;:41::i;:::-;27495:103;;;;-1:-1:-1;;;27495:103:0;;;;;;;:::i;:::-;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;43848:581::-;43913:14;43930:13;37695:10;:17;;37607:113;43930:13;43972:18;;43913:30;;-1:-1:-1;43972:18:0;;;;;43964:63;;;;-1:-1:-1;;;43964:63:0;;9103:2:1;43964:63:0;;;9085:21:1;;;9122:18;;;9115:30;9181:34;9161:18;;;9154:62;9233:18;;43964:63:0;8901:356:1;43964:63:0;44065:13;;43468:5;;44046:16;44055:7;44046:6;:16;:::i;:::-;:32;;;;:::i;:::-;:46;;44038:91;;;;-1:-1:-1;;;44038:91:0;;;;;;;:::i;:::-;44173:9;44148:21;44162:7;43565:9;44148:21;:::i;:::-;:34;;44140:85;;;;-1:-1:-1;;;44140:85:0;;;;;;;:::i;:::-;43518:2;44244:7;:22;;44236:67;;;;-1:-1:-1;;;44236:67:0;;10670:2:1;44236:67:0;;;10652:21:1;;;10689:18;;;10682:30;10748:34;10728:18;;;10721:62;10800:18;;44236:67:0;10468:356:1;44236:67:0;44329:9;44324:98;44348:7;44344:1;:11;44324:98;;;44377:33;44387:10;44399;44408:1;44399:6;:10;:::i;:::-;44377:9;:33::i;:::-;44357:3;;;;:::i;:::-;;;;44324:98;;37275:256;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;-1:-1:-1;;;37392:87:0;;11171:2:1;37392:87:0;;;11153:21:1;11210:2;11190:18;;;11183:30;11249:34;11229:18;;;11222:62;-1:-1:-1;;;11300:18:1;;;11293:41;11351:19;;37392:87:0;10969:407:1;37392:87:0;-1:-1:-1;;;;;;37497:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37275:256::o;46372:140::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46467:37:::1;::::0;46435:21:::1;::::0;46475:10:::1;::::0;46467:37;::::1;;;::::0;46435:21;;46420:12:::1;46467:37:::0;46420:12;46467:37;46435:21;46475:10;46467:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46409:103;46372:140::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;44441:619::-;44508:14;44525:13;37695:10;:17;;37607:113;44525:13;44557:15;;44508:30;;-1:-1:-1;44557:15:0;;44549:58;;;;-1:-1:-1;;;44549:58:0;;11944:2:1;44549:58:0;;;11926:21:1;11983:2;11963:18;;;11956:30;12022:31;12002:18;;;11995:59;12071:18;;44549:58:0;11742:353:1;44549:58:0;44645:10;44637:19;;;;:7;:19;;;;;;;;;;44626:30;;;;;44618:76;;;;-1:-1:-1;;;44618:76:0;;12302:2:1;44618:76:0;;;12284:21:1;12341:2;12321:18;;;12314:30;12380:34;12360:18;;;12353:62;-1:-1:-1;;;12431:18:1;;;12424:31;12472:19;;44618:76:0;12100:397:1;44618:76:0;44732:13;;43468:5;;44713:16;;;;:6;:16;:::i;:::-;:32;;;;:::i;:::-;:46;;44705:91;;;;-1:-1:-1;;;44705:91:0;;;;;;;:::i;:::-;44840:9;44815:21;;;;43565:9;44815:21;:::i;:::-;:34;;44807:85;;;;-1:-1:-1;;;44807:85:0;;;;;;;:::i;:::-;44921:10;44913:19;;;;:7;:19;;;;;:30;;44936:7;;44913:19;:30;;44936:7;;44913:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44960:9;44955:98;44979:7;44975:11;;:1;:11;44955:98;;;45008:33;45018:10;45030;45039:1;45030:6;:10;:::i;45008:33::-;44988:3;;;;:::i;:::-;;;;44955:98;;37797:233;37872:7;37908:30;37695:10;:17;;37607:113;37908:30;37900:5;:38;37892:95;;;;-1:-1:-1;;;37892:95:0;;12904:2:1;37892:95:0;;;12886:21:1;12943:2;12923:18;;;12916:30;12982:34;12962:18;;;12955:62;-1:-1:-1;;;13033:18:1;;;13026:42;13085:19;;37892:95:0;12702:408:1;37892:95:0;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;37998:24;;37797:233;;;:::o;45966:112::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46047:23:::1;:7;46057:13:::0;;46047:23:::1;:::i;24553:239::-:0;24625:7;24661:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24661:16:0;24696:19;24688:73;;;;-1:-1:-1;;;24688:73:0;;13449:2:1;24688:73:0;;;13431:21:1;13488:2;13468:18;;;13461:30;13527:34;13507:18;;;13500:62;-1:-1:-1;;;13578:18:1;;;13571:39;13627:19;;24688:73:0;13247:405:1;45332:225:0;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;45441:9:::1;45436:114;45456:20:::0;;::::1;45436:114;;;45522:16;45498:7;:21;45506:9;;45516:1;45506:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45498:21:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45498:21:0;:40;;-1:-1:-1;;45498:40:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;45478:3;::::1;::::0;::::1;:::i;:::-;;;;45436:114;;;;45332:225:::0;;;:::o;24283:208::-;24355:7;-1:-1:-1;;;;;24383:19:0;;24375:74;;;;-1:-1:-1;;;24375:74:0;;13859:2:1;24375:74:0;;;13841:21:1;13898:2;13878:18;;;13871:30;13937:34;13917:18;;;13910:62;-1:-1:-1;;;13988:18:1;;;13981:40;14038:19;;24375:74:0;13657:406:1;24375:74:0;-1:-1:-1;;;;;;24467:16:0;;;;;:9;:16;;;;;;;24283:208::o;4558:94::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;46225:135::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46312:18:::1;:40:::0;;;::::1;;;;-1:-1:-1::0;;46312:40:0;;::::1;::::0;;;::::1;::::0;;46225:135::o;45569:385::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;45623:11:::1;45637:13;37695:10:::0;:17;;37607:113;45637:13:::1;45623:27;;43468:5;45680:13;;45676:1;45667:6;:10;;;;:::i;:::-;:26;;;;:::i;:::-;:40;;45659:85;;;;-1:-1:-1::0;;;45659:85:0::1;;;;;;;:::i;:::-;45766:13;;45761:1;:18;;45753:61;;;::::0;-1:-1:-1;;;45753:61:0;;14270:2:1;45753:61:0::1;::::0;::::1;14252:21:1::0;14309:2;14289:18;;;14282:30;14348:32;14328:18;;;14321:60;14398:18;;45753:61:0::1;14068:354:1::0;45753:61:0::1;45848:1;45831:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;45864:9:0::1;::::0;-1:-1:-1;45859:88:0::1;45883:1;45879;:5;45859:88;;;45904:33;45914:10;45926;45935:1:::0;45926:6;:10:::1;:::i;45904:33::-;45886:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45859:88;;25028:104:::0;25084:13;25117:7;25110:14;;;;;:::i;26711:295::-;-1:-1:-1;;;;;26814:24:0;;2775:10;26814:24;;26806:62;;;;-1:-1:-1;;;26806:62:0;;14759:2:1;26806:62:0;;;14741:21:1;14798:2;14778:18;;;14771:30;14837:27;14817:18;;;14810:55;14882:18;;26806:62:0;14557:349:1;26806:62:0;2775:10;26881:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26881:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26881:53:0;;;;;;;;;;26950:48;;540:41:1;;;26881:42:0;;2775:10;26950:48;;513:18:1;26950:48:0;;;;;;;26711:295;;:::o;46090:123::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;46171:15:::1;:34:::0;;-1:-1:-1;;46171:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46090:123::o;27974:328::-;28149:41;2775:10;28182:7;28149:18;:41::i;:::-;28141:103;;;;-1:-1:-1;;;28141:103:0;;;;;;;:::i;:::-;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;25203:334::-;29877:4;29901:16;;;:7;:16;;;;;;25276:13;;-1:-1:-1;;;;;29901:16:0;25302:76;;;;-1:-1:-1;;;25302:76:0;;15113:2:1;25302:76:0;;;15095:21:1;15152:2;15132:18;;;15125:30;15191:34;15171:18;;;15164:62;-1:-1:-1;;;15242:18:1;;;15235:45;15297:19;;25302:76:0;14911:411:1;25302:76:0;25391:21;25415:10;:8;:10::i;:::-;25391:34;;25467:1;25449:7;25443:21;:25;:86;;;;;;;;;;;;;;;;;25495:7;25504:18;:7;:16;:18::i;:::-;25478:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25443:86;25436:93;25203:334;-1:-1:-1;;;25203:334:0:o;4807:192::-;3980:6;;-1:-1:-1;;;;;3980:6:0;2775:10;4127:23;4119:68;;;;-1:-1:-1;;;4119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4896:22:0;::::1;4888:73;;;::::0;-1:-1:-1;;;4888:73:0;;16004:2:1;4888:73:0::1;::::0;::::1;15986:21:1::0;16043:2;16023:18;;;16016:30;16082:34;16062:18;;;16055:62;-1:-1:-1;;;16133:18:1;;;16126:36;16179:19;;4888:73:0::1;15802:402:1::0;4888:73:0::1;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;36967:224::-;37069:4;-1:-1:-1;;;;;;37093:50:0;;-1:-1:-1;;;37093:50:0;;:90;;;37147:36;37171:11;37147:23;:36::i;33794:174::-;33869:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33869:29:0;-1:-1:-1;;;;;33869:29:0;;;;;;;;:24;;33923:23;33869:24;33923:14;:23::i;:::-;-1:-1:-1;;;;;33914:46:0;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;30216:73;;;;-1:-1:-1;;;30216:73:0;;16411:2:1;30216:73:0;;;16393:21:1;16450:2;16430:18;;;16423:30;16489:34;16469:18;;;16462:62;-1:-1:-1;;;16540:18:1;;;16533:42;16592:19;;30216:73:0;16209:408:1;30216:73:0;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;-1:-1:-1;;;;;30358:16:0;:7;-1:-1:-1;;;;;30358:16:0;;:51;;;;30402:7;-1:-1:-1;;;;;30378:31:0;:20;30390:7;30378:11;:20::i;:::-;-1:-1:-1;;;;;30378:31:0;;30358:51;:87;;;-1:-1:-1;;;;;;27198:25:0;;;27174:4;27198:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30413:32;30350:96;30106:348;-1:-1:-1;;;;30106:348:0:o;33098:578::-;33257:4;-1:-1:-1;;;;;33230:31:0;:23;33245:7;33230:14;:23::i;:::-;-1:-1:-1;;;;;33230:31:0;;33222:85;;;;-1:-1:-1;;;33222:85:0;;16824:2:1;33222:85:0;;;16806:21:1;16863:2;16843:18;;;16836:30;16902:34;16882:18;;;16875:62;-1:-1:-1;;;16953:18:1;;;16946:39;17002:19;;33222:85:0;16622:405:1;33222:85:0;-1:-1:-1;;;;;33326:16:0;;33318:65;;;;-1:-1:-1;;;33318:65:0;;17234:2:1;33318:65:0;;;17216:21:1;17273:2;17253:18;;;17246:30;17312:34;17292:18;;;17285:62;-1:-1:-1;;;17363:18:1;;;17356:34;17407:19;;33318:65:0;17032:400:1;33318:65:0;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;-1:-1:-1;;;;;33542:15:0;;;;;;:9;:15;;;;;:20;;33561:1;;33542:15;:20;;33561:1;;33542:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33573:13:0;;;;;;:9;:13;;;;;:18;;33590:1;;33573:13;:18;;33590:1;;33573:18;:::i;:::-;;;;-1:-1:-1;;33602:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33602:21:0;-1:-1:-1;;;;;33602:21:0;;;;;;;;;33641:27;;33602:16;;33641:27;;;;;;;33098:578;;;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;5007:173::-;5082:6;;;-1:-1:-1;;;;;5099:17:0;;;-1:-1:-1;;;;;;5099:17:0;;;;;;;5132:40;;5082:6;;;5099:17;5082:6;;5132:40;;5063:16;;5132:40;5052:128;5007:173;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;-1:-1:-1;;;29380:111:0;;;;;;;:::i;45195:100::-;45247:13;45280:7;45273:14;;;;;:::i;311:723::-;367:13;588:10;584:53;;-1:-1:-1;;615:10:0;;;;;;;;;;;;-1:-1:-1;;;615:10:0;;;;;311:723::o;584:53::-;662:5;647:12;703:78;710:9;;703:78;;736:8;;;;:::i;:::-;;-1:-1:-1;759:10:0;;-1:-1:-1;767:2:0;759:10;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;813:17:0;;791:39;;841:154;848:10;;841:154;;875:11;885:1;875:11;;:::i;:::-;;-1:-1:-1;944:10:0;952:2;944:5;:10;:::i;:::-;931:24;;:2;:24;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;901:56:0;;;;;;;;-1:-1:-1;972:11:0;981:2;972:11;;:::i;:::-;;;841:154;;23914:305;24016:4;-1:-1:-1;;;;;;24053:40:0;;-1:-1:-1;;;24053:40:0;;:105;;-1:-1:-1;;;;;;;24110:48:0;;-1:-1:-1;;;24110:48:0;24053:105;:158;;;-1:-1:-1;;;;;;;;;;16002:40:0;;;24175:36;15893:157;46547:181;46675:45;46702:4;46708:2;46712:7;46675:26;:45::i;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;-1:-1:-1;;;31292:154:0;;;;;;;:::i;34533:799::-;34688:4;-1:-1:-1;;;;;34709:13:0;;6276:20;6324:8;34705:620;;34745:72;;-1:-1:-1;;;34745:72:0;;-1:-1:-1;;;;;34745:36:0;;;;;:72;;2775:10;;34796:4;;34802:7;;34811:5;;34745:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34745:72:0;;;;;;;;-1:-1:-1;;34745:72:0;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34987:13:0;;34983:272;;35030:60;;-1:-1:-1;;;35030:60:0;;;;;;;:::i;34983:272::-;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;-1:-1:-1;;;;;;34868:51:0;-1:-1:-1;;;34868:51:0;;-1:-1:-1;34861:58:0;;34705:620;-1:-1:-1;35309:4:0;34533:799;;;;;;:::o;38643:589::-;-1:-1:-1;;;;;38849:18:0;;38845:187;;38884:40;38916:7;40059:10;:17;;40032:24;;;;:15;:24;;;;;:44;;;40087:24;;;;;;;;;;;;39955:164;38884:40;38845:187;;;38954:2;-1:-1:-1;;;;;38946:10:0;:4;-1:-1:-1;;;;;38946:10:0;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;-1:-1:-1;;;;;39046:16:0;;39042:183;;39079:45;39116:7;39079:36;:45::i;39042:183::-;39152:4;-1:-1:-1;;;;;39146:10:0;:2;-1:-1:-1;;;;;39146:10:0;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;31790:382::-;-1:-1:-1;;;;;31870:16:0;;31862:61;;;;-1:-1:-1;;;31862:61:0;;19180:2:1;31862:61:0;;;19162:21:1;;;19199:18;;;19192:30;19258:34;19238:18;;;19231:62;19310:18;;31862:61:0;18978:356:1;31862:61:0;29877:4;29901:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29901:16:0;:30;31934:58;;;;-1:-1:-1;;;31934:58:0;;19541:2:1;31934:58:0;;;19523:21:1;19580:2;19560:18;;;19553:30;19619;19599:18;;;19592:58;19667:18;;31934:58:0;19339:352:1;31934:58:0;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;-1:-1:-1;;;;;32063:13:0;;;;;;:9;:13;;;;;:18;;32080:1;;32063:13;:18;;32080:1;;32063:18;:::i;:::-;;;;-1:-1:-1;;32092:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32092:21:0;-1:-1:-1;;;;;32092:21:0;;;;;;;;32131:33;;32092:16;;;32131:33;;32092:16;;32131:33;31790:382;;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41074:18;41095:26;;;:17;:26;;;;;;41012:51;;-1:-1:-1;41228:28:0;;;41224:328;;-1:-1:-1;;;;;41295:18:0;;41273:19;41295:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41346:30;;;;;;:44;;;41463:30;;:17;:30;;;;;:43;;;41224:328;-1:-1:-1;41648:26:0;;;;:17;:26;;;;;;;;41641:33;;;-1:-1:-1;;;;;41692:18:0;;;;;:12;:18;;;;;:34;;;;;;;41685:41;40746:988::o;42029:1079::-;42307:10;:17;42282:22;;42307:21;;42327:1;;42307:21;:::i;:::-;42339:18;42360:24;;;:15;:24;;;;;;42733:10;:26;;42282:46;;-1:-1:-1;42360:24:0;;42282:46;;42733:26;;;;;;:::i;:::-;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42877:28;;;:15;:28;;;;;;;:41;;;43049:24;;;;;43042:31;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;-1:-1:-1;;;;;39666:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39711:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39533:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:156::-;2754:20;;2814:4;2803:16;;2793:27;;2783:55;;2834:1;2831;2824:12;2849:182;2906:6;2959:2;2947:9;2938:7;2934:23;2930:32;2927:52;;;2975:1;2972;2965:12;2927:52;2998:27;3015:9;2998:27;:::i;3036:592::-;3107:6;3115;3168:2;3156:9;3147:7;3143:23;3139:32;3136:52;;;3184:1;3181;3174:12;3136:52;3224:9;3211:23;3253:18;3294:2;3286:6;3283:14;3280:34;;;3310:1;3307;3300:12;3280:34;3348:6;3337:9;3333:22;3323:32;;3393:7;3386:4;3382:2;3378:13;3374:27;3364:55;;3415:1;3412;3405:12;3364:55;3455:2;3442:16;3481:2;3473:6;3470:14;3467:34;;;3497:1;3494;3487:12;3467:34;3542:7;3537:2;3528:6;3524:2;3520:15;3516:24;3513:37;3510:57;;;3563:1;3560;3553:12;3510:57;3594:2;3586:11;;;;;3616:6;;-1:-1:-1;3036:592:1;;-1:-1:-1;;;;3036:592:1:o;3633:691::-;3726:6;3734;3742;3795:2;3783:9;3774:7;3770:23;3766:32;3763:52;;;3811:1;3808;3801:12;3763:52;3851:9;3838:23;3880:18;3921:2;3913:6;3910:14;3907:34;;;3937:1;3934;3927:12;3907:34;3975:6;3964:9;3960:22;3950:32;;4020:7;4013:4;4009:2;4005:13;4001:27;3991:55;;4042:1;4039;4032:12;3991:55;4082:2;4069:16;4108:2;4100:6;4097:14;4094:34;;;4124:1;4121;4114:12;4094:34;4179:7;4172:4;4162:6;4159:1;4155:14;4151:2;4147:23;4143:34;4140:47;4137:67;;;4200:1;4197;4190:12;4137:67;4231:4;4223:13;;;;-1:-1:-1;4255:6:1;-1:-1:-1;4280:38:1;;4297:20;;;-1:-1:-1;4280:38:1;:::i;:::-;4270:48;;3633:691;;;;;:::o;4329:186::-;4388:6;4441:2;4429:9;4420:7;4416:23;4412:32;4409:52;;;4457:1;4454;4447:12;4409:52;4480:29;4499:9;4480:29;:::i;4520:160::-;4585:20;;4641:13;;4634:21;4624:32;;4614:60;;4670:1;4667;4660:12;4685:180;4741:6;4794:2;4782:9;4773:7;4769:23;4765:32;4762:52;;;4810:1;4807;4800:12;4762:52;4833:26;4849:9;4833:26;:::i;4870:254::-;4935:6;4943;4996:2;4984:9;4975:7;4971:23;4967:32;4964:52;;;5012:1;5009;5002:12;4964:52;5035:29;5054:9;5035:29;:::i;:::-;5025:39;;5083:35;5114:2;5103:9;5099:18;5083:35;:::i;:::-;5073:45;;4870:254;;;;;:::o;5129:127::-;5190:10;5185:3;5181:20;5178:1;5171:31;5221:4;5218:1;5211:15;5245:4;5242:1;5235:15;5261:1138;5356:6;5364;5372;5380;5433:3;5421:9;5412:7;5408:23;5404:33;5401:53;;;5450:1;5447;5440:12;5401:53;5473:29;5492:9;5473:29;:::i;:::-;5463:39;;5521:38;5555:2;5544:9;5540:18;5521:38;:::i;:::-;5511:48;;5606:2;5595:9;5591:18;5578:32;5568:42;;5661:2;5650:9;5646:18;5633:32;5684:18;5725:2;5717:6;5714:14;5711:34;;;5741:1;5738;5731:12;5711:34;5779:6;5768:9;5764:22;5754:32;;5824:7;5817:4;5813:2;5809:13;5805:27;5795:55;;5846:1;5843;5836:12;5795:55;5882:2;5869:16;5904:2;5900;5897:10;5894:36;;;5910:18;;:::i;:::-;5985:2;5979:9;5953:2;6039:13;;-1:-1:-1;;6035:22:1;;;6059:2;6031:31;6027:40;6015:53;;;6083:18;;;6103:22;;;6080:46;6077:72;;;6129:18;;:::i;:::-;6169:10;6165:2;6158:22;6204:2;6196:6;6189:18;6244:7;6239:2;6234;6230;6226:11;6222:20;6219:33;6216:53;;;6265:1;6262;6255:12;6216:53;6321:2;6316;6312;6308:11;6303:2;6295:6;6291:15;6278:46;6366:1;6361:2;6356;6348:6;6344:15;6340:24;6333:35;6387:6;6377:16;;;;;;;5261:1138;;;;;;;:::o;6593:260::-;6661:6;6669;6722:2;6710:9;6701:7;6697:23;6693:32;6690:52;;;6738:1;6735;6728:12;6690:52;6761:29;6780:9;6761:29;:::i;:::-;6751:39;;6809:38;6843:2;6832:9;6828:18;6809:38;:::i;6858:380::-;6937:1;6933:12;;;;6980;;;7001:61;;7055:4;7047:6;7043:17;7033:27;;7001:61;7108:2;7100:6;7097:14;7077:18;7074:38;7071:161;;;7154:10;7149:3;7145:20;7142:1;7135:31;7189:4;7186:1;7179:15;7217:4;7214:1;7207:15;7071:161;;6858:380;;;:::o;8483:413::-;8685:2;8667:21;;;8724:2;8704:18;;;8697:30;8763:34;8758:2;8743:18;;8736:62;-1:-1:-1;;;8829:2:1;8814:18;;8807:47;8886:3;8871:19;;8483:413::o;9262:127::-;9323:10;9318:3;9314:20;9311:1;9304:31;9354:4;9351:1;9344:15;9378:4;9375:1;9368:15;9394:128;9434:3;9465:1;9461:6;9458:1;9455:13;9452:39;;;9471:18;;:::i;:::-;-1:-1:-1;9507:9:1;;9394:128::o;9527:356::-;9729:2;9711:21;;;9748:18;;;9741:30;9807:34;9802:2;9787:18;;9780:62;9874:2;9859:18;;9527:356::o;9888:168::-;9928:7;9994:1;9990;9986:6;9982:14;9979:1;9976:21;9971:1;9964:9;9957:17;9953:45;9950:71;;;10001:18;;:::i;:::-;-1:-1:-1;10041:9:1;;9888:168::o;10061:402::-;10263:2;10245:21;;;10302:2;10282:18;;;10275:30;10341:34;10336:2;10321:18;;10314:62;-1:-1:-1;;;10407:2:1;10392:18;;10385:36;10453:3;10438:19;;10061:402::o;10829:135::-;10868:3;-1:-1:-1;;10889:17:1;;10886:43;;;10909:18;;:::i;:::-;-1:-1:-1;10956:1:1;10945:13;;10829:135::o;11381:356::-;11583:2;11565:21;;;11602:18;;;11595:30;11661:34;11656:2;11641:18;;11634:62;11728:2;11713:18;;11381:356::o;12502:195::-;12540:4;12577;12574:1;12570:12;12609:4;12606:1;12602:12;12634:3;12629;12626:12;12623:38;;;12641:18;;:::i;:::-;12678:13;;;12502:195;-1:-1:-1;;;12502:195:1:o;13115:127::-;13176:10;13171:3;13167:20;13164:1;13157:31;13207:4;13204:1;13197:15;13231:4;13228:1;13221:15;14427:125;14467:4;14495:1;14492;14489:8;14486:34;;;14500:18;;:::i;:::-;-1:-1:-1;14537:9:1;;14427:125::o;15327:470::-;15506:3;15544:6;15538:13;15560:53;15606:6;15601:3;15594:4;15586:6;15582:17;15560:53;:::i;:::-;15676:13;;15635:16;;;;15698:57;15676:13;15635:16;15732:4;15720:17;;15698:57;:::i;:::-;15771:20;;15327:470;-1:-1:-1;;;;15327:470:1:o;17437:414::-;17639:2;17621:21;;;17678:2;17658:18;;;17651:30;17717:34;17712:2;17697:18;;17690:62;-1:-1:-1;;;17783:2:1;17768:18;;17761:48;17841:3;17826:19;;17437:414::o;17856:127::-;17917:10;17912:3;17908:20;17905:1;17898:31;17948:4;17945:1;17938:15;17972:4;17969:1;17962:15;17988:120;18028:1;18054;18044:35;;18059:18;;:::i;:::-;-1:-1:-1;18093:9:1;;17988:120::o;18113:112::-;18145:1;18171;18161:35;;18176:18;;:::i;:::-;-1:-1:-1;18210:9:1;;18113:112::o;18230:489::-;-1:-1:-1;;;;;18499:15:1;;;18481:34;;18551:15;;18546:2;18531:18;;18524:43;18598:2;18583:18;;18576:34;;;18646:3;18641:2;18626:18;;18619:31;;;18424:4;;18667:46;;18693:19;;18685:6;18667:46;:::i;:::-;18659:54;18230:489;-1:-1:-1;;;;;;18230:489:1:o;18724:249::-;18793:6;18846:2;18834:9;18825:7;18821:23;18817:32;18814:52;;;18862:1;18859;18852:12;18814:52;18894:9;18888:16;18913:30;18937:5;18913:30;:::i;19696:127::-;19757:10;19752:3;19748:20;19745:1;19738:31;19788:4;19785:1;19778:15;19812:4;19809:1;19802:15

Swarm Source

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