ETH Price: $3,598.27 (+3.96%)
 

Overview

Max Total Supply

20,000 HiyakuBotBlocker

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ajinomotoo.eth
Balance
1 HiyakuBotBlocker
0xe1c55cae4a95e2e1989c1a955af16c7a9d14b5f7
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:
HiyakuBotBlockerNFT

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Hiyaku Token ANTI-BOT NFT
// Website: https://hiyakutoken.point.link (Web3.0)
// Twitter: https://twitter.com/hiyakutoken
// Telegram: https://t.me/hiyakutokenportal

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.1;
/**
 * @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/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);
    }

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

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

// File: @openzeppelin/contracts/token/ERC721/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/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

contract HiyakuBotBlockerNFT is ERC721("HiyakuBotBlocker", "HiyakuBotBlocker"), Ownable {
    
    uint256 tokenCounter = 1;
    string public baseURI = "https://hiyakutoken.point.link/botblocker.json"; //METADATA
    uint256 public maxMintAmount = 1;
    uint256 public MAX_TOKENS = 20000;
    
    using Strings for uint256;
    
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function setMaxTokens(uint256 _amount) public onlyOwner {
        MAX_TOKENS = _amount;
    }
    
    function _baseURI() internal view virtual override(ERC721) returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        baseURI = baseURI_;
    }

    function getUserBalance(address user) public view returns(uint256) {
        return balanceOf(user);
    }

    function totalSupply() public view returns(uint256) {
        return MAX_TOKENS;
    } 

    function mintedSupply() public view returns(uint256) {
        return tokenCounter - 1;
    }   
    
    function mint(uint256 _mintAmount) public payable {
        require(_mintAmount > 0, "Mint amount can't be zero.");
        require(tokenCounter + _mintAmount <= MAX_TOKENS, "ERC721: Max supply.");
        require(_mintAmount <= maxMintAmount, "Mint amount higher than limit.");
        require(balanceOf(_msgSender()) + _mintAmount <= maxMintAmount , "Total holding is limited.");  


        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_msgSender(), tokenCounter);
            tokenCounter = tokenCounter + 1;
        }
        
    }
    
    function withdraw() onlyOwner external {
        payable(owner()).transfer(address(this).balance);
    } 

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI)) : "";
    }
    
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600160075560e0604052602e60808181529062001e2460a03980516200002e9160089160209091019062000122565b506001600955614e20600a553480156200004757600080fd5b5060408051808201825260108082526f2434bcb0b5baa137ba213637b1b5b2b960811b602080840182815285518087019096529285528401528151919291620000939160009162000122565b508051620000a990600190602084019062000122565b505050620000c6620000c0620000cc60201b60201c565b620000d0565b62000205565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620001c8565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600281046001821680620001dd57607f821691505b60208210811415620001ff57634e487b7160e01b600052602260045260246000fd5b50919050565b611c0f80620002156000396000f3fe6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610415578063e985e9c514610435578063f2fde38b14610455578063f47c84c51461047557610181565b8063a22cb465146103c0578063b88d4fde146103e0578063c1bd8cf91461040057610181565b80636c0360eb1461033957806370a082311461034e578063715018a61461036e5780638da5cb5b1461038357806395d89b4114610398578063a0712d68146103ad57610181565b8063239c70ae1161013e57806342842e0e1161011857806342842e0e146102b957806347734892146102d957806355f804b3146102f95780636352211e1461031957610181565b8063239c70ae1461026f57806323b872dd146102845780633ccfd60b146102a457610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806311e776fe1461022d57806318160ddd1461024d575b600080fd5b34801561019257600080fd5b506101a66101a1366004611458565b61048a565b6040516101b39190611587565b60405180910390f35b3480156101c857600080fd5b506101d16104b7565b6040516101b39190611592565b3480156101ea57600080fd5b506101fe6101f93660046114d6565b610549565b6040516101b39190611536565b34801561021757600080fd5b5061022b61022636600461142f565b610595565b005b34801561023957600080fd5b5061022b6102483660046114d6565b61062d565b34801561025957600080fd5b50610262610671565b6040516101b39190611add565b34801561027b57600080fd5b50610262610677565b34801561029057600080fd5b5061022b61029f366004611341565b61067d565b3480156102b057600080fd5b5061022b6106b5565b3480156102c557600080fd5b5061022b6102d4366004611341565b610737565b3480156102e557600080fd5b506102626102f43660046112f5565b610752565b34801561030557600080fd5b5061022b610314366004611490565b61075d565b34801561032557600080fd5b506101fe6103343660046114d6565b6107b3565b34801561034557600080fd5b506101d16107e8565b34801561035a57600080fd5b506102626103693660046112f5565b610876565b34801561037a57600080fd5b5061022b6108ba565b34801561038f57600080fd5b506101fe610905565b3480156103a457600080fd5b506101d1610914565b61022b6103bb3660046114d6565b610923565b3480156103cc57600080fd5b5061022b6103db3660046113f5565b610a0b565b3480156103ec57600080fd5b5061022b6103fb36600461137c565b610ad9565b34801561040c57600080fd5b50610262610b18565b34801561042157600080fd5b506101d16104303660046114d6565b610b2e565b34801561044157600080fd5b506101a661045036600461130f565b610ba7565b34801561046157600080fd5b5061022b6104703660046112f5565b610bd5565b34801561048157600080fd5b50610262610c43565b60006001600160e01b0319821663780e9d6360e01b14806104af57506104af82610c49565b90505b919050565b6060600080546104c690611b41565b80601f01602080910402602001604051908101604052809291908181526020018280546104f290611b41565b801561053f5780601f106105145761010080835404028352916020019161053f565b820191906000526020600020905b81548152906001019060200180831161052257829003601f168201915b5050505050905090565b600061055482610c89565b6105795760405162461bcd60e51b8152600401610570906118c4565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105a0826107b3565b9050806001600160a01b0316836001600160a01b031614156105d45760405162461bcd60e51b815260040161057090611a4b565b806001600160a01b03166105e6610ca6565b6001600160a01b03161480610602575061060281610450610ca6565b61061e5760405162461bcd60e51b815260040161057090611768565b6106288383610caa565b505050565b610635610ca6565b6001600160a01b0316610646610905565b6001600160a01b03161461066c5760405162461bcd60e51b815260040161057090611947565b600a55565b600a5490565b60095481565b61068e610688610ca6565b82610d18565b6106aa5760405162461bcd60e51b815260040161057090611a8c565b610628838383610d9d565b6106bd610ca6565b6001600160a01b03166106ce610905565b6001600160a01b0316146106f45760405162461bcd60e51b815260040161057090611947565b6106fc610905565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610734573d6000803e3d6000fd5b50565b61062883838360405180602001604052806000815250610ad9565b60006104af82610876565b610765610ca6565b6001600160a01b0316610776610905565b6001600160a01b03161461079c5760405162461bcd60e51b815260040161057090611947565b80516107af9060089060208401906111cf565b5050565b6000818152600260205260408120546001600160a01b0316806104af5760405162461bcd60e51b815260040161057090611846565b600880546107f590611b41565b80601f016020809104026020016040519081016040528092919081815260200182805461082190611b41565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b505050505081565b60006001600160a01b03821661089e5760405162461bcd60e51b8152600401610570906117fc565b506001600160a01b031660009081526003602052604090205490565b6108c2610ca6565b6001600160a01b03166108d3610905565b6001600160a01b0316146108f95760405162461bcd60e51b815260040161057090611947565b6109036000610eca565b565b6006546001600160a01b031690565b6060600180546104c690611b41565b600081116109435760405162461bcd60e51b815260040161057090611910565b600a54816007546109549190611ae6565b11156109725760405162461bcd60e51b81526004016105709061173b565b6009548111156109945760405162461bcd60e51b815260040161057090611a14565b600954816109a3610369610ca6565b6109ad9190611ae6565b11156109cb5760405162461bcd60e51b8152600401610570906117c5565b60015b8181116107af576109e86109e0610ca6565b600754610f1c565b6007546109f6906001611ae6565b60075580610a0381611b7c565b9150506109ce565b610a13610ca6565b6001600160a01b0316826001600160a01b03161415610a445760405162461bcd60e51b8152600401610570906116b8565b8060056000610a51610ca6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a95610ca6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610acd9190611587565b60405180910390a35050565b610aea610ae4610ca6565b83610d18565b610b065760405162461bcd60e51b815260040161057090611a8c565b610b1284848484610f36565b50505050565b60006001600754610b299190611afe565b905090565b6060610b3982610c89565b610b555760405162461bcd60e51b8152600401610570906119c5565b6000610b5f610f69565b90506000815111610b7f5760405180602001604052806000815250610ba0565b80604051602001610b90919061151a565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610bdd610ca6565b6001600160a01b0316610bee610905565b6001600160a01b031614610c145760405162461bcd60e51b815260040161057090611947565b6001600160a01b038116610c3a5760405162461bcd60e51b8152600401610570906115f7565b61073481610eca565b600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610c7a57506001600160e01b03198216635b5e139f60e01b145b806104af57506104af82610f78565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cdf826107b3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d2382610c89565b610d3f5760405162461bcd60e51b8152600401610570906116ef565b6000610d4a836107b3565b9050806001600160a01b0316846001600160a01b03161480610d855750836001600160a01b0316610d7a84610549565b6001600160a01b0316145b80610d955750610d958185610ba7565b949350505050565b826001600160a01b0316610db0826107b3565b6001600160a01b031614610dd65760405162461bcd60e51b81526004016105709061197c565b6001600160a01b038216610dfc5760405162461bcd60e51b815260040161057090611674565b610e07838383610f91565b610e12600082610caa565b6001600160a01b0383166000908152600360205260408120805460019290610e3b908490611afe565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e69908490611ae6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107af828260405180602001604052806000815250610f9c565b610f41848484610d9d565b610f4d84848484610fcf565b610b125760405162461bcd60e51b8152600401610570906115a5565b6060600880546104c690611b41565b6001600160e01b031981166301ffc9a760e01b14919050565b610628838383610628565b610fa683836110ea565b610fb36000848484610fcf565b6106285760405162461bcd60e51b8152600401610570906115a5565b6000610fe3846001600160a01b03166111c9565b156110df57836001600160a01b031663150b7a02610fff610ca6565b8786866040518563ffffffff1660e01b8152600401611021949392919061154a565b602060405180830381600087803b15801561103b57600080fd5b505af192505050801561106b575060408051601f3d908101601f1916820190925261106891810190611474565b60015b6110c5573d808015611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5080516110bd5760405162461bcd60e51b8152600401610570906115a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d95565b506001949350505050565b6001600160a01b0382166111105760405162461bcd60e51b81526004016105709061188f565b61111981610c89565b156111365760405162461bcd60e51b81526004016105709061163d565b61114260008383610f91565b6001600160a01b038216600090815260036020526040812080546001929061116b908490611ae6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546111db90611b41565b90600052602060002090601f0160209004810192826111fd5760008555611243565b82601f1061121657805160ff1916838001178555611243565b82800160010185558215611243579182015b82811115611243578251825591602001919060010190611228565b5061124f929150611253565b5090565b5b8082111561124f5760008155600101611254565b600067ffffffffffffffff8084111561128357611283611bad565b604051601f8501601f19908116603f011681019082821181831017156112ab576112ab611bad565b816040528093508581528686860111156112c457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146104b257600080fd5b600060208284031215611306578081fd5b610ba0826112de565b60008060408385031215611321578081fd5b61132a836112de565b9150611338602084016112de565b90509250929050565b600080600060608486031215611355578081fd5b61135e846112de565b925061136c602085016112de565b9150604084013590509250925092565b60008060008060808587031215611391578081fd5b61139a856112de565b93506113a8602086016112de565b925060408501359150606085013567ffffffffffffffff8111156113ca578182fd5b8501601f810187136113da578182fd5b6113e987823560208401611268565b91505092959194509250565b60008060408385031215611407578182fd5b611410836112de565b915060208301358015158114611424578182fd5b809150509250929050565b60008060408385031215611441578182fd5b61144a836112de565b946020939093013593505050565b600060208284031215611469578081fd5b8135610ba081611bc3565b600060208284031215611485578081fd5b8151610ba081611bc3565b6000602082840312156114a1578081fd5b813567ffffffffffffffff8111156114b7578182fd5b8201601f810184136114c7578182fd5b610d9584823560208401611268565b6000602082840312156114e7578081fd5b5035919050565b60008151808452611506816020860160208601611b15565b601f01601f19169290920160200192915050565b6000825161152c818460208701611b15565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061157d908301846114ee565b9695505050505050565b901515815260200190565b600060208252610ba060208301846114ee565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526013908201527222a9219b99189d1026b0bc1039bab838363c9760691b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526019908201527f546f74616c20686f6c64696e67206973206c696d697465642e00000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601e908201527f4d696e7420616d6f756e7420686967686572207468616e206c696d69742e0000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611af957611af9611b97565b500190565b600082821015611b1057611b10611b97565b500390565b60005b83811015611b30578181015183820152602001611b18565b83811115610b125750506000910152565b600281046001821680611b5557607f821691505b60208210811415611b7657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b9057611b90611b97565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461073457600080fdfea26469706673582212203bb4ed022e7d8fe5e259bec5e1fcd7de04aed1149b1b513a97aea1e69afa333564736f6c6343000801003368747470733a2f2f686979616b75746f6b656e2e706f696e742e6c696e6b2f626f74626c6f636b65722e6a736f6e

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610415578063e985e9c514610435578063f2fde38b14610455578063f47c84c51461047557610181565b8063a22cb465146103c0578063b88d4fde146103e0578063c1bd8cf91461040057610181565b80636c0360eb1461033957806370a082311461034e578063715018a61461036e5780638da5cb5b1461038357806395d89b4114610398578063a0712d68146103ad57610181565b8063239c70ae1161013e57806342842e0e1161011857806342842e0e146102b957806347734892146102d957806355f804b3146102f95780636352211e1461031957610181565b8063239c70ae1461026f57806323b872dd146102845780633ccfd60b146102a457610181565b806301ffc9a71461018657806306fdde03146101bc578063081812fc146101de578063095ea7b31461020b57806311e776fe1461022d57806318160ddd1461024d575b600080fd5b34801561019257600080fd5b506101a66101a1366004611458565b61048a565b6040516101b39190611587565b60405180910390f35b3480156101c857600080fd5b506101d16104b7565b6040516101b39190611592565b3480156101ea57600080fd5b506101fe6101f93660046114d6565b610549565b6040516101b39190611536565b34801561021757600080fd5b5061022b61022636600461142f565b610595565b005b34801561023957600080fd5b5061022b6102483660046114d6565b61062d565b34801561025957600080fd5b50610262610671565b6040516101b39190611add565b34801561027b57600080fd5b50610262610677565b34801561029057600080fd5b5061022b61029f366004611341565b61067d565b3480156102b057600080fd5b5061022b6106b5565b3480156102c557600080fd5b5061022b6102d4366004611341565b610737565b3480156102e557600080fd5b506102626102f43660046112f5565b610752565b34801561030557600080fd5b5061022b610314366004611490565b61075d565b34801561032557600080fd5b506101fe6103343660046114d6565b6107b3565b34801561034557600080fd5b506101d16107e8565b34801561035a57600080fd5b506102626103693660046112f5565b610876565b34801561037a57600080fd5b5061022b6108ba565b34801561038f57600080fd5b506101fe610905565b3480156103a457600080fd5b506101d1610914565b61022b6103bb3660046114d6565b610923565b3480156103cc57600080fd5b5061022b6103db3660046113f5565b610a0b565b3480156103ec57600080fd5b5061022b6103fb36600461137c565b610ad9565b34801561040c57600080fd5b50610262610b18565b34801561042157600080fd5b506101d16104303660046114d6565b610b2e565b34801561044157600080fd5b506101a661045036600461130f565b610ba7565b34801561046157600080fd5b5061022b6104703660046112f5565b610bd5565b34801561048157600080fd5b50610262610c43565b60006001600160e01b0319821663780e9d6360e01b14806104af57506104af82610c49565b90505b919050565b6060600080546104c690611b41565b80601f01602080910402602001604051908101604052809291908181526020018280546104f290611b41565b801561053f5780601f106105145761010080835404028352916020019161053f565b820191906000526020600020905b81548152906001019060200180831161052257829003601f168201915b5050505050905090565b600061055482610c89565b6105795760405162461bcd60e51b8152600401610570906118c4565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105a0826107b3565b9050806001600160a01b0316836001600160a01b031614156105d45760405162461bcd60e51b815260040161057090611a4b565b806001600160a01b03166105e6610ca6565b6001600160a01b03161480610602575061060281610450610ca6565b61061e5760405162461bcd60e51b815260040161057090611768565b6106288383610caa565b505050565b610635610ca6565b6001600160a01b0316610646610905565b6001600160a01b03161461066c5760405162461bcd60e51b815260040161057090611947565b600a55565b600a5490565b60095481565b61068e610688610ca6565b82610d18565b6106aa5760405162461bcd60e51b815260040161057090611a8c565b610628838383610d9d565b6106bd610ca6565b6001600160a01b03166106ce610905565b6001600160a01b0316146106f45760405162461bcd60e51b815260040161057090611947565b6106fc610905565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610734573d6000803e3d6000fd5b50565b61062883838360405180602001604052806000815250610ad9565b60006104af82610876565b610765610ca6565b6001600160a01b0316610776610905565b6001600160a01b03161461079c5760405162461bcd60e51b815260040161057090611947565b80516107af9060089060208401906111cf565b5050565b6000818152600260205260408120546001600160a01b0316806104af5760405162461bcd60e51b815260040161057090611846565b600880546107f590611b41565b80601f016020809104026020016040519081016040528092919081815260200182805461082190611b41565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b505050505081565b60006001600160a01b03821661089e5760405162461bcd60e51b8152600401610570906117fc565b506001600160a01b031660009081526003602052604090205490565b6108c2610ca6565b6001600160a01b03166108d3610905565b6001600160a01b0316146108f95760405162461bcd60e51b815260040161057090611947565b6109036000610eca565b565b6006546001600160a01b031690565b6060600180546104c690611b41565b600081116109435760405162461bcd60e51b815260040161057090611910565b600a54816007546109549190611ae6565b11156109725760405162461bcd60e51b81526004016105709061173b565b6009548111156109945760405162461bcd60e51b815260040161057090611a14565b600954816109a3610369610ca6565b6109ad9190611ae6565b11156109cb5760405162461bcd60e51b8152600401610570906117c5565b60015b8181116107af576109e86109e0610ca6565b600754610f1c565b6007546109f6906001611ae6565b60075580610a0381611b7c565b9150506109ce565b610a13610ca6565b6001600160a01b0316826001600160a01b03161415610a445760405162461bcd60e51b8152600401610570906116b8565b8060056000610a51610ca6565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610a95610ca6565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610acd9190611587565b60405180910390a35050565b610aea610ae4610ca6565b83610d18565b610b065760405162461bcd60e51b815260040161057090611a8c565b610b1284848484610f36565b50505050565b60006001600754610b299190611afe565b905090565b6060610b3982610c89565b610b555760405162461bcd60e51b8152600401610570906119c5565b6000610b5f610f69565b90506000815111610b7f5760405180602001604052806000815250610ba0565b80604051602001610b90919061151a565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610bdd610ca6565b6001600160a01b0316610bee610905565b6001600160a01b031614610c145760405162461bcd60e51b815260040161057090611947565b6001600160a01b038116610c3a5760405162461bcd60e51b8152600401610570906115f7565b61073481610eca565b600a5481565b60006001600160e01b031982166380ac58cd60e01b1480610c7a57506001600160e01b03198216635b5e139f60e01b145b806104af57506104af82610f78565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cdf826107b3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610d2382610c89565b610d3f5760405162461bcd60e51b8152600401610570906116ef565b6000610d4a836107b3565b9050806001600160a01b0316846001600160a01b03161480610d855750836001600160a01b0316610d7a84610549565b6001600160a01b0316145b80610d955750610d958185610ba7565b949350505050565b826001600160a01b0316610db0826107b3565b6001600160a01b031614610dd65760405162461bcd60e51b81526004016105709061197c565b6001600160a01b038216610dfc5760405162461bcd60e51b815260040161057090611674565b610e07838383610f91565b610e12600082610caa565b6001600160a01b0383166000908152600360205260408120805460019290610e3b908490611afe565b90915550506001600160a01b0382166000908152600360205260408120805460019290610e69908490611ae6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107af828260405180602001604052806000815250610f9c565b610f41848484610d9d565b610f4d84848484610fcf565b610b125760405162461bcd60e51b8152600401610570906115a5565b6060600880546104c690611b41565b6001600160e01b031981166301ffc9a760e01b14919050565b610628838383610628565b610fa683836110ea565b610fb36000848484610fcf565b6106285760405162461bcd60e51b8152600401610570906115a5565b6000610fe3846001600160a01b03166111c9565b156110df57836001600160a01b031663150b7a02610fff610ca6565b8786866040518563ffffffff1660e01b8152600401611021949392919061154a565b602060405180830381600087803b15801561103b57600080fd5b505af192505050801561106b575060408051601f3d908101601f1916820190925261106891810190611474565b60015b6110c5573d808015611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b5080516110bd5760405162461bcd60e51b8152600401610570906115a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d95565b506001949350505050565b6001600160a01b0382166111105760405162461bcd60e51b81526004016105709061188f565b61111981610c89565b156111365760405162461bcd60e51b81526004016105709061163d565b61114260008383610f91565b6001600160a01b038216600090815260036020526040812080546001929061116b908490611ae6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b8280546111db90611b41565b90600052602060002090601f0160209004810192826111fd5760008555611243565b82601f1061121657805160ff1916838001178555611243565b82800160010185558215611243579182015b82811115611243578251825591602001919060010190611228565b5061124f929150611253565b5090565b5b8082111561124f5760008155600101611254565b600067ffffffffffffffff8084111561128357611283611bad565b604051601f8501601f19908116603f011681019082821181831017156112ab576112ab611bad565b816040528093508581528686860111156112c457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146104b257600080fd5b600060208284031215611306578081fd5b610ba0826112de565b60008060408385031215611321578081fd5b61132a836112de565b9150611338602084016112de565b90509250929050565b600080600060608486031215611355578081fd5b61135e846112de565b925061136c602085016112de565b9150604084013590509250925092565b60008060008060808587031215611391578081fd5b61139a856112de565b93506113a8602086016112de565b925060408501359150606085013567ffffffffffffffff8111156113ca578182fd5b8501601f810187136113da578182fd5b6113e987823560208401611268565b91505092959194509250565b60008060408385031215611407578182fd5b611410836112de565b915060208301358015158114611424578182fd5b809150509250929050565b60008060408385031215611441578182fd5b61144a836112de565b946020939093013593505050565b600060208284031215611469578081fd5b8135610ba081611bc3565b600060208284031215611485578081fd5b8151610ba081611bc3565b6000602082840312156114a1578081fd5b813567ffffffffffffffff8111156114b7578182fd5b8201601f810184136114c7578182fd5b610d9584823560208401611268565b6000602082840312156114e7578081fd5b5035919050565b60008151808452611506816020860160208601611b15565b601f01601f19169290920160200192915050565b6000825161152c818460208701611b15565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061157d908301846114ee565b9695505050505050565b901515815260200190565b600060208252610ba060208301846114ee565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526013908201527222a9219b99189d1026b0bc1039bab838363c9760691b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526019908201527f546f74616c20686f6c64696e67206973206c696d697465642e00000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601e908201527f4d696e7420616d6f756e7420686967686572207468616e206c696d69742e0000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611af957611af9611b97565b500190565b600082821015611b1057611b10611b97565b500390565b60005b83811015611b30578181015183820152602001611b18565b83811115610b125750506000910152565b600281046001821680611b5557607f821691505b60208210811415611b7657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b9057611b90611b97565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461073457600080fdfea26469706673582212203bb4ed022e7d8fe5e259bec5e1fcd7de04aed1149b1b513a97aea1e69afa333564736f6c63430008010033

Deployed Bytecode Sourcemap

43255:2489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43817:215;;;;;;;;;;-1:-1:-1;43817:215:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22729:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24288:221::-;;;;;;;;;;-1:-1:-1;24288:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23811:411::-;;;;;;;;;;-1:-1:-1;23811:411:0;;;;;:::i;:::-;;:::i;:::-;;44040:95;;;;;;;;;;-1:-1:-1;44040:95:0;;;;;:::i;:::-;;:::i;44497:88::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43477:32::-;;;;;;;;;;;;;:::i;25178:339::-;;;;;;;;;;-1:-1:-1;25178:339:0;;;;;:::i;:::-;;:::i;45287:106::-;;;;;;;;;;;;;:::i;25588:185::-;;;;;;;;;;-1:-1:-1;25588:185:0;;;;;:::i;:::-;;:::i;44381:108::-;;;;;;;;;;-1:-1:-1;44381:108:0;;;;;:::i;:::-;;:::i;44271:102::-;;;;;;;;;;-1:-1:-1;44271:102:0;;;;;:::i;:::-;;:::i;22423:239::-;;;;;;;;;;-1:-1:-1;22423:239:0;;;;;:::i;:::-;;:::i;43387:72::-;;;;;;;;;;;;;:::i;22153:208::-;;;;;;;;;;-1:-1:-1;22153:208:0;;;;;:::i;:::-;;:::i;42626:94::-;;;;;;;;;;;;;:::i;41975:87::-;;;;;;;;;;;;;:::i;22898:104::-;;;;;;;;;;;;;:::i;44704:571::-;;;;;;:::i;:::-;;:::i;24581:295::-;;;;;;;;;;-1:-1:-1;24581:295:0;;;;;:::i;:::-;;:::i;25844:328::-;;;;;;;;;;-1:-1:-1;25844:328:0;;;;;:::i;:::-;;:::i;44594:95::-;;;;;;;;;;;;;:::i;45402:333::-;;;;;;;;;;-1:-1:-1;45402:333:0;;;;;:::i;:::-;;:::i;24947:164::-;;;;;;;;;;-1:-1:-1;24947:164:0;;;;;:::i;:::-;;:::i;42875:192::-;;;;;;;;;;-1:-1:-1;42875:192:0;;;;;:::i;:::-;;:::i;43516:33::-;;;;;;;;;;;;;:::i;43817:215::-;43910:4;-1:-1:-1;;;;;;43934:50:0;;-1:-1:-1;;;43934:50:0;;:90;;;43988:36;44012:11;43988:23;:36::i;:::-;43927:97;;43817:215;;;;:::o;22729:100::-;22783:13;22816:5;22809:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22729:100;:::o;24288:221::-;24364:7;24392:16;24400:7;24392;:16::i;:::-;24384:73;;;;-1:-1:-1;;;24384:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;24477:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24477:24:0;;24288:221::o;23811:411::-;23892:13;23908:23;23923:7;23908:14;:23::i;:::-;23892:39;;23956:5;-1:-1:-1;;;;;23950:11:0;:2;-1:-1:-1;;;;;23950:11:0;;;23942:57;;;;-1:-1:-1;;;23942:57:0;;;;;;;:::i;:::-;24050:5;-1:-1:-1;;;;;24034:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;24034:21:0;;:62;;;;24059:37;24076:5;24083:12;:10;:12::i;24059:37::-;24012:168;;;;-1:-1:-1;;;24012:168:0;;;;;;;:::i;:::-;24193:21;24202:2;24206:7;24193:8;:21::i;:::-;23811:411;;;:::o;44040:95::-;42206:12;:10;:12::i;:::-;-1:-1:-1;;;;;42195:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42195:23:0;;42187:68;;;;-1:-1:-1;;;42187:68:0;;;;;;;:::i;:::-;44107:10:::1;:20:::0;44040:95::o;44497:88::-;44567:10;;44497:88;:::o;43477:32::-;;;;:::o;25178:339::-;25373:41;25392:12;:10;:12::i;:::-;25406:7;25373:18;:41::i;:::-;25365:103;;;;-1:-1:-1;;;25365:103:0;;;;;;;:::i;:::-;25481:28;25491:4;25497:2;25501:7;25481:9;:28::i;45287:106::-;42206:12;:10;:12::i;:::-;-1:-1:-1;;;;;42195:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42195:23:0;;42187:68;;;;-1:-1:-1;;;42187:68:0;;;;;;;:::i;:::-;45345:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;45337:25:0::1;:48;45363:21;45337:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45287:106::o:0;25588:185::-;25726:39;25743:4;25749:2;25753:7;25726:39;;;;;;;;;;;;:16;:39::i;44381:108::-;44439:7;44466:15;44476:4;44466:9;:15::i;44271:102::-;42206:12;:10;:12::i;:::-;-1:-1:-1;;;;;42195:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42195:23:0;;42187:68;;;;-1:-1:-1;;;42187:68:0;;;;;;;:::i;:::-;44347:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44271:102:::0;:::o;22423:239::-;22495:7;22531:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22531:16:0;22566:19;22558:73;;;;-1:-1:-1;;;22558:73:0;;;;;;;:::i;43387:72::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22153:208::-;22225:7;-1:-1:-1;;;;;22253:19:0;;22245:74;;;;-1:-1:-1;;;22245:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22337:16:0;;;;;:9;:16;;;;;;;22153:208::o;42626:94::-;42206:12;:10;:12::i;:::-;-1:-1:-1;;;;;42195:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42195:23:0;;42187:68;;;;-1:-1:-1;;;42187:68:0;;;;;;;:::i;:::-;42691:21:::1;42709:1;42691:9;:21::i;:::-;42626:94::o:0;41975:87::-;42048:6;;-1:-1:-1;;;;;42048:6:0;41975:87;:::o;22898:104::-;22954:13;22987:7;22980:14;;;;;:::i;44704:571::-;44787:1;44773:11;:15;44765:54;;;;-1:-1:-1;;;44765:54:0;;;;;;;:::i;:::-;44868:10;;44853:11;44838:12;;:26;;;;:::i;:::-;:40;;44830:72;;;;-1:-1:-1;;;44830:72:0;;;;;;;:::i;:::-;44936:13;;44921:11;:28;;44913:71;;;;-1:-1:-1;;;44913:71:0;;;;;;;:::i;:::-;45044:13;;45029:11;45003:23;45013:12;:10;:12::i;45003:23::-;:37;;;;:::i;:::-;:54;;44995:93;;;;-1:-1:-1;;;44995:93:0;;;;;;;:::i;:::-;45122:1;45105:153;45130:11;45125:1;:16;45105:153;;45163:37;45173:12;:10;:12::i;:::-;45187;;45163:9;:37::i;:::-;45230:12;;:16;;45245:1;45230:16;:::i;:::-;45215:12;:31;45143:3;;;;:::i;:::-;;;;45105:153;;24581:295;24696:12;:10;:12::i;:::-;-1:-1:-1;;;;;24684:24:0;:8;-1:-1:-1;;;;;24684:24:0;;;24676:62;;;;-1:-1:-1;;;24676:62:0;;;;;;;:::i;:::-;24796:8;24751:18;:32;24770:12;:10;:12::i;:::-;-1:-1:-1;;;;;24751:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24751:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24751:53:0;;;;;;;;;;;24835:12;:10;:12::i;:::-;-1:-1:-1;;;;;24820:48:0;;24859:8;24820:48;;;;;;:::i;:::-;;;;;;;;24581:295;;:::o;25844:328::-;26019:41;26038:12;:10;:12::i;:::-;26052:7;26019:18;:41::i;:::-;26011:103;;;;-1:-1:-1;;;26011:103:0;;;;;;;:::i;:::-;26125:39;26139:4;26145:2;26149:7;26158:5;26125:13;:39::i;:::-;25844:328;;;;:::o;44594:95::-;44638:7;44680:1;44665:12;;:16;;;;:::i;:::-;44658:23;;44594:95;:::o;45402:333::-;45475:13;45509:16;45517:7;45509;:16::i;:::-;45501:76;;;;-1:-1:-1;;;45501:76:0;;;;;;;:::i;:::-;45588:28;45619:10;:8;:10::i;:::-;45588:41;;45678:1;45653:14;45647:28;:32;:80;;;;;;;;;;;;;;;;;45706:14;45689:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;45647:80;45640:87;45402:333;-1:-1:-1;;;45402:333:0:o;24947:164::-;-1:-1:-1;;;;;25068:25:0;;;25044:4;25068:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24947:164::o;42875:192::-;42206:12;:10;:12::i;:::-;-1:-1:-1;;;;;42195:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42195:23:0;;42187:68;;;;-1:-1:-1;;;42187:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42964:22:0;::::1;42956:73;;;;-1:-1:-1::0;;;42956:73:0::1;;;;;;;:::i;:::-;43040:19;43050:8;43040:9;:19::i;43516:33::-:0;;;;:::o;21784:305::-;21886:4;-1:-1:-1;;;;;;21923:40:0;;-1:-1:-1;;;21923:40:0;;:105;;-1:-1:-1;;;;;;;21980:48:0;;-1:-1:-1;;;21980:48:0;21923:105;:158;;;;22045:36;22069:11;22045:23;:36::i;27682:127::-;27747:4;27771:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27771:16:0;:30;;;27682:127::o;20258:98::-;20338:10;20258:98;:::o;31664:174::-;31739:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31739:29:0;-1:-1:-1;;;;;31739:29:0;;;;;;;;:24;;31793:23;31739:24;31793:14;:23::i;:::-;-1:-1:-1;;;;;31784:46:0;;;;;;;;;;;31664:174;;:::o;27976:348::-;28069:4;28094:16;28102:7;28094;:16::i;:::-;28086:73;;;;-1:-1:-1;;;28086:73:0;;;;;;;:::i;:::-;28170:13;28186:23;28201:7;28186:14;:23::i;:::-;28170:39;;28239:5;-1:-1:-1;;;;;28228:16:0;:7;-1:-1:-1;;;;;28228:16:0;;:51;;;;28272:7;-1:-1:-1;;;;;28248:31:0;:20;28260:7;28248:11;:20::i;:::-;-1:-1:-1;;;;;28248:31:0;;28228:51;:87;;;;28283:32;28300:5;28307:7;28283:16;:32::i;:::-;28220:96;27976:348;-1:-1:-1;;;;27976:348:0:o;30968:578::-;31127:4;-1:-1:-1;;;;;31100:31:0;:23;31115:7;31100:14;:23::i;:::-;-1:-1:-1;;;;;31100:31:0;;31092:85;;;;-1:-1:-1;;;31092:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31196:16:0;;31188:65;;;;-1:-1:-1;;;31188:65:0;;;;;;;:::i;:::-;31266:39;31287:4;31293:2;31297:7;31266:20;:39::i;:::-;31370:29;31387:1;31391:7;31370:8;:29::i;:::-;-1:-1:-1;;;;;31412:15:0;;;;;;:9;:15;;;;;:20;;31431:1;;31412:15;:20;;31431:1;;31412:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31443:13:0;;;;;;:9;:13;;;;;:18;;31460:1;;31443:13;:18;;31460:1;;31443:18;:::i;:::-;;;;-1:-1:-1;;31472:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31472:21:0;-1:-1:-1;;;;;31472:21:0;;;;;;;;;31511:27;;31472:16;;31511:27;;;;;;;30968:578;;;:::o;43075:173::-;43150:6;;;-1:-1:-1;;;;;43167:17:0;;;-1:-1:-1;;;;;;43167:17:0;;;;;;;43200:40;;43150:6;;;43167:17;43150:6;;43200:40;;43131:16;;43200:40;43075:173;;:::o;28666:110::-;28742:26;28752:2;28756:7;28742:26;;;;;;;;;;;;:9;:26::i;27054:315::-;27211:28;27221:4;27227:2;27231:7;27211:9;:28::i;:::-;27258:48;27281:4;27287:2;27291:7;27300:5;27258:22;:48::i;:::-;27250:111;;;;-1:-1:-1;;;27250:111:0;;;;;;;:::i;44147:116::-;44215:13;44248:7;44241:14;;;;;:::i;7615:157::-;-1:-1:-1;;;;;;7724:40:0;;-1:-1:-1;;;7724:40:0;7615:157;;;:::o;43600:205::-;43752:45;43779:4;43785:2;43789:7;43752:26;:45::i;29003:321::-;29133:18;29139:2;29143:7;29133:5;:18::i;:::-;29184:54;29215:1;29219:2;29223:7;29232:5;29184:22;:54::i;:::-;29162:154;;;;-1:-1:-1;;;29162:154:0;;;;;;;:::i;32403:799::-;32558:4;32579:15;:2;-1:-1:-1;;;;;32579:13:0;;:15::i;:::-;32575:620;;;32631:2;-1:-1:-1;;;;;32615:36:0;;32652:12;:10;:12::i;:::-;32666:4;32672:7;32681:5;32615:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32615:72:0;;;;;;;;-1:-1:-1;;32615:72:0;;;;;;;;;;;;:::i;:::-;;;32611:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32857:13:0;;32853:272;;32900:60;;-1:-1:-1;;;32900:60:0;;;;;;;:::i;32853:272::-;33075:6;33069:13;33060:6;33056:2;33052:15;33045:38;32611:529;-1:-1:-1;;;;;;32738:51:0;-1:-1:-1;;;32738:51:0;;-1:-1:-1;32731:58:0;;32575:620;-1:-1:-1;33179:4:0;32403:799;;;;;;:::o;29660:382::-;-1:-1:-1;;;;;29740:16:0;;29732:61;;;;-1:-1:-1;;;29732:61:0;;;;;;;:::i;:::-;29813:16;29821:7;29813;:16::i;:::-;29812:17;29804:58;;;;-1:-1:-1;;;29804:58:0;;;;;;;:::i;:::-;29875:45;29904:1;29908:2;29912:7;29875:20;:45::i;:::-;-1:-1:-1;;;;;29933:13:0;;;;;;:9;:13;;;;;:18;;29950:1;;29933:13;:18;;29950:1;;29933:18;:::i;:::-;;;;-1:-1:-1;;29962:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29962:21:0;-1:-1:-1;;;;;29962:21:0;;;;;;;;30001:33;;29962:16;;;30001:33;;29962:16;;30001:33;29660:382;;:::o;10615:387::-;10938:20;10986:8;;;10615:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:175::-;722:20;;-1:-1:-1;;;;;771:31:1;;761:42;;751:2;;817:1;814;807:12;832:198;;944:2;932:9;923:7;919:23;915:32;912:2;;;965:6;957;950:22;912:2;993:31;1014:9;993:31;:::i;1035:274::-;;;1164:2;1152:9;1143:7;1139:23;1135:32;1132:2;;;1185:6;1177;1170:22;1132:2;1213:31;1234:9;1213:31;:::i;:::-;1203:41;;1263:40;1299:2;1288:9;1284:18;1263:40;:::i;:::-;1253:50;;1122:187;;;;;:::o;1314:342::-;;;;1460:2;1448:9;1439:7;1435:23;1431:32;1428:2;;;1481:6;1473;1466:22;1428:2;1509:31;1530:9;1509:31;:::i;:::-;1499:41;;1559:40;1595:2;1584:9;1580:18;1559:40;:::i;:::-;1549:50;;1646:2;1635:9;1631:18;1618:32;1608:42;;1418:238;;;;;:::o;1661:702::-;;;;;1833:3;1821:9;1812:7;1808:23;1804:33;1801:2;;;1855:6;1847;1840:22;1801:2;1883:31;1904:9;1883:31;:::i;:::-;1873:41;;1933:40;1969:2;1958:9;1954:18;1933:40;:::i;:::-;1923:50;;2020:2;2009:9;2005:18;1992:32;1982:42;;2075:2;2064:9;2060:18;2047:32;2102:18;2094:6;2091:30;2088:2;;;2139:6;2131;2124:22;2088:2;2167:22;;2220:4;2212:13;;2208:27;-1:-1:-1;2198:2:1;;2254:6;2246;2239:22;2198:2;2282:75;2349:7;2344:2;2331:16;2326:2;2322;2318:11;2282:75;:::i;:::-;2272:85;;;1791:572;;;;;;;:::o;2368:369::-;;;2494:2;2482:9;2473:7;2469:23;2465:32;2462:2;;;2515:6;2507;2500:22;2462:2;2543:31;2564:9;2543:31;:::i;:::-;2533:41;;2624:2;2613:9;2609:18;2596:32;2671:5;2664:13;2657:21;2650:5;2647:32;2637:2;;2698:6;2690;2683:22;2637:2;2726:5;2716:15;;;2452:285;;;;;:::o;2742:266::-;;;2871:2;2859:9;2850:7;2846:23;2842:32;2839:2;;;2892:6;2884;2877:22;2839:2;2920:31;2941:9;2920:31;:::i;:::-;2910:41;2998:2;2983:18;;;;2970:32;;-1:-1:-1;;;2829:179:1:o;3013:257::-;;3124:2;3112:9;3103:7;3099:23;3095:32;3092:2;;;3145:6;3137;3130:22;3092:2;3189:9;3176:23;3208:32;3234:5;3208:32;:::i;3275:261::-;;3397:2;3385:9;3376:7;3372:23;3368:32;3365:2;;;3418:6;3410;3403:22;3365:2;3455:9;3449:16;3474:32;3500:5;3474:32;:::i;3541:482::-;;3663:2;3651:9;3642:7;3638:23;3634:32;3631:2;;;3684:6;3676;3669:22;3631:2;3729:9;3716:23;3762:18;3754:6;3751:30;3748:2;;;3799:6;3791;3784:22;3748:2;3827:22;;3880:4;3872:13;;3868:27;-1:-1:-1;3858:2:1;;3914:6;3906;3899:22;3858:2;3942:75;4009:7;4004:2;3991:16;3986:2;3982;3978:11;3942:75;:::i;4028:190::-;;4140:2;4128:9;4119:7;4115:23;4111:32;4108:2;;;4161:6;4153;4146:22;4108:2;-1:-1:-1;4189:23:1;;4098:120;-1:-1:-1;4098:120:1:o;4223:259::-;;4304:5;4298:12;4331:6;4326:3;4319:19;4347:63;4403:6;4396:4;4391:3;4387:14;4380:4;4373:5;4369:16;4347:63;:::i;:::-;4464:2;4443:15;-1:-1:-1;;4439:29:1;4430:39;;;;4471:4;4426:50;;4274:208;-1:-1:-1;;4274:208:1:o;4487:276::-;;4656:6;4650:13;4672:53;4718:6;4713:3;4706:4;4698:6;4694:17;4672:53;:::i;:::-;4741:16;;;;;4626:137;-1:-1:-1;;4626:137:1:o;4768:203::-;-1:-1:-1;;;;;4932:32:1;;;;4914:51;;4902:2;4887:18;;4869:102::o;4976:490::-;-1:-1:-1;;;;;5245:15:1;;;5227:34;;5297:15;;5292:2;5277:18;;5270:43;5344:2;5329:18;;5322:34;;;5392:3;5387:2;5372:18;;5365:31;;;4976:490;;5413:47;;5440:19;;5432:6;5413:47;:::i;:::-;5405:55;5179:287;-1:-1:-1;;;;;;5179:287:1:o;5471:187::-;5636:14;;5629:22;5611:41;;5599:2;5584:18;;5566:92::o;5663:221::-;;5812:2;5801:9;5794:21;5832:46;5874:2;5863:9;5859:18;5851:6;5832:46;:::i;5889:414::-;6091:2;6073:21;;;6130:2;6110:18;;;6103:30;6169:34;6164:2;6149:18;;6142:62;-1:-1:-1;;;6235:2:1;6220:18;;6213:48;6293:3;6278:19;;6063:240::o;6308:402::-;6510:2;6492:21;;;6549:2;6529:18;;;6522:30;6588:34;6583:2;6568:18;;6561:62;-1:-1:-1;;;6654:2:1;6639:18;;6632:36;6700:3;6685:19;;6482:228::o;6715:352::-;6917:2;6899:21;;;6956:2;6936:18;;;6929:30;6995;6990:2;6975:18;;6968:58;7058:2;7043:18;;6889:178::o;7072:400::-;7274:2;7256:21;;;7313:2;7293:18;;;7286:30;7352:34;7347:2;7332:18;;7325:62;-1:-1:-1;;;7418:2:1;7403:18;;7396:34;7462:3;7447:19;;7246:226::o;7477:349::-;7679:2;7661:21;;;7718:2;7698:18;;;7691:30;7757:27;7752:2;7737:18;;7730:55;7817:2;7802:18;;7651:175::o;7831:408::-;8033:2;8015:21;;;8072:2;8052:18;;;8045:30;8111:34;8106:2;8091:18;;8084:62;-1:-1:-1;;;8177:2:1;8162:18;;8155:42;8229:3;8214:19;;8005:234::o;8244:343::-;8446:2;8428:21;;;8485:2;8465:18;;;8458:30;-1:-1:-1;;;8519:2:1;8504:18;;8497:49;8578:2;8563:18;;8418:169::o;8592:420::-;8794:2;8776:21;;;8833:2;8813:18;;;8806:30;8872:34;8867:2;8852:18;;8845:62;8943:26;8938:2;8923:18;;8916:54;9002:3;8987:19;;8766:246::o;9017:349::-;9219:2;9201:21;;;9258:2;9238:18;;;9231:30;9297:27;9292:2;9277:18;;9270:55;9357:2;9342:18;;9191:175::o;9371:406::-;9573:2;9555:21;;;9612:2;9592:18;;;9585:30;9651:34;9646:2;9631:18;;9624:62;-1:-1:-1;;;9717:2:1;9702:18;;9695:40;9767:3;9752:19;;9545:232::o;9782:405::-;9984:2;9966:21;;;10023:2;10003:18;;;9996:30;10062:34;10057:2;10042:18;;10035:62;-1:-1:-1;;;10128:2:1;10113:18;;10106:39;10177:3;10162:19;;9956:231::o;10192:356::-;10394:2;10376:21;;;10413:18;;;10406:30;10472:34;10467:2;10452:18;;10445:62;10539:2;10524:18;;10366:182::o;10553:408::-;10755:2;10737:21;;;10794:2;10774:18;;;10767:30;10833:34;10828:2;10813:18;;10806:62;-1:-1:-1;;;10899:2:1;10884:18;;10877:42;10951:3;10936:19;;10727:234::o;10966:350::-;11168:2;11150:21;;;11207:2;11187:18;;;11180:30;11246:28;11241:2;11226:18;;11219:56;11307:2;11292:18;;11140:176::o;11321:356::-;11523:2;11505:21;;;11542:18;;;11535:30;11601:34;11596:2;11581:18;;11574:62;11668:2;11653:18;;11495:182::o;11682:405::-;11884:2;11866:21;;;11923:2;11903:18;;;11896:30;11962:34;11957:2;11942:18;;11935:62;-1:-1:-1;;;12028:2:1;12013:18;;12006:39;12077:3;12062:19;;11856:231::o;12092:411::-;12294:2;12276:21;;;12333:2;12313:18;;;12306:30;12372:34;12367:2;12352:18;;12345:62;-1:-1:-1;;;12438:2:1;12423:18;;12416:45;12493:3;12478:19;;12266:237::o;12508:354::-;12710:2;12692:21;;;12749:2;12729:18;;;12722:30;12788:32;12783:2;12768:18;;12761:60;12853:2;12838:18;;12682:180::o;12867:397::-;13069:2;13051:21;;;13108:2;13088:18;;;13081:30;13147:34;13142:2;13127:18;;13120:62;-1:-1:-1;;;13213:2:1;13198:18;;13191:31;13254:3;13239:19;;13041:223::o;13269:413::-;13471:2;13453:21;;;13510:2;13490:18;;;13483:30;13549:34;13544:2;13529:18;;13522:62;-1:-1:-1;;;13615:2:1;13600:18;;13593:47;13672:3;13657:19;;13443:239::o;13687:177::-;13833:25;;;13821:2;13806:18;;13788:76::o;13869:128::-;;13940:1;13936:6;13933:1;13930:13;13927:2;;;13946:18;;:::i;:::-;-1:-1:-1;13982:9:1;;13917:80::o;14002:125::-;;14070:1;14067;14064:8;14061:2;;;14075:18;;:::i;:::-;-1:-1:-1;14112:9:1;;14051:76::o;14132:258::-;14204:1;14214:113;14228:6;14225:1;14222:13;14214:113;;;14304:11;;;14298:18;14285:11;;;14278:39;14250:2;14243:10;14214:113;;;14345:6;14342:1;14339:13;14336:2;;;-1:-1:-1;;14380:1:1;14362:16;;14355:27;14185:205::o;14395:380::-;14480:1;14470:12;;14527:1;14517:12;;;14538:2;;14592:4;14584:6;14580:17;14570:27;;14538:2;14645;14637:6;14634:14;14614:18;14611:38;14608:2;;;14691:10;14686:3;14682:20;14679:1;14672:31;14726:4;14723:1;14716:15;14754:4;14751:1;14744:15;14608:2;;14450:325;;;:::o;14780:135::-;;-1:-1:-1;;14840:17:1;;14837:2;;;14860:18;;:::i;:::-;-1:-1:-1;14907:1:1;14896:13;;14827:88::o;14920:127::-;14981:10;14976:3;14972:20;14969:1;14962:31;15012:4;15009:1;15002:15;15036:4;15033:1;15026:15;15052:127;15113:10;15108:3;15104:20;15101:1;15094:31;15144:4;15141:1;15134:15;15168:4;15165:1;15158:15;15184:133;-1:-1:-1;;;;;;15260:32:1;;15250:43;;15240:2;;15307:1;15304;15297:12

Swarm Source

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