ETH Price: $3,350.25 (-0.95%)
Gas: 9 Gwei

Token

Hollow (HOLO)
 

Overview

Max Total Supply

1,056 HOLO

Holders

428

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HOLO
0x71fea781d256626ebc1a5096de69ee4f2230ddac
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:
Hollow

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-28
*/

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/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/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/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/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/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/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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/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/IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/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(to).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();
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/*
 ▄         ▄  ▄▄▄▄▄▄▄▄▄▄▄  ▄            ▄            ▄▄▄▄▄▄▄▄▄▄▄  ▄         ▄ 
▐░▌       ▐░▌▐░░░░░░░░░░░▌▐░▌          ▐░▌          ▐░░░░░░░░░░░▌▐░▌       ▐░▌
▐░▌       ▐░▌▐░█▀▀▀▀▀▀▀█░▌▐░▌          ▐░▌          ▐░█▀▀▀▀▀▀▀█░▌▐░▌       ▐░▌
▐░▌       ▐░▌▐░▌       ▐░▌▐░▌          ▐░▌          ▐░▌       ▐░▌▐░▌       ▐░▌
▐░█▄▄▄▄▄▄▄█░▌▐░▌       ▐░▌▐░▌          ▐░▌          ▐░▌       ▐░▌▐░▌   ▄   ▐░▌
▐░░░░░░░░░░░▌▐░▌       ▐░▌▐░▌          ▐░▌          ▐░▌       ▐░▌▐░▌  ▐░▌  ▐░▌
▐░█▀▀▀▀▀▀▀█░▌▐░▌       ▐░▌▐░▌          ▐░▌          ▐░▌       ▐░▌▐░▌ ▐░▌░▌ ▐░▌
▐░▌       ▐░▌▐░▌       ▐░▌▐░▌          ▐░▌          ▐░▌       ▐░▌▐░▌▐░▌ ▐░▌▐░▌
▐░▌       ▐░▌▐░█▄▄▄▄▄▄▄█░▌▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄█░▌▐░▌░▌   ▐░▐░▌
▐░▌       ▐░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░▌     ▐░░▌
 ▀         ▀  ▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀  ▀▀▀▀▀▀▀▀▀▀▀  ▀▀       ▀▀ 
                                                                                                      
                               By Devko.dev#7286 
*/


contract Hollow is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant HOLO_PRIVATE = 3000;
    uint256 public constant HOLO_PUBLIC = 7000;
    uint256 public constant HOLO_MAX =  HOLO_PRIVATE + HOLO_PUBLIC;
    uint256 public constant HOLO_PRICE = 0.08 ether;
    uint256 public constant HOLO_PER_PUBLIC_MINT = 5;
    uint256 public constant HOLO_PER_PRIVATE_MINT = 4;
    mapping(address => bool) public presalerList;
    mapping(address => uint256) public presalerListPurchases;
    string private _contractURI = "https://gateway.pinata.cloud/ipfs/QmaC4DXdS5xRULMmQV7nF2Noedbdpnd5Loyzk7RsK6qZZh";
    string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmSK5jJS8AoAMqXY6L6rL9BKQ6WAVgzyNTNpT712F717UK/";
    address private member1 = 0x4D61376f414eD7FFcb6Fb698a36BD73fB909E368; // Yatin
    address private member2 = 0x0000064a362bDaf19B859b5fC829116DfB13ca30; // Devko
    uint256 public privateAmountMinted;
    uint256 public presalePurchaseLimit = 4;
    bool public presaleLive;
    bool public saleLive;
    bool public locked;
    
    constructor() ERC721("Hollow", "HOLO") {}
    
    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }
    
    function addToPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!presalerList[entry], "DUPLICATE_ENTRY");
            presalerList[entry] = true;
        }   
    }

    function removeFromPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            
            presalerList[entry] = false;
        }
    }

    function founderMint(uint256 tokenQuantity) external onlyOwner {
        require(totalSupply() + tokenQuantity <= HOLO_MAX, "EXCEED_MAX");
        
        for(uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }
    function buy(uint256 tokenQuantity) external payable {
        require(saleLive, "SALE_CLOSED");
        require(!presaleLive, "ONLY_PRESALE");
        require(totalSupply() + tokenQuantity <= HOLO_MAX, "EXCEED_MAX");
        require(tokenQuantity <= HOLO_PER_PUBLIC_MINT, "EXCEED_HOLO_PER_PUBLIC_MINT");
        require(HOLO_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        for(uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
        
        
    }
    
    function presaleBuy(uint256 tokenQuantity) external payable {
        require(!saleLive && presaleLive, "PRESALE_CLOSED");
        require(presalerList[msg.sender], "NOT_QUALIFIED");
        require(privateAmountMinted + tokenQuantity <= HOLO_PRIVATE, "EXCEED_PRIVATE");
        require(tokenQuantity <= HOLO_PER_PRIVATE_MINT, "EXCEED_HOLO_PER_PRIVATE_MINT");
        require(presalerListPurchases[msg.sender] + tokenQuantity <= presalePurchaseLimit, "EXCEED_ALLOC");
        require(HOLO_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        for (uint256 i = 0; i < tokenQuantity; i++) {
            privateAmountMinted++;
            presalerListPurchases[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function withdraw() external {
        payable(member2).transfer(address(this).balance / 10);
        payable(member1).transfer(address(this).balance);
    }
    
    function isPresaler(address addr) external view returns (bool) {
        return presalerList[addr];
    }
    
    function presalePurchasedCount(address addr) external view returns (uint256) {
        return presalerListPurchases[addr];
    }

    function lockMetadata() external onlyOwner {
        locked = true;
    }
    
    function togglePresaleStatus() external onlyOwner {
        presaleLive = !presaleLive;
    }
    
    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }
    
    function setContractURI(string calldata URI) external onlyOwner notLocked {
        _contractURI = URI;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

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":"HOLO_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOLO_PER_PRIVATE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOLO_PER_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOLO_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOLO_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HOLO_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052605060808181529062002cb160a03980516200002a91600d916020909101906200018e565b5060405180608001604052806051815260200162002d016051913980516200005b91600e916020909101906200018e565b50600f80546001600160a01b0319908116734d61376f414ed7ffcb6fb698a36bd73fb909e368179091556010805490911671064a362bdaf19b859b5fc829116dfb13ca301790556004601255348015620000b457600080fd5b506040805180820182526006815265486f6c6c6f7760d01b602080830191825283518085019094526004845263484f4c4f60e01b908401528151919291620000ff916000916200018e565b508051620001159060019060208401906200018e565b505050620001326200012c6200013860201b60201c565b6200013c565b62000271565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200019c9062000234565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b600181811c908216806200024957607f821691505b602082108114156200026b57634e487b7160e01b600052602260045260246000fd5b50919050565b612a3080620002816000396000f3fe60806040526004361061027d5760003560e01c8063815f7bbd1161014f578063b88d4fde116100c1578063e081b7811161007a578063e081b78114610757578063e8a3d48514610776578063e985e9c51461078b578063f2fde38b146107d4578063f42202e8146107f4578063f47430701461081457600080fd5b8063b88d4fde146106b3578063c87b56dd146106d3578063cf309012146106f3578063d169633014610713578063d96a094a1461072f578063db66d4d91461074257600080fd5b8063989bdbb611610113578063989bdbb6146105c85780639bf80316146105dd5780639cf2e8d61461060a5780639e273b2f1461063a578063a22cb46514610673578063b179e0601461069357600080fd5b8063815f7bbd1461054857806383a9e0491461055b5780638da5cb5b14610575578063938e3d7b1461059357806395d89b41146105b357600080fd5b80634f6ccce7116101f3578063666611bd116101ac578063666611bd146104b357806370a08231146104c8578063715018a6146104e857806371bd8c3f146104fd5780637204a3c9146105135780637bffb4ce1461053357600080fd5b80634f6ccce7146103f257806355f804b31461041257806359a12ad5146104325780635ce7af1f146104485780636352211e1461047e578063645036d41461049e57600080fd5b806318160ddd1161024557806318160ddd1461034857806323b872dd146103675780632f745c59146103875780633ccfd60b146103a75780633f5acc74146103bc57806342842e0e146103d257600080fd5b806301ffc9a714610282578063049c5c49146102b757806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a5565b61082a565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610855565b005b3480156102da57600080fd5b506102e36108a5565b6040516102ae919061277b565b3480156102fc57600080fd5b5061031061030b366004612638565b610937565b6040516001600160a01b0390911681526020016102ae565b34801561033457600080fd5b506102cc61034336600461250c565b6109cc565b34801561035457600080fd5b506008545b6040519081526020016102ae565b34801561037357600080fd5b506102cc6103823660046123c2565b610ae2565b34801561039357600080fd5b506103596103a236600461250c565b610b13565b3480156103b357600080fd5b506102cc610ba9565b3480156103c857600080fd5b50610359611b5881565b3480156103de57600080fd5b506102cc6103ed3660046123c2565b610c28565b3480156103fe57600080fd5b5061035961040d366004612638565b610c43565b34801561041e57600080fd5b506102cc61042d3660046125dd565b610ce4565b34801561043e57600080fd5b5061035960115481565b34801561045457600080fd5b5061035961046336600461236f565b6001600160a01b03166000908152600c602052604090205490565b34801561048a57600080fd5b50610310610499366004612638565b610d43565b3480156104aa57600080fd5b50610359600481565b3480156104bf57600080fd5b50610359600581565b3480156104d457600080fd5b506103596104e336600461236f565b610dba565b3480156104f457600080fd5b506102cc610e41565b34801561050957600080fd5b50610359610bb881565b34801561051f57600080fd5b506102cc61052e366004612535565b610e77565b34801561053f57600080fd5b506102cc610fb9565b6102cc610556366004612638565b610ff7565b34801561056757600080fd5b506013546102a29060ff1681565b34801561058157600080fd5b50600a546001600160a01b0316610310565b34801561059f57600080fd5b506102cc6105ae3660046125dd565b611260565b3480156105bf57600080fd5b506102e36112bf565b3480156105d457600080fd5b506102cc6112ce565b3480156105e957600080fd5b506103596105f836600461236f565b600c6020526000908152604090205481565b34801561061657600080fd5b506102a261062536600461236f565b600b6020526000908152604090205460ff1681565b34801561064657600080fd5b506102a261065536600461236f565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561067f57600080fd5b506102cc61068e3660046124d2565b61130b565b34801561069f57600080fd5b506102cc6106ae366004612535565b6113d0565b3480156106bf57600080fd5b506102cc6106ce3660046123fd565b6114b4565b3480156106df57600080fd5b506102e36106ee366004612638565b6114ec565b3480156106ff57600080fd5b506013546102a29062010000900460ff1681565b34801561071f57600080fd5b5061035967011c37937e08000081565b6102cc61073d366004612638565b611585565b34801561074e57600080fd5b50610359611738565b34801561076357600080fd5b506013546102a290610100900460ff1681565b34801561078257600080fd5b506102e3611749565b34801561079757600080fd5b506102a26107a6366004612390565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107e057600080fd5b506102cc6107ef36600461236f565b611758565b34801561080057600080fd5b506102cc61080f366004612638565b6117f0565b34801561082057600080fd5b5061035960125481565b60006001600160e01b0319821663780e9d6360e01b148061084f575061084f826118a1565b92915050565b600a546001600160a01b031633146108885760405162461bcd60e51b815260040161087f906127e0565b60405180910390fd5b6013805461ff001981166101009182900460ff1615909102179055565b6060600080546108b490612938565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612938565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087f565b506000908152600460205260409020546001600160a01b031690565b60006109d782610d43565b9050806001600160a01b0316836001600160a01b03161415610a455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161087f565b336001600160a01b0382161480610a615750610a6181336107a6565b610ad35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087f565b610add83836118f1565b505050565b610aec338261195f565b610b085760405162461bcd60e51b815260040161087f90612859565b610add838383611a56565b6000610b1e83610dba565b8210610b805760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161087f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b03166108fc610bc3600a476128c2565b6040518115909202916000818181858888f19350505050158015610beb573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c25573d6000803e3d6000fd5b50565b610add838383604051806020016040528060008152506114b4565b6000610c4e60085490565b8210610cb15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161087f565b60088281548110610cd257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161087f906127e0565b60135462010000900460ff1615610d375760405162461bcd60e51b815260040161087f90612815565b610add600e83836122ba565b6000818152600260205260408120546001600160a01b03168061084f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161087f565b60006001600160a01b038216610e255760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161087f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161087f906127e0565b610e756000611c01565b565b600a546001600160a01b03163314610ea15760405162461bcd60e51b815260040161087f906127e0565b60005b81811015610add576000838383818110610ece57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ee3919061236f565b90506001600160a01b038116610f2a5760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161087f565b6001600160a01b0381166000908152600b602052604090205460ff1615610f855760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b604482015260640161087f565b6001600160a01b03166000908152600b60205260409020805460ff1916600117905580610fb181612973565b915050610ea4565b600a546001600160a01b03163314610fe35760405162461bcd60e51b815260040161087f906127e0565b6013805460ff19811660ff90911615179055565b601354610100900460ff16158015611011575060135460ff165b61104e5760405162461bcd60e51b815260206004820152600e60248201526d14149154d0531157d0d313d4d15160921b604482015260640161087f565b336000908152600b602052604090205460ff1661109d5760405162461bcd60e51b815260206004820152600d60248201526c1393d517d45550531251925151609a1b604482015260640161087f565b610bb8816011546110ae91906128aa565b11156110ed5760405162461bcd60e51b815260206004820152600e60248201526d4558434545445f5052495641544560901b604482015260640161087f565b600481111561113e5760405162461bcd60e51b815260206004820152601c60248201527f4558434545445f484f4c4f5f5045525f505249564154455f4d494e5400000000604482015260640161087f565b601254336000908152600c602052604090205461115c9083906128aa565b11156111995760405162461bcd60e51b815260206004820152600c60248201526b4558434545445f414c4c4f4360a01b604482015260640161087f565b346111ac8267011c37937e0800006128d6565b11156111ed5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b604482015260640161087f565b60005b8181101561125c576011805490600061120883612973565b9091555050336000908152600c6020526040812080549161122883612973565b919050555061124a3361123a60085490565b6112459060016128aa565b611c53565b8061125481612973565b9150506111f0565b5050565b600a546001600160a01b0316331461128a5760405162461bcd60e51b815260040161087f906127e0565b60135462010000900460ff16156112b35760405162461bcd60e51b815260040161087f90612815565b610add600d83836122ba565b6060600180546108b490612938565b600a546001600160a01b031633146112f85760405162461bcd60e51b815260040161087f906127e0565b6013805462ff0000191662010000179055565b6001600160a01b0382163314156113645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113fa5760405162461bcd60e51b815260040161087f906127e0565b60005b81811015610add57600083838381811061142757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061143c919061236f565b90506001600160a01b0381166114835760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161087f565b6001600160a01b03166000908152600b60205260409020805460ff19169055806114ac81612973565b9150506113fd565b6114be338361195f565b6114da5760405162461bcd60e51b815260040161087f90612859565b6114e684848484611c6d565b50505050565b6000818152600260205260409020546060906001600160a01b03166115535760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00604482015260640161087f565b600e61155e83611ca0565b60405160200161156f929190612698565b6040516020818303038152906040529050919050565b601354610100900460ff166115ca5760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b604482015260640161087f565b60135460ff161561160c5760405162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f50524553414c4560a01b604482015260640161087f565b61161a611b58610bb86128aa565b8161162460085490565b61162e91906128aa565b11156116695760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b604482015260640161087f565b60058111156116ba5760405162461bcd60e51b815260206004820152601b60248201527f4558434545445f484f4c4f5f5045525f5055424c49435f4d494e540000000000604482015260640161087f565b346116cd8267011c37937e0800006128d6565b111561170e5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b604482015260640161087f565b60005b8181101561125c576117263361123a60085490565b8061173081612973565b915050611711565b611746611b58610bb86128aa565b81565b6060600d80546108b490612938565b600a546001600160a01b031633146117825760405162461bcd60e51b815260040161087f906127e0565b6001600160a01b0381166117e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087f565b610c2581611c01565b600a546001600160a01b0316331461181a5760405162461bcd60e51b815260040161087f906127e0565b611828611b58610bb86128aa565b8161183260085490565b61183c91906128aa565b11156118775760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b604482015260640161087f565b60005b8181101561125c5761188f3361123a60085490565b8061189981612973565b91505061187a565b60006001600160e01b031982166380ac58cd60e01b14806118d257506001600160e01b03198216635b5e139f60e01b145b8061084f57506301ffc9a760e01b6001600160e01b031983161461084f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192682610d43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087f565b60006119e383610d43565b9050806001600160a01b0316846001600160a01b03161480611a1e5750836001600160a01b0316611a1384610937565b6001600160a01b0316145b80611a4e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6982610d43565b6001600160a01b031614611ad15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161087f565b6001600160a01b038216611b335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161087f565b611b3e838383611dba565b611b496000826118f1565b6001600160a01b0383166000908152600360205260408120805460019290611b729084906128f5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ba09084906128aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61125c828260405180602001604052806000815250611e72565b611c78848484611a56565b611c8484848484611ea5565b6114e65760405162461bcd60e51b815260040161087f9061278e565b606081611cc45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cee5780611cd881612973565b9150611ce79050600a836128c2565b9150611cc8565b60008167ffffffffffffffff811115611d1757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d41576020820181803683370190505b5090505b8415611a4e57611d566001836128f5565b9150611d63600a8661298e565b611d6e9060306128aa565b60f81b818381518110611d9157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611db3600a866128c2565b9450611d45565b6001600160a01b038316611e1557611e1081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e38565b816001600160a01b0316836001600160a01b031614611e3857611e388382611fb2565b6001600160a01b038216611e4f57610add8161204f565b826001600160a01b0316826001600160a01b031614610add57610add8282612128565b611e7c838361216c565b611e896000848484611ea5565b610add5760405162461bcd60e51b815260040161087f9061278e565b60006001600160a01b0384163b15611fa757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee990339089908890889060040161273e565b602060405180830381600087803b158015611f0357600080fd5b505af1925050508015611f33575060408051601f3d908101601f19168201909252611f30918101906125c1565b60015b611f8d573d808015611f61576040519150601f19603f3d011682016040523d82523d6000602084013e611f66565b606091505b508051611f855760405162461bcd60e51b815260040161087f9061278e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4e565b506001949350505050565b60006001611fbf84610dba565b611fc991906128f5565b60008381526007602052604090205490915080821461201c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612061906001906128f5565b6000838152600960205260408120546008805493945090928490811061209757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120c657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061210c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061213383610dba565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121c25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087f565b6000818152600260205260409020546001600160a01b0316156122275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087f565b61223360008383611dba565b6001600160a01b038216600090815260036020526040812080546001929061225c9084906128aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122c690612938565b90600052602060002090601f0160209004810192826122e8576000855561232e565b82601f106123015782800160ff1982351617855561232e565b8280016001018555821561232e579182015b8281111561232e578235825591602001919060010190612313565b5061233a92915061233e565b5090565b5b8082111561233a576000815560010161233f565b80356001600160a01b038116811461236a57600080fd5b919050565b600060208284031215612380578081fd5b61238982612353565b9392505050565b600080604083850312156123a2578081fd5b6123ab83612353565b91506123b960208401612353565b90509250929050565b6000806000606084860312156123d6578081fd5b6123df84612353565b92506123ed60208501612353565b9150604084013590509250925092565b60008060008060808587031215612412578081fd5b61241b85612353565b935061242960208601612353565b925060408501359150606085013567ffffffffffffffff8082111561244c578283fd5b818701915087601f83011261245f578283fd5b813581811115612471576124716129ce565b604051601f8201601f19908116603f01168101908382118183101715612499576124996129ce565b816040528281528a60208487010111156124b1578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156124e4578182fd5b6124ed83612353565b915060208301358015158114612501578182fd5b809150509250929050565b6000806040838503121561251e578182fd5b61252783612353565b946020939093013593505050565b60008060208385031215612547578182fd5b823567ffffffffffffffff8082111561255e578384fd5b818501915085601f830112612571578384fd5b81358181111561257f578485fd5b8660208260051b8501011115612593578485fd5b60209290920196919550909350505050565b6000602082840312156125b6578081fd5b8135612389816129e4565b6000602082840312156125d2578081fd5b8151612389816129e4565b600080602083850312156125ef578182fd5b823567ffffffffffffffff80821115612606578384fd5b818501915085601f830112612619578384fd5b813581811115612627578485fd5b866020828501011115612593578485fd5b600060208284031215612649578081fd5b5035919050565b6000815180845261266881602086016020860161290c565b601f01601f19169290920160200192915050565b6000815161268e81856020860161290c565b9290920192915050565b600080845482600182811c9150808316806126b457607f831692505b60208084108214156126d457634e487b7160e01b87526022600452602487fd5b8180156126e857600181146126f957612725565b60ff19861689528489019650612725565b60008b815260209020885b8681101561271d5781548b820152908501908301612704565b505084890196505b505050505050612735818561267c565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277190830184612650565b9695505050505050565b6020815260006123896020830184612650565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128bd576128bd6129a2565b500190565b6000826128d1576128d16129b8565b500490565b60008160001904831182151516156128f0576128f06129a2565b500290565b600082821015612907576129076129a2565b500390565b60005b8381101561292757818101518382015260200161290f565b838111156114e65750506000910152565b600181811c9082168061294c57607f821691505b6020821081141561296d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612987576129876129a2565b5060010190565b60008261299d5761299d6129b8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c2557600080fdfea264697066735822122064dc277f051086c991469d23dd60264656f002d8df716086fab0c9574d7d123e64736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d61433444586453357852554c4d6d5156376e46324e6f65646264706e64354c6f797a6b3752734b36715a5a6868747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d534b356a4a5338416f414d715859364c36724c39424b5136574156677a794e544e705437313246373137554b2f

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063815f7bbd1161014f578063b88d4fde116100c1578063e081b7811161007a578063e081b78114610757578063e8a3d48514610776578063e985e9c51461078b578063f2fde38b146107d4578063f42202e8146107f4578063f47430701461081457600080fd5b8063b88d4fde146106b3578063c87b56dd146106d3578063cf309012146106f3578063d169633014610713578063d96a094a1461072f578063db66d4d91461074257600080fd5b8063989bdbb611610113578063989bdbb6146105c85780639bf80316146105dd5780639cf2e8d61461060a5780639e273b2f1461063a578063a22cb46514610673578063b179e0601461069357600080fd5b8063815f7bbd1461054857806383a9e0491461055b5780638da5cb5b14610575578063938e3d7b1461059357806395d89b41146105b357600080fd5b80634f6ccce7116101f3578063666611bd116101ac578063666611bd146104b357806370a08231146104c8578063715018a6146104e857806371bd8c3f146104fd5780637204a3c9146105135780637bffb4ce1461053357600080fd5b80634f6ccce7146103f257806355f804b31461041257806359a12ad5146104325780635ce7af1f146104485780636352211e1461047e578063645036d41461049e57600080fd5b806318160ddd1161024557806318160ddd1461034857806323b872dd146103675780632f745c59146103875780633ccfd60b146103a75780633f5acc74146103bc57806342842e0e146103d257600080fd5b806301ffc9a714610282578063049c5c49146102b757806306fdde03146102ce578063081812fc146102f0578063095ea7b314610328575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a5565b61082a565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610855565b005b3480156102da57600080fd5b506102e36108a5565b6040516102ae919061277b565b3480156102fc57600080fd5b5061031061030b366004612638565b610937565b6040516001600160a01b0390911681526020016102ae565b34801561033457600080fd5b506102cc61034336600461250c565b6109cc565b34801561035457600080fd5b506008545b6040519081526020016102ae565b34801561037357600080fd5b506102cc6103823660046123c2565b610ae2565b34801561039357600080fd5b506103596103a236600461250c565b610b13565b3480156103b357600080fd5b506102cc610ba9565b3480156103c857600080fd5b50610359611b5881565b3480156103de57600080fd5b506102cc6103ed3660046123c2565b610c28565b3480156103fe57600080fd5b5061035961040d366004612638565b610c43565b34801561041e57600080fd5b506102cc61042d3660046125dd565b610ce4565b34801561043e57600080fd5b5061035960115481565b34801561045457600080fd5b5061035961046336600461236f565b6001600160a01b03166000908152600c602052604090205490565b34801561048a57600080fd5b50610310610499366004612638565b610d43565b3480156104aa57600080fd5b50610359600481565b3480156104bf57600080fd5b50610359600581565b3480156104d457600080fd5b506103596104e336600461236f565b610dba565b3480156104f457600080fd5b506102cc610e41565b34801561050957600080fd5b50610359610bb881565b34801561051f57600080fd5b506102cc61052e366004612535565b610e77565b34801561053f57600080fd5b506102cc610fb9565b6102cc610556366004612638565b610ff7565b34801561056757600080fd5b506013546102a29060ff1681565b34801561058157600080fd5b50600a546001600160a01b0316610310565b34801561059f57600080fd5b506102cc6105ae3660046125dd565b611260565b3480156105bf57600080fd5b506102e36112bf565b3480156105d457600080fd5b506102cc6112ce565b3480156105e957600080fd5b506103596105f836600461236f565b600c6020526000908152604090205481565b34801561061657600080fd5b506102a261062536600461236f565b600b6020526000908152604090205460ff1681565b34801561064657600080fd5b506102a261065536600461236f565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561067f57600080fd5b506102cc61068e3660046124d2565b61130b565b34801561069f57600080fd5b506102cc6106ae366004612535565b6113d0565b3480156106bf57600080fd5b506102cc6106ce3660046123fd565b6114b4565b3480156106df57600080fd5b506102e36106ee366004612638565b6114ec565b3480156106ff57600080fd5b506013546102a29062010000900460ff1681565b34801561071f57600080fd5b5061035967011c37937e08000081565b6102cc61073d366004612638565b611585565b34801561074e57600080fd5b50610359611738565b34801561076357600080fd5b506013546102a290610100900460ff1681565b34801561078257600080fd5b506102e3611749565b34801561079757600080fd5b506102a26107a6366004612390565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107e057600080fd5b506102cc6107ef36600461236f565b611758565b34801561080057600080fd5b506102cc61080f366004612638565b6117f0565b34801561082057600080fd5b5061035960125481565b60006001600160e01b0319821663780e9d6360e01b148061084f575061084f826118a1565b92915050565b600a546001600160a01b031633146108885760405162461bcd60e51b815260040161087f906127e0565b60405180910390fd5b6013805461ff001981166101009182900460ff1615909102179055565b6060600080546108b490612938565b80601f01602080910402602001604051908101604052809291908181526020018280546108e090612938565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087f565b506000908152600460205260409020546001600160a01b031690565b60006109d782610d43565b9050806001600160a01b0316836001600160a01b03161415610a455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161087f565b336001600160a01b0382161480610a615750610a6181336107a6565b610ad35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087f565b610add83836118f1565b505050565b610aec338261195f565b610b085760405162461bcd60e51b815260040161087f90612859565b610add838383611a56565b6000610b1e83610dba565b8210610b805760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161087f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6010546001600160a01b03166108fc610bc3600a476128c2565b6040518115909202916000818181858888f19350505050158015610beb573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c25573d6000803e3d6000fd5b50565b610add838383604051806020016040528060008152506114b4565b6000610c4e60085490565b8210610cb15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161087f565b60088281548110610cd257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161087f906127e0565b60135462010000900460ff1615610d375760405162461bcd60e51b815260040161087f90612815565b610add600e83836122ba565b6000818152600260205260408120546001600160a01b03168061084f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161087f565b60006001600160a01b038216610e255760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161087f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e6b5760405162461bcd60e51b815260040161087f906127e0565b610e756000611c01565b565b600a546001600160a01b03163314610ea15760405162461bcd60e51b815260040161087f906127e0565b60005b81811015610add576000838383818110610ece57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ee3919061236f565b90506001600160a01b038116610f2a5760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161087f565b6001600160a01b0381166000908152600b602052604090205460ff1615610f855760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b604482015260640161087f565b6001600160a01b03166000908152600b60205260409020805460ff1916600117905580610fb181612973565b915050610ea4565b600a546001600160a01b03163314610fe35760405162461bcd60e51b815260040161087f906127e0565b6013805460ff19811660ff90911615179055565b601354610100900460ff16158015611011575060135460ff165b61104e5760405162461bcd60e51b815260206004820152600e60248201526d14149154d0531157d0d313d4d15160921b604482015260640161087f565b336000908152600b602052604090205460ff1661109d5760405162461bcd60e51b815260206004820152600d60248201526c1393d517d45550531251925151609a1b604482015260640161087f565b610bb8816011546110ae91906128aa565b11156110ed5760405162461bcd60e51b815260206004820152600e60248201526d4558434545445f5052495641544560901b604482015260640161087f565b600481111561113e5760405162461bcd60e51b815260206004820152601c60248201527f4558434545445f484f4c4f5f5045525f505249564154455f4d494e5400000000604482015260640161087f565b601254336000908152600c602052604090205461115c9083906128aa565b11156111995760405162461bcd60e51b815260206004820152600c60248201526b4558434545445f414c4c4f4360a01b604482015260640161087f565b346111ac8267011c37937e0800006128d6565b11156111ed5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b604482015260640161087f565b60005b8181101561125c576011805490600061120883612973565b9091555050336000908152600c6020526040812080549161122883612973565b919050555061124a3361123a60085490565b6112459060016128aa565b611c53565b8061125481612973565b9150506111f0565b5050565b600a546001600160a01b0316331461128a5760405162461bcd60e51b815260040161087f906127e0565b60135462010000900460ff16156112b35760405162461bcd60e51b815260040161087f90612815565b610add600d83836122ba565b6060600180546108b490612938565b600a546001600160a01b031633146112f85760405162461bcd60e51b815260040161087f906127e0565b6013805462ff0000191662010000179055565b6001600160a01b0382163314156113645760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113fa5760405162461bcd60e51b815260040161087f906127e0565b60005b81811015610add57600083838381811061142757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061143c919061236f565b90506001600160a01b0381166114835760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015260640161087f565b6001600160a01b03166000908152600b60205260409020805460ff19169055806114ac81612973565b9150506113fd565b6114be338361195f565b6114da5760405162461bcd60e51b815260040161087f90612859565b6114e684848484611c6d565b50505050565b6000818152600260205260409020546060906001600160a01b03166115535760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00604482015260640161087f565b600e61155e83611ca0565b60405160200161156f929190612698565b6040516020818303038152906040529050919050565b601354610100900460ff166115ca5760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b604482015260640161087f565b60135460ff161561160c5760405162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f50524553414c4560a01b604482015260640161087f565b61161a611b58610bb86128aa565b8161162460085490565b61162e91906128aa565b11156116695760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b604482015260640161087f565b60058111156116ba5760405162461bcd60e51b815260206004820152601b60248201527f4558434545445f484f4c4f5f5045525f5055424c49435f4d494e540000000000604482015260640161087f565b346116cd8267011c37937e0800006128d6565b111561170e5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b604482015260640161087f565b60005b8181101561125c576117263361123a60085490565b8061173081612973565b915050611711565b611746611b58610bb86128aa565b81565b6060600d80546108b490612938565b600a546001600160a01b031633146117825760405162461bcd60e51b815260040161087f906127e0565b6001600160a01b0381166117e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087f565b610c2581611c01565b600a546001600160a01b0316331461181a5760405162461bcd60e51b815260040161087f906127e0565b611828611b58610bb86128aa565b8161183260085490565b61183c91906128aa565b11156118775760405162461bcd60e51b815260206004820152600a60248201526908ab0868a8a88be9a82b60b31b604482015260640161087f565b60005b8181101561125c5761188f3361123a60085490565b8061189981612973565b91505061187a565b60006001600160e01b031982166380ac58cd60e01b14806118d257506001600160e01b03198216635b5e139f60e01b145b8061084f57506301ffc9a760e01b6001600160e01b031983161461084f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192682610d43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087f565b60006119e383610d43565b9050806001600160a01b0316846001600160a01b03161480611a1e5750836001600160a01b0316611a1384610937565b6001600160a01b0316145b80611a4e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a6982610d43565b6001600160a01b031614611ad15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161087f565b6001600160a01b038216611b335760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161087f565b611b3e838383611dba565b611b496000826118f1565b6001600160a01b0383166000908152600360205260408120805460019290611b729084906128f5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ba09084906128aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61125c828260405180602001604052806000815250611e72565b611c78848484611a56565b611c8484848484611ea5565b6114e65760405162461bcd60e51b815260040161087f9061278e565b606081611cc45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cee5780611cd881612973565b9150611ce79050600a836128c2565b9150611cc8565b60008167ffffffffffffffff811115611d1757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d41576020820181803683370190505b5090505b8415611a4e57611d566001836128f5565b9150611d63600a8661298e565b611d6e9060306128aa565b60f81b818381518110611d9157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611db3600a866128c2565b9450611d45565b6001600160a01b038316611e1557611e1081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e38565b816001600160a01b0316836001600160a01b031614611e3857611e388382611fb2565b6001600160a01b038216611e4f57610add8161204f565b826001600160a01b0316826001600160a01b031614610add57610add8282612128565b611e7c838361216c565b611e896000848484611ea5565b610add5760405162461bcd60e51b815260040161087f9061278e565b60006001600160a01b0384163b15611fa757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ee990339089908890889060040161273e565b602060405180830381600087803b158015611f0357600080fd5b505af1925050508015611f33575060408051601f3d908101601f19168201909252611f30918101906125c1565b60015b611f8d573d808015611f61576040519150601f19603f3d011682016040523d82523d6000602084013e611f66565b606091505b508051611f855760405162461bcd60e51b815260040161087f9061278e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4e565b506001949350505050565b60006001611fbf84610dba565b611fc991906128f5565b60008381526007602052604090205490915080821461201c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612061906001906128f5565b6000838152600960205260408120546008805493945090928490811061209757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106120c657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061210c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061213383610dba565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121c25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087f565b6000818152600260205260409020546001600160a01b0316156122275760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087f565b61223360008383611dba565b6001600160a01b038216600090815260036020526040812080546001929061225c9084906128aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122c690612938565b90600052602060002090601f0160209004810192826122e8576000855561232e565b82601f106123015782800160ff1982351617855561232e565b8280016001018555821561232e579182015b8281111561232e578235825591602001919060010190612313565b5061233a92915061233e565b5090565b5b8082111561233a576000815560010161233f565b80356001600160a01b038116811461236a57600080fd5b919050565b600060208284031215612380578081fd5b61238982612353565b9392505050565b600080604083850312156123a2578081fd5b6123ab83612353565b91506123b960208401612353565b90509250929050565b6000806000606084860312156123d6578081fd5b6123df84612353565b92506123ed60208501612353565b9150604084013590509250925092565b60008060008060808587031215612412578081fd5b61241b85612353565b935061242960208601612353565b925060408501359150606085013567ffffffffffffffff8082111561244c578283fd5b818701915087601f83011261245f578283fd5b813581811115612471576124716129ce565b604051601f8201601f19908116603f01168101908382118183101715612499576124996129ce565b816040528281528a60208487010111156124b1578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156124e4578182fd5b6124ed83612353565b915060208301358015158114612501578182fd5b809150509250929050565b6000806040838503121561251e578182fd5b61252783612353565b946020939093013593505050565b60008060208385031215612547578182fd5b823567ffffffffffffffff8082111561255e578384fd5b818501915085601f830112612571578384fd5b81358181111561257f578485fd5b8660208260051b8501011115612593578485fd5b60209290920196919550909350505050565b6000602082840312156125b6578081fd5b8135612389816129e4565b6000602082840312156125d2578081fd5b8151612389816129e4565b600080602083850312156125ef578182fd5b823567ffffffffffffffff80821115612606578384fd5b818501915085601f830112612619578384fd5b813581811115612627578485fd5b866020828501011115612593578485fd5b600060208284031215612649578081fd5b5035919050565b6000815180845261266881602086016020860161290c565b601f01601f19169290920160200192915050565b6000815161268e81856020860161290c565b9290920192915050565b600080845482600182811c9150808316806126b457607f831692505b60208084108214156126d457634e487b7160e01b87526022600452602487fd5b8180156126e857600181146126f957612725565b60ff19861689528489019650612725565b60008b815260209020885b8681101561271d5781548b820152908501908301612704565b505084890196505b505050505050612735818561267c565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277190830184612650565b9695505050505050565b6020815260006123896020830184612650565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128bd576128bd6129a2565b500190565b6000826128d1576128d16129b8565b500490565b60008160001904831182151516156128f0576128f06129a2565b500290565b600082821015612907576129076129a2565b500390565b60005b8381101561292757818101518382015260200161290f565b838111156114e65750506000910152565b600181811c9082168061294c57607f821691505b6020821081141561296d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612987576129876129a2565b5060010190565b60008261299d5761299d6129b8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c2557600080fdfea264697066735822122064dc277f051086c991469d23dd60264656f002d8df716086fab0c9574d7d123e64736f6c63430008040033

Deployed Bytecode Sourcemap

48269:4912:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39782:300;;;;;;;;;;-1:-1:-1;39782:300:0;;;;;:::i;:::-;;:::i;:::-;;;7377:14:1;;7370:22;7352:41;;7340:2;7325:18;39782:300:0;;;;;;;;52478:86;;;;;;;;;;;;;:::i;:::-;;26942:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28635:308::-;;;;;;;;;;-1:-1:-1;28635:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6675:32:1;;;6657:51;;6645:2;6630:18;28635:308:0;6612:102:1;28158:411:0;;;;;;;;;;-1:-1:-1;28158:411:0;;;;;:::i;:::-;;:::i;40585:113::-;;;;;;;;;;-1:-1:-1;40673:10:0;:17;40585:113;;;19462:25:1;;;19450:2;19435:18;40585:113:0;19417:76:1;29694:376:0;;;;;;;;;;-1:-1:-1;29694:376:0;;;;;:::i;:::-;;:::i;40166:343::-;;;;;;;;;;-1:-1:-1;40166:343:0;;;;;:::i;:::-;;:::i;51855:160::-;;;;;;;;;;;;;:::i;48405:42::-;;;;;;;;;;;;48443:4;48405:42;;30141:185;;;;;;;;;;-1:-1:-1;30141:185:0;;;;;:::i;:::-;;:::i;40775:320::-;;;;;;;;;;-1:-1:-1;40775:320:0;;;;;:::i;:::-;;:::i;52699:108::-;;;;;;;;;;-1:-1:-1;52699:108:0;;;;;:::i;:::-;;:::i;49210:34::-;;;;;;;;;;;;;;;;52146:130;;;;;;;;;;-1:-1:-1;52146:130:0;;;;;:::i;:::-;-1:-1:-1;;;;;52241:27:0;52214:7;52241:27;;;:21;:27;;;;;;;52146:130;26549:326;;;;;;;;;;-1:-1:-1;26549:326:0;;;;;:::i;:::-;;:::i;48632:49::-;;;;;;;;;;;;48680:1;48632:49;;48577:48;;;;;;;;;;;;48624:1;48577:48;;26192:295;;;;;;;;;;-1:-1:-1;26192:295:0;;;;;:::i;:::-;;:::i;9649:94::-;;;;;;;;;;;;;:::i;48355:43::-;;;;;;;;;;;;48394:4;48355:43;;49556:354;;;;;;;;;;-1:-1:-1;49556:354:0;;;;;:::i;:::-;;:::i;52371:95::-;;;;;;;;;;;;;:::i;51072:775::-;;;;;;:::i;:::-;;:::i;49297:23::-;;;;;;;;;;-1:-1:-1;49297:23:0;;;;;;;;8998:87;;;;;;;;;;-1:-1:-1;9071:6:0;;-1:-1:-1;;;;;9071:6:0;8998:87;;52576:111;;;;;;;;;;-1:-1:-1;52576:111:0;;;;;:::i;:::-;;:::i;27111:104::-;;;;;;;;;;;;;:::i;52284:75::-;;;;;;;;;;;;;:::i;48739:56::-;;;;;;;;;;-1:-1:-1;48739:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;48688:44;;;;;;;;;;-1:-1:-1;48688:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;52027:107;;;;;;;;;;-1:-1:-1;52027:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;52108:18:0;52084:4;52108:18;;;:12;:18;;;;;;;;;52027:107;29015:327;;;;;;;;;;-1:-1:-1;29015:327:0;;;;;:::i;:::-;;:::i;49918:308::-;;;;;;;;;;-1:-1:-1;49918:308:0;;;;;:::i;:::-;;:::i;30397:365::-;;;;;;;;;;-1:-1:-1;30397:365:0;;;;;:::i;:::-;;:::i;52924:254::-;;;;;;;;;;-1:-1:-1;52924:254:0;;;;;:::i;:::-;;:::i;49354:18::-;;;;;;;;;;-1:-1:-1;49354:18:0;;;;;;;;;;;48523:47;;;;;;;;;;;;48560:10;48523:47;;50516:544;;;;;;:::i;:::-;;:::i;48454:62::-;;;;;;;;;;;;;:::i;49327:20::-;;;;;;;;;;-1:-1:-1;49327:20:0;;;;;;;;;;;52815:97;;;;;;;;;;;;;:::i;29413:214::-;;;;;;;;;;-1:-1:-1;29413:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29584:25:0;;;29555:4;29584:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29413:214;9898:229;;;;;;;;;;-1:-1:-1;9898:229:0;;;;;:::i;:::-;;:::i;50234:276::-;;;;;;;;;;-1:-1:-1;50234:276:0;;;;;:::i;:::-;;:::i;49251:39::-;;;;;;;;;;;;;;;;39782:300;39929:4;-1:-1:-1;;;;;;39971:50:0;;-1:-1:-1;;;39971:50:0;;:103;;;40038:36;40062:11;40038:23;:36::i;:::-;39951:123;39782:300;-1:-1:-1;;39782:300:0:o;52478:86::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;;;;;;;;;52548:8:::1;::::0;;-1:-1:-1;;52536:20:0;::::1;52548:8;::::0;;;::::1;;;52547:9;52536:20:::0;;::::1;;::::0;;52478:86::o;26942:100::-;26996:13;27029:5;27022:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26942:100;:::o;28635:308::-;28756:7;32398:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32398:16:0;28781:110;;;;-1:-1:-1;;;28781:110:0;;14626:2:1;28781:110:0;;;14608:21:1;14665:2;14645:18;;;14638:30;14704:34;14684:18;;;14677:62;-1:-1:-1;;;14755:18:1;;;14748:42;14807:19;;28781:110:0;14598:234:1;28781:110:0;-1:-1:-1;28911:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28911:24:0;;28635:308::o;28158:411::-;28239:13;28255:23;28270:7;28255:14;:23::i;:::-;28239:39;;28303:5;-1:-1:-1;;;;;28297:11:0;:2;-1:-1:-1;;;;;28297:11:0;;;28289:57;;;;-1:-1:-1;;;28289:57:0;;16917:2:1;28289:57:0;;;16899:21:1;16956:2;16936:18;;;16929:30;16995:34;16975:18;;;16968:62;-1:-1:-1;;;17046:18:1;;;17039:31;17087:19;;28289:57:0;16889:223:1;28289:57:0;2051:10;-1:-1:-1;;;;;28381:21:0;;;;:62;;-1:-1:-1;28406:37:0;28423:5;2051:10;29413:214;:::i;28406:37::-;28359:168;;;;-1:-1:-1;;;28359:168:0;;12663:2:1;28359:168:0;;;12645:21:1;12702:2;12682:18;;;12675:30;12741:34;12721:18;;;12714:62;12812:26;12792:18;;;12785:54;12856:19;;28359:168:0;12635:246:1;28359:168:0;28540:21;28549:2;28553:7;28540:8;:21::i;:::-;28158:411;;;:::o;29694:376::-;29903:41;2051:10;29936:7;29903:18;:41::i;:::-;29881:140;;;;-1:-1:-1;;;29881:140:0;;;;;;;:::i;:::-;30034:28;30044:4;30050:2;30054:7;30034:9;:28::i;40166:343::-;40308:7;40363:23;40380:5;40363:16;:23::i;:::-;40355:5;:31;40333:124;;;;-1:-1:-1;;;40333:124:0;;8514:2:1;40333:124:0;;;8496:21:1;8553:2;8533:18;;;8526:30;8592:34;8572:18;;;8565:62;-1:-1:-1;;;8643:18:1;;;8636:41;8694:19;;40333:124:0;8486:233:1;40333:124:0;-1:-1:-1;;;;;;40475:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40166:343::o;51855:160::-;51903:7;;-1:-1:-1;;;;;51903:7:0;51895:53;51921:26;51945:2;51921:21;:26;:::i;:::-;51895:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51967:7:0;;51959:48;;-1:-1:-1;;;;;51967:7:0;;;;51985:21;51959:48;;;;;51967:7;51959:48;51967:7;51959:48;51985:21;51967:7;51959:48;;;;;;;;;;;;;;;;;;;;;51855:160::o;30141:185::-;30279:39;30296:4;30302:2;30306:7;30279:39;;;;;;;;;;;;:16;:39::i;40775:320::-;40895:7;40950:30;40673:10;:17;;40585:113;40950:30;40942:5;:38;40920:132;;;;-1:-1:-1;;;40920:132:0;;18076:2:1;40920:132:0;;;18058:21:1;18115:2;18095:18;;;18088:30;18154:34;18134:18;;;18127:62;-1:-1:-1;;;18205:18:1;;;18198:42;18257:19;;40920:132:0;18048:234:1;40920:132:0;41070:10;41081:5;41070:17;;;;;;-1:-1:-1;;;41070:17:0;;;;;;;;;;;;;;;;;41063:24;;40775:320;;;:::o;52699:108::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;49477:6:::1;::::0;;;::::1;;;49476:7;49468:56;;;;-1:-1:-1::0;;;49468:56:0::1;;;;;;;:::i;:::-;52780:19:::2;:13;52796:3:::0;;52780:19:::2;:::i;26549:326::-:0;26666:7;26707:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26707:16:0;26756:19;26734:110;;;;-1:-1:-1;;;26734:110:0;;13499:2:1;26734:110:0;;;13481:21:1;13538:2;13518:18;;;13511:30;13577:34;13557:18;;;13550:62;-1:-1:-1;;;13628:18:1;;;13621:39;13677:19;;26734:110:0;13471:231:1;26192:295:0;26309:7;-1:-1:-1;;;;;26356:19:0;;26334:111;;;;-1:-1:-1;;;26334:111:0;;13088:2:1;26334:111:0;;;13070:21:1;13127:2;13107:18;;;13100:30;13166:34;13146:18;;;13139:62;-1:-1:-1;;;13217:18:1;;;13210:40;13267:19;;26334:111:0;13060:232:1;26334:111:0;-1:-1:-1;;;;;;26463:16:0;;;;;:9;:16;;;;;;;26192:295::o;9649:94::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;9714:21:::1;9732:1;9714:9;:21::i;:::-;9649:94::o:0;49556:354::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;49644:9:::1;49640:260;49659:18:::0;;::::1;49640:260;;;49699:13;49715:7;;49723:1;49715:10;;;;;-1:-1:-1::0;;;49715:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49699:26:::0;-1:-1:-1;;;;;;49748:19:0;::::1;49740:44;;;::::0;-1:-1:-1;;;49740:44:0;;8173:2:1;49740:44:0::1;::::0;::::1;8155:21:1::0;8212:2;8192:18;;;8185:30;-1:-1:-1;;;8231:18:1;;;8224:42;8283:18;;49740:44:0::1;8145:162:1::0;49740:44:0::1;-1:-1:-1::0;;;;;49808:19:0;::::1;;::::0;;;:12:::1;:19;::::0;;;;;::::1;;49807:20;49799:48;;;::::0;-1:-1:-1;;;49799:48:0;;11978:2:1;49799:48:0::1;::::0;::::1;11960:21:1::0;12017:2;11997:18;;;11990:30;-1:-1:-1;;;12036:18:1;;;12029:45;12091:18;;49799:48:0::1;11950:165:1::0;49799:48:0::1;-1:-1:-1::0;;;;;49862:19:0::1;;::::0;;;:12:::1;:19;::::0;;;;:26;;-1:-1:-1;;49862:26:0::1;49884:4;49862:26;::::0;;49679:3;::::1;::::0;::::1;:::i;:::-;;;;49640:260;;52371:95:::0;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;52447:11:::1;::::0;;-1:-1:-1;;52432:26:0;::::1;52447:11;::::0;;::::1;52446:12;52432:26;::::0;;52371:95::o;51072:775::-;51152:8;;;;;;;51151:9;:24;;;;-1:-1:-1;51164:11:0;;;;51151:24;51143:51;;;;-1:-1:-1;;;51143:51:0;;7830:2:1;51143:51:0;;;7812:21:1;7869:2;7849:18;;;7842:30;-1:-1:-1;;;7888:18:1;;;7881:44;7942:18;;51143:51:0;7802:164:1;51143:51:0;51226:10;51213:24;;;;:12;:24;;;;;;;;51205:50;;;;-1:-1:-1;;;51205:50:0;;16215:2:1;51205:50:0;;;16197:21:1;16254:2;16234:18;;;16227:30;-1:-1:-1;;;16273:18:1;;;16266:43;16326:18;;51205:50:0;16187:163:1;51205:50:0;48394:4;51296:13;51274:19;;:35;;;;:::i;:::-;:51;;51266:78;;;;-1:-1:-1;;;51266:78:0;;18489:2:1;51266:78:0;;;18471:21:1;18528:2;18508:18;;;18501:30;-1:-1:-1;;;18547:18:1;;;18540:44;18601:18;;51266:78:0;18461:164:1;51266:78:0;48680:1;51363:13;:38;;51355:79;;;;-1:-1:-1;;;51355:79:0;;11208:2:1;51355:79:0;;;11190:21:1;11247:2;11227:18;;;11220:30;11286;11266:18;;;11259:58;11334:18;;51355:79:0;11180:178:1;51355:79:0;51506:20;;51475:10;51453:33;;;;:21;:33;;;;;;:49;;51489:13;;51453:49;:::i;:::-;:73;;51445:98;;;;-1:-1:-1;;;51445:98:0;;18832:2:1;51445:98:0;;;18814:21:1;18871:2;18851:18;;;18844:30;-1:-1:-1;;;18890:18:1;;;18883:42;18942:18;;51445:98:0;18804:162:1;51445:98:0;51592:9;51562:26;51575:13;48560:10;51562:26;:::i;:::-;:39;;51554:68;;;;-1:-1:-1;;;51554:68:0;;19173:2:1;51554:68:0;;;19155:21:1;19212:2;19192:18;;;19185:30;-1:-1:-1;;;19231:18:1;;;19224:46;19287:18;;51554:68:0;19145:166:1;51554:68:0;51648:9;51643:197;51667:13;51663:1;:17;51643:197;;;51702:19;:21;;;:19;:21;;;:::i;:::-;;;;-1:-1:-1;;51760:10:0;51738:33;;;;:21;:33;;;;;:35;;;;;;:::i;:::-;;;;;;51788:40;51798:10;51810:13;40673:10;:17;;40585:113;51810:13;:17;;51826:1;51810:17;:::i;:::-;51788:9;:40::i;:::-;51682:3;;;;:::i;:::-;;;;51643:197;;;;51072:775;:::o;52576:111::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;49477:6:::1;::::0;;;::::1;;;49476:7;49468:56;;;;-1:-1:-1::0;;;49468:56:0::1;;;;;;;:::i;:::-;52661:18:::2;:12;52676:3:::0;;52661:18:::2;:::i;27111:104::-:0;27167:13;27200:7;27193:14;;;;;:::i;52284:75::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;52338:6:::1;:13:::0;;-1:-1:-1;;52338:13:0::1;::::0;::::1;::::0;;52284:75::o;29015:327::-;-1:-1:-1;;;;;29150:24:0;;2051:10;29150:24;;29142:62;;;;-1:-1:-1;;;29142:62:0;;10514:2:1;29142:62:0;;;10496:21:1;10553:2;10533:18;;;10526:30;10592:27;10572:18;;;10565:55;10637:18;;29142:62:0;10486:175:1;29142:62:0;2051:10;29217:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29217:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29217:53:0;;;;;;;;;;29286:48;;7352:41:1;;;29217:42:0;;2051:10;29286:48;;7325:18:1;29286:48:0;;;;;;;29015:327;;:::o;49918:308::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;50011:9:::1;50007:212;50026:18:::0;;::::1;50007:212;;;50066:13;50082:7;;50090:1;50082:10;;;;;-1:-1:-1::0;;;50082:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50066:26:::0;-1:-1:-1;;;;;;50115:19:0;::::1;50107:44;;;::::0;-1:-1:-1;;;50107:44:0;;8173:2:1;50107:44:0::1;::::0;::::1;8155:21:1::0;8212:2;8192:18;;;8185:30;-1:-1:-1;;;8231:18:1;;;8224:42;8283:18;;50107:44:0::1;8145:162:1::0;50107:44:0::1;-1:-1:-1::0;;;;;50180:19:0::1;50202:5;50180:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;50180:27:0::1;::::0;;50046:3;::::1;::::0;::::1;:::i;:::-;;;;50007:212;;30397:365:::0;30586:41;2051:10;30619:7;30586:18;:41::i;:::-;30564:140;;;;-1:-1:-1;;;30564:140:0;;;;;;;:::i;:::-;30715:39;30729:4;30735:2;30739:7;30748:5;30715:13;:39::i;:::-;30397:365;;;;:::o;52924:254::-;32374:4;32398:16;;;:7;:16;;;;;;52997:13;;-1:-1:-1;;;;;32398:16:0;53023:60;;;;-1:-1:-1;;;53023:60:0;;16557:2:1;53023:60:0;;;16539:21:1;16596:2;16576:18;;;16569:30;16635:33;16615:18;;;16608:61;16686:18;;53023:60:0;16529:181:1;53023:60:0;53135:13;53150:18;:7;:16;:18::i;:::-;53118:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53104:66;;52924:254;;;:::o;50516:544::-;50588:8;;;;;;;50580:32;;;;-1:-1:-1;;;50580:32:0;;10868:2:1;50580:32:0;;;10850:21:1;10907:2;10887:18;;;10880:30;-1:-1:-1;;;10926:18:1;;;10919:41;10977:18;;50580:32:0;10840:161:1;50580:32:0;50632:11;;;;50631:12;50623:37;;;;-1:-1:-1;;;50623:37:0;;12322:2:1;50623:37:0;;;12304:21:1;12361:2;12341:18;;;12334:30;-1:-1:-1;;;12380:18:1;;;12373:42;12432:18;;50623:37:0;12294:162:1;50623:37:0;48490:26;48443:4;48394;48490:26;:::i;:::-;50695:13;50679;40673:10;:17;;40585:113;50679:13;:29;;;;:::i;:::-;:41;;50671:64;;;;-1:-1:-1;;;50671:64:0;;17319:2:1;50671:64:0;;;17301:21:1;17358:2;17338:18;;;17331:30;-1:-1:-1;;;17377:18:1;;;17370:40;17427:18;;50671:64:0;17291:160:1;50671:64:0;48624:1;50754:13;:37;;50746:77;;;;-1:-1:-1;;;50746:77:0;;13909:2:1;50746:77:0;;;13891:21:1;13948:2;13928:18;;;13921:30;13987:29;13967:18;;;13960:57;14034:18;;50746:77:0;13881:177:1;50746:77:0;50872:9;50842:26;50855:13;48560:10;50842:26;:::i;:::-;:39;;50834:68;;;;-1:-1:-1;;;50834:68:0;;19173:2:1;50834:68:0;;;19155:21:1;19212:2;19192:18;;;19185:30;-1:-1:-1;;;19231:18:1;;;19224:46;19287:18;;50834:68:0;19145:166:1;50834:68:0;50927:9;50923:110;50946:13;50942:1;:17;50923:110;;;50981:40;50991:10;51003:13;40673:10;:17;;40585:113;50981:40;50961:3;;;;:::i;:::-;;;;50923:110;;48454:62;48490:26;48443:4;48394;48490:26;:::i;:::-;48454:62;:::o;52815:97::-;52859:13;52892:12;52885:19;;;;;:::i;9898:229::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10001:22:0;::::1;9979:110;;;::::0;-1:-1:-1;;;9979:110:0;;9345:2:1;9979:110:0::1;::::0;::::1;9327:21:1::0;9384:2;9364:18;;;9357:30;9423:34;9403:18;;;9396:62;-1:-1:-1;;;9474:18:1;;;9467:36;9520:19;;9979:110:0::1;9317:228:1::0;9979:110:0::1;10100:19;10110:8;10100:9;:19::i;50234:276::-:0;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;48490:26:::1;48443:4;48394;48490:26;:::i;:::-;50332:13;50316;40673:10:::0;:17;;40585:113;50316:13:::1;:29;;;;:::i;:::-;:41;;50308:64;;;::::0;-1:-1:-1;;;50308:64:0;;17319:2:1;50308:64:0::1;::::0;::::1;17301:21:1::0;17358:2;17338:18;;;17331:30;-1:-1:-1;;;17377:18:1;;;17370:40;17427:18;;50308:64:0::1;17291:160:1::0;50308:64:0::1;50397:9;50393:110;50416:13;50412:1;:17;50393:110;;;50451:40;50461:10;50473:13;40673:10:::0;:17;;40585:113;50451:40:::1;50431:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50393:110;;25773:355:::0;25920:4;-1:-1:-1;;;;;;25962:40:0;;-1:-1:-1;;;25962:40:0;;:105;;-1:-1:-1;;;;;;;26019:48:0;;-1:-1:-1;;;26019:48:0;25962:105;:158;;;-1:-1:-1;;;;;;;;;;12278:40:0;;;26084:36;12119:207;36432:174;36507:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36507:29:0;-1:-1:-1;;;;;36507:29:0;;;;;;;;:24;;36561:23;36507:24;36561:14;:23::i;:::-;-1:-1:-1;;;;;36552:46:0;;;;;;;;;;;36432:174;;:::o;32603:452::-;32732:4;32398:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32398:16:0;32754:110;;;;-1:-1:-1;;;32754:110:0;;11565:2:1;32754:110:0;;;11547:21:1;11604:2;11584:18;;;11577:30;11643:34;11623:18;;;11616:62;-1:-1:-1;;;11694:18:1;;;11687:42;11746:19;;32754:110:0;11537:234:1;32754:110:0;32875:13;32891:23;32906:7;32891:14;:23::i;:::-;32875:39;;32944:5;-1:-1:-1;;;;;32933:16:0;:7;-1:-1:-1;;;;;32933:16:0;;:64;;;;32990:7;-1:-1:-1;;;;;32966:31:0;:20;32978:7;32966:11;:20::i;:::-;-1:-1:-1;;;;;32966:31:0;;32933:64;:113;;;-1:-1:-1;;;;;;29584:25:0;;;29555:4;29584:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33014:32;32925:122;32603:452;-1:-1:-1;;;;32603:452:0:o;35699:615::-;35872:4;-1:-1:-1;;;;;35845:31:0;:23;35860:7;35845:14;:23::i;:::-;-1:-1:-1;;;;;35845:31:0;;35823:122;;;;-1:-1:-1;;;35823:122:0;;15400:2:1;35823:122:0;;;15382:21:1;15439:2;15419:18;;;15412:30;15478:34;15458:18;;;15451:62;-1:-1:-1;;;15529:18:1;;;15522:39;15578:19;;35823:122:0;15372:231:1;35823:122:0;-1:-1:-1;;;;;35964:16:0;;35956:65;;;;-1:-1:-1;;;35956:65:0;;10109:2:1;35956:65:0;;;10091:21:1;10148:2;10128:18;;;10121:30;10187:34;10167:18;;;10160:62;-1:-1:-1;;;10238:18:1;;;10231:34;10282:19;;35956:65:0;10081:226:1;35956:65:0;36034:39;36055:4;36061:2;36065:7;36034:20;:39::i;:::-;36138:29;36155:1;36159:7;36138:8;:29::i;:::-;-1:-1:-1;;;;;36180:15:0;;;;;;:9;:15;;;;;:20;;36199:1;;36180:15;:20;;36199:1;;36180:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36211:13:0;;;;;;:9;:13;;;;;:18;;36228:1;;36211:13;:18;;36228:1;;36211:18;:::i;:::-;;;;-1:-1:-1;;36240:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36240:21:0;-1:-1:-1;;;;;36240:21:0;;;;;;;;;36279:27;;36240:16;;36279:27;;;;;;;35699:615;;;:::o;10135:173::-;10210:6;;;-1:-1:-1;;;;;10227:17:0;;;-1:-1:-1;;;;;;10227:17:0;;;;;;;10260:40;;10210:6;;;10227:17;10210:6;;10260:40;;10191:16;;10260:40;10135:173;;:::o;33397:110::-;33473:26;33483:2;33487:7;33473:26;;;;;;;;;;;;:9;:26::i;31644:352::-;31801:28;31811:4;31817:2;31821:7;31801:9;:28::i;:::-;31862:48;31885:4;31891:2;31895:7;31904:5;31862:22;:48::i;:::-;31840:148;;;;-1:-1:-1;;;31840:148:0;;;;;;;:::i;12640:723::-;12696:13;12917:10;12913:53;;-1:-1:-1;;12944:10:0;;;;;;;;;;;;-1:-1:-1;;;12944:10:0;;;;;12640:723::o;12913:53::-;12991:5;12976:12;13032:78;13039:9;;13032:78;;13065:8;;;;:::i;:::-;;-1:-1:-1;13088:10:0;;-1:-1:-1;13096:2:0;13088:10;;:::i;:::-;;;13032:78;;;13120:19;13152:6;13142:17;;;;;;-1:-1:-1;;;13142:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13142:17:0;;13120:39;;13170:154;13177:10;;13170:154;;13204:11;13214:1;13204:11;;:::i;:::-;;-1:-1:-1;13273:10:0;13281:2;13273:5;:10;:::i;:::-;13260:24;;:2;:24;:::i;:::-;13247:39;;13230:6;13237;13230:14;;;;;;-1:-1:-1;;;13230:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13230:56:0;;;;;;;;-1:-1:-1;13301:11:0;13310:2;13301:11;;:::i;:::-;;;13170:154;;41708:589;-1:-1:-1;;;;;41914:18:0;;41910:187;;41949:40;41981:7;43124:10;:17;;43097:24;;;;:15;:24;;;;;:44;;;43152:24;;;;;;;;;;;;43020:164;41949:40;41910:187;;;42019:2;-1:-1:-1;;;;;42011:10:0;:4;-1:-1:-1;;;;;42011:10:0;;42007:90;;42038:47;42071:4;42077:7;42038:32;:47::i;:::-;-1:-1:-1;;;;;42111:16:0;;42107:183;;42144:45;42181:7;42144:36;:45::i;42107:183::-;42217:4;-1:-1:-1;;;;;42211:10:0;:2;-1:-1:-1;;;;;42211:10:0;;42207:83;;42238:40;42266:2;42270:7;42238:27;:40::i;33734:321::-;33864:18;33870:2;33874:7;33864:5;:18::i;:::-;33915:54;33946:1;33950:2;33954:7;33963:5;33915:22;:54::i;:::-;33893:154;;;;-1:-1:-1;;;33893:154:0;;;;;;;:::i;37171:984::-;37326:4;-1:-1:-1;;;;;37347:13:0;;15516:20;15564:8;37343:805;;37400:175;;-1:-1:-1;;;37400:175:0;;-1:-1:-1;;;;;37400:36:0;;;;;:175;;2051:10;;37494:4;;37521:7;;37551:5;;37400:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37400:175:0;;;;;;;;-1:-1:-1;;37400:175:0;;;;;;;;;;;;:::i;:::-;;;37379:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37762:13:0;;37758:320;;37805:108;;-1:-1:-1;;;37805:108:0;;;;;;;:::i;37758:320::-;38028:6;38022:13;38013:6;38009:2;38005:15;37998:38;37379:714;-1:-1:-1;;;;;;37639:55:0;-1:-1:-1;;;37639:55:0;;-1:-1:-1;37632:62:0;;37343:805;-1:-1:-1;38132:4:0;37171:984;;;;;;:::o;43811:1002::-;44091:22;44141:1;44116:22;44133:4;44116:16;:22::i;:::-;:26;;;;:::i;:::-;44153:18;44174:26;;;:17;:26;;;;;;44091:51;;-1:-1:-1;44307:28:0;;;44303:328;;-1:-1:-1;;;;;44374:18:0;;44352:19;44374:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44425:30;;;;;;:44;;;44542:30;;:17;:30;;;;;:43;;;44303:328;-1:-1:-1;44727:26:0;;;;:17;:26;;;;;;;;44720:33;;;-1:-1:-1;;;;;44771:18:0;;;;;:12;:18;;;;;:34;;;;;;;44764:41;43811:1002::o;45108:1079::-;45386:10;:17;45361:22;;45386:21;;45406:1;;45386:21;:::i;:::-;45418:18;45439:24;;;:15;:24;;;;;;45812:10;:26;;45361:46;;-1:-1:-1;45439:24:0;;45361:46;;45812:26;;;;-1:-1:-1;;;45812:26:0;;;;;;;;;;;;;;;;;45790:48;;45876:11;45851:10;45862;45851:22;;;;;;-1:-1:-1;;;45851:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;45956:28;;;:15;:28;;;;;;;:41;;;46128:24;;;;;46121:31;46163:10;:16;;;;;-1:-1:-1;;;46163:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45108:1079;;;;:::o;42598:221::-;42683:14;42700:20;42717:2;42700:16;:20::i;:::-;-1:-1:-1;;;;;42731:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42776:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42598:221:0:o;34391:382::-;-1:-1:-1;;;;;34471:16:0;;34463:61;;;;-1:-1:-1;;;34463:61:0;;14265:2:1;34463:61:0;;;14247:21:1;;;14284:18;;;14277:30;14343:34;14323:18;;;14316:62;14395:18;;34463:61:0;14237:182:1;34463:61:0;32374:4;32398:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32398:16:0;:30;34535:58;;;;-1:-1:-1;;;34535:58:0;;9752:2:1;34535:58:0;;;9734:21:1;9791:2;9771:18;;;9764:30;9830;9810:18;;;9803:58;9878:18;;34535:58:0;9724:178:1;34535:58:0;34606:45;34635:1;34639:2;34643:7;34606:20;:45::i;:::-;-1:-1:-1;;;;;34664:13:0;;;;;;:9;:13;;;;;:18;;34681:1;;34664:13;:18;;34681:1;;34664:18;:::i;:::-;;;;-1:-1:-1;;34693:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34693:21:0;-1:-1:-1;;;;;34693:21:0;;;;;;;;34732:33;;34693:16;;;34732:33;;34693:16;;34732:33;34391:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:665::-;2926:6;2934;2987:2;2975:9;2966:7;2962:23;2958:32;2955:2;;;3008:6;3000;2993:22;2955:2;3053:9;3040:23;3082:18;3123:2;3115:6;3112:14;3109:2;;;3144:6;3136;3129:22;3109:2;3187:6;3176:9;3172:22;3162:32;;3232:7;3225:4;3221:2;3217:13;3213:27;3203:2;;3259:6;3251;3244:22;3203:2;3304;3291:16;3330:2;3322:6;3319:14;3316:2;;;3351:6;3343;3336:22;3316:2;3409:7;3404:2;3394:6;3391:1;3387:14;3383:2;3379:23;3375:32;3372:45;3369:2;;;3435:6;3427;3420:22;3369:2;3471;3463:11;;;;;3493:6;;-1:-1:-1;2945:560:1;;-1:-1:-1;;;;2945:560:1:o;3510:255::-;3568:6;3621:2;3609:9;3600:7;3596:23;3592:32;3589:2;;;3642:6;3634;3627:22;3589:2;3686:9;3673:23;3705:30;3729:5;3705:30;:::i;3770:259::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3950:9;3944:16;3969:30;3993:5;3969:30;:::i;4034:642::-;4105:6;4113;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4187:6;4179;4172:22;4134:2;4232:9;4219:23;4261:18;4302:2;4294:6;4291:14;4288:2;;;4323:6;4315;4308:22;4288:2;4366:6;4355:9;4351:22;4341:32;;4411:7;4404:4;4400:2;4396:13;4392:27;4382:2;;4438:6;4430;4423:22;4382:2;4483;4470:16;4509:2;4501:6;4498:14;4495:2;;;4530:6;4522;4515:22;4495:2;4580:7;4575:2;4566:6;4562:2;4558:15;4554:24;4551:37;4548:2;;;4606:6;4598;4591:22;4681:190;4740:6;4793:2;4781:9;4772:7;4768:23;4764:32;4761:2;;;4814:6;4806;4799:22;4761:2;-1:-1:-1;4842:23:1;;4751:120;-1:-1:-1;4751:120:1:o;4876:257::-;4917:3;4955:5;4949:12;4982:6;4977:3;4970:19;4998:63;5054:6;5047:4;5042:3;5038:14;5031:4;5024:5;5020:16;4998:63;:::i;:::-;5115:2;5094:15;-1:-1:-1;;5090:29:1;5081:39;;;;5122:4;5077:50;;4925:208;-1:-1:-1;;4925:208:1:o;5138:185::-;5180:3;5218:5;5212:12;5233:52;5278:6;5273:3;5266:4;5259:5;5255:16;5233:52;:::i;:::-;5301:16;;;;;5188:135;-1:-1:-1;;5188:135:1:o;5328:1178::-;5504:3;5533;5568:6;5562:13;5598:3;5620:1;5648:9;5644:2;5640:18;5630:28;;5708:2;5697:9;5693:18;5730;5720:2;;5774:4;5766:6;5762:17;5752:27;;5720:2;5800;5848;5840:6;5837:14;5817:18;5814:38;5811:2;;;-1:-1:-1;;;5875:33:1;;5931:4;5928:1;5921:15;5961:4;5882:3;5949:17;5811:2;5992:18;6019:104;;;;6137:1;6132:322;;;;5985:469;;6019:104;-1:-1:-1;;6052:24:1;;6040:37;;6097:16;;;;-1:-1:-1;6019:104:1;;6132:322;19545:4;19564:17;;;19614:4;19598:21;;6227:3;6243:165;6257:6;6254:1;6251:13;6243:165;;;6335:14;;6322:11;;;6315:35;6378:16;;;;6272:10;;6243:165;;;6247:3;;6437:6;6432:3;6428:16;6421:23;;5985:469;;;;;;;6470:30;6496:3;6488:6;6470:30;:::i;:::-;6463:37;5512:994;-1:-1:-1;;;;;5512:994:1:o;6719:488::-;-1:-1:-1;;;;;6988:15:1;;;6970:34;;7040:15;;7035:2;7020:18;;7013:43;7087:2;7072:18;;7065:34;;;7135:3;7130:2;7115:18;;7108:31;;;6913:4;;7156:45;;7181:19;;7173:6;7156:45;:::i;:::-;7148:53;6922:285;-1:-1:-1;;;;;;6922:285:1:o;7404:219::-;7553:2;7542:9;7535:21;7516:4;7573:44;7613:2;7602:9;7598:18;7590:6;7573:44;:::i;8724:414::-;8926:2;8908:21;;;8965:2;8945:18;;;8938:30;9004:34;8999:2;8984:18;;8977:62;-1:-1:-1;;;9070:2:1;9055:18;;9048:48;9128:3;9113:19;;8898:240::o;14837:356::-;15039:2;15021:21;;;15058:18;;;15051:30;15117:34;15112:2;15097:18;;15090:62;15184:2;15169:18;;15011:182::o;15608:400::-;15810:2;15792:21;;;15849:2;15829:18;;;15822:30;15888:34;15883:2;15868:18;;15861:62;-1:-1:-1;;;15954:2:1;15939:18;;15932:34;15998:3;15983:19;;15782:226::o;17456:413::-;17658:2;17640:21;;;17697:2;17677:18;;;17670:30;17736:34;17731:2;17716:18;;17709:62;-1:-1:-1;;;17802:2:1;17787:18;;17780:47;17859:3;17844:19;;17630:239::o;19630:128::-;19670:3;19701:1;19697:6;19694:1;19691:13;19688:2;;;19707:18;;:::i;:::-;-1:-1:-1;19743:9:1;;19678:80::o;19763:120::-;19803:1;19829;19819:2;;19834:18;;:::i;:::-;-1:-1:-1;19868:9:1;;19809:74::o;19888:168::-;19928:7;19994:1;19990;19986:6;19982:14;19979:1;19976:21;19971:1;19964:9;19957:17;19953:45;19950:2;;;20001:18;;:::i;:::-;-1:-1:-1;20041:9:1;;19940:116::o;20061:125::-;20101:4;20129:1;20126;20123:8;20120:2;;;20134:18;;:::i;:::-;-1:-1:-1;20171:9:1;;20110:76::o;20191:258::-;20263:1;20273:113;20287:6;20284:1;20281:13;20273:113;;;20363:11;;;20357:18;20344:11;;;20337:39;20309:2;20302:10;20273:113;;;20404:6;20401:1;20398:13;20395:2;;;-1:-1:-1;;20439:1:1;20421:16;;20414:27;20244:205::o;20454:380::-;20533:1;20529:12;;;;20576;;;20597:2;;20651:4;20643:6;20639:17;20629:27;;20597:2;20704;20696:6;20693:14;20673:18;20670:38;20667:2;;;20750:10;20745:3;20741:20;20738:1;20731:31;20785:4;20782:1;20775:15;20813:4;20810:1;20803:15;20667:2;;20509:325;;;:::o;20839:135::-;20878:3;-1:-1:-1;;20899:17:1;;20896:2;;;20919:18;;:::i;:::-;-1:-1:-1;20966:1:1;20955:13;;20886:88::o;20979:112::-;21011:1;21037;21027:2;;21042:18;;:::i;:::-;-1:-1:-1;21076:9:1;;21017:74::o;21096:127::-;21157:10;21152:3;21148:20;21145:1;21138:31;21188:4;21185:1;21178:15;21212:4;21209:1;21202:15;21228:127;21289:10;21284:3;21280:20;21277:1;21270:31;21320:4;21317:1;21310:15;21344:4;21341:1;21334:15;21360:127;21421:10;21416:3;21412:20;21409:1;21402:31;21452:4;21449:1;21442:15;21476:4;21473:1;21466:15;21492:131;-1:-1:-1;;;;;;21566:32:1;;21556:43;;21546:2;;21613:1;21610;21603:12

Swarm Source

ipfs://64dc277f051086c991469d23dd60264656f002d8df716086fab0c9574d7d123e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.