ETH Price: $2,892.16 (-5.73%)
Gas: 1 Gwei

Token

0xAnonymous (0xA)
 

Overview

Max Total Supply

6,666 0xA

Holders

752

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 0xA
0x75ecbc88d4dbd30af3916bb95c2519cce2ff3412
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:
OxAnonymous

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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;
    }
}



pragma solidity ^0.8.0;

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



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;
}



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);
}



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;
    }
}


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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



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);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}



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);
}



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);
    }
}



pragma solidity ^0.8.0;

contract OxAnonymous is ERC721, Ownable {

    uint256 public _mintPrice = 0 ether;
    uint256 public _maxMintPerTx = 10;
    uint256 public MAX_SUPPLY = 10000;
    bool public _saleIsActive = true;
    string public baseURI;
    uint256 public baseuricountdown = 10000;
    uint256 private _t = 0;
    address t1 = 0x5E1457B43574738cf5857F9b5BfA9c0a9EA9f369; //Dev
    address t2 = 0x442ED4127b07032C6e717a729E09d47e7F434Fd1; //Olivia
    address t3 = 0x56ce67140B48169F2765C2a8e3240CA7CF8ED563; //Jasper
    address t4 = 0x88D9843637e8a8be60277F48b4a1b1CF68C3524a; //Champagne



    constructor() ERC721("0xAnonymous", "0xA") { 
    }

    function _mint(uint256 toMint, address to) internal {
        uint256 t = _t;
        for (uint256 i = 0; i < toMint; i++) {
            _t += 1;
            _safeMint(to, t + i);
        }
        delete t;
    }

    function mint(uint256 toMint) external payable {
        require(_saleIsActive, "Sale is not active yet.");
        require(toMint <= _maxMintPerTx, "You can't mint more than 10 per transcation.");
        require(_mintPrice * toMint <= msg.value, "You need more ETH to mint.");
        require(_t + toMint <= MAX_SUPPLY, "Exceed the max supply.");
        _mint(toMint, msg.sender);
    }

    function airdrop(address[] memory addrs) external onlyOwner {
        uint256 len = addrs.length;
        require(_t+ len <= MAX_SUPPLY, "Exceeds max supply");
        for (uint256 i = 0 ; i < len; i++) {
            _mint(1, addrs[i]);
        }
    }

    function setBaseURI(string memory newbaseURI) public onlyOwner {
        require(baseuricountdown>0, "This collection has been frozen.");
        baseURI = newbaseURI;
        baseuricountdown -= 1;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        _mintPrice = newPrice;
    }

    function setmaxMintPerTx(uint256 newmaxMintPerTx) external onlyOwner {
        _maxMintPerTx = newmaxMintPerTx;
    }

    function setSaleState() external onlyOwner {
        _saleIsActive = !_saleIsActive;
    }

    function freezeBaseURI() external onlyOwner{
        baseuricountdown = 0;
    }

    function withdraw() public onlyOwner {
        uint256 profit = address(this).balance/4;
        require(payable(t1).send(profit));
        require(payable(t2).send(profit));
        require(payable(t3).send(profit));
        require(payable(t4).send(profit));    
    }

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

    function totalSupply() external view returns (uint256) {
        return _t;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseuricountdown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"toMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"newbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newmaxMintPerTx","type":"uint256"}],"name":"setmaxMintPerTx","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"}]

608060405260006007819055600a60088190556127106009819055815460ff1916600117909155600c55600d55600e80546001600160a01b0319908116735e1457b43574738cf5857f9b5bfa9c0a9ea9f36917909155600f8054821673442ed4127b07032c6e717a729e09d47e7f434fd11790556010805482167356ce67140b48169f2765c2a8e3240ca7cf8ed563179055601180549091167388d9843637e8a8be60277f48b4a1b1cf68c3524a179055348015620000bd57600080fd5b50604080518082018252600b81526a3078416e6f6e796d6f757360a81b60208083019182528351808501909452600384526230784160e81b9084015281519192916200010c916000916200019b565b508051620001229060019060208401906200019b565b5050506200013f620001396200014560201b60201c565b62000149565b6200027e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a99062000241565b90600052602060002090601f016020900481019282620001cd576000855562000218565b82601f10620001e857805160ff191683800117855562000218565b8280016001018555821562000218579182015b8281111562000218578251825591602001919060010190620001fb565b50620002269291506200022a565b5090565b5b808211156200022657600081556001016200022b565b6002810460018216806200025657607f821691505b602082108114156200027857634e487b7160e01b600052602260045260246000fd5b50919050565b6121e4806200028e6000396000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063a0712d6811610095578063de314a5911610064578063de314a59146104eb578063e7bc820814610500578063e985e9c514610515578063f2fde38b14610535576101d8565b8063a0712d6814610478578063a22cb4651461048b578063b88d4fde146104ab578063c87b56dd146104cb576101d8565b80637ca5027e116100d15780637ca5027e146104195780638da5cb5b1461042e57806391b7f5ed1461044357806395d89b4114610463576101d8565b806370a08231146103a4578063715018a6146103c4578063729ad39e146103d957806379f34a10146103f9576101d8565b806323b872dd1161017a57806355f804b31161014957806355f804b31461033a5780635d893ba01461035a5780636352211e1461036f5780636c0360eb1461038f576101d8565b806323b872dd146102d057806332cb6b0c146102f05780633ccfd60b1461030557806342842e0e1461031a576101d8565b8063081812fc116101b6578063081812fc14610257578063095ea7b31461028457806318160ddd146102a65780631ed40559146102bb576101d8565b806301ffc9a7146101dd5780630387da421461021357806306fdde0314610235575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461191a565b610555565b60405161020a9190611a5c565b60405180910390f35b34801561021f57600080fd5b5061022861059d565b60405161020a919061202b565b34801561024157600080fd5b5061024a6105a3565b60405161020a9190611a67565b34801561026357600080fd5b50610277610272366004611998565b610635565b60405161020a9190611a0b565b34801561029057600080fd5b506102a461029f366004611843565b610681565b005b3480156102b257600080fd5b50610228610719565b3480156102c757600080fd5b506102a461071f565b3480156102dc57600080fd5b506102a46102eb366004611755565b610772565b3480156102fc57600080fd5b506102286107aa565b34801561031157600080fd5b506102a46107b0565b34801561032657600080fd5b506102a4610335366004611755565b6108c8565b34801561034657600080fd5b506102a4610355366004611952565b6108e3565b34801561036657600080fd5b506101fd610973565b34801561037b57600080fd5b5061027761038a366004611998565b61097c565b34801561039b57600080fd5b5061024a6109b1565b3480156103b057600080fd5b506102286103bf366004611709565b610a3f565b3480156103d057600080fd5b506102a4610a83565b3480156103e557600080fd5b506102a46103f436600461186c565b610ace565b34801561040557600080fd5b506102a4610414366004611998565b610b8d565b34801561042557600080fd5b50610228610bd1565b34801561043a57600080fd5b50610277610bd7565b34801561044f57600080fd5b506102a461045e366004611998565b610be6565b34801561046f57600080fd5b5061024a610c2a565b6102a4610486366004611998565b610c39565b34801561049757600080fd5b506102a46104a6366004611809565b610ce3565b3480156104b757600080fd5b506102a46104c6366004611790565b610db1565b3480156104d757600080fd5b5061024a6104e6366004611998565b610df0565b3480156104f757600080fd5b50610228610e73565b34801561050c57600080fd5b506102a4610e79565b34801561052157600080fd5b506101fd610530366004611723565b610ebf565b34801561054157600080fd5b506102a4610550366004611709565b610eed565b60006001600160e01b031982166380ac58cd60e01b148061058657506001600160e01b03198216635b5e139f60e01b145b80610595575061059582610f5b565b90505b919050565b60075481565b6060600080546105b2906120ec565b80601f01602080910402602001604051908101604052809291908181526020018280546105de906120ec565b801561062b5780601f106106005761010080835404028352916020019161062b565b820191906000526020600020905b81548152906001019060200180831161060e57829003601f168201915b5050505050905090565b600061064082610f74565b6106655760405162461bcd60e51b815260040161065c90611e50565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068c8261097c565b9050806001600160a01b0316836001600160a01b031614156106c05760405162461bcd60e51b815260040161065c90611f99565b806001600160a01b03166106d2610f91565b6001600160a01b031614806106ee57506106ee81610530610f91565b61070a5760405162461bcd60e51b815260040161065c90611cff565b6107148383610f95565b505050565b600d5490565b610727610f91565b6001600160a01b0316610738610bd7565b6001600160a01b03161461075e5760405162461bcd60e51b815260040161065c90611e9c565b600a805460ff19811660ff90911615179055565b61078361077d610f91565b82611003565b61079f5760405162461bcd60e51b815260040161065c90611fda565b610714838383611088565b60095481565b6107b8610f91565b6001600160a01b03166107c9610bd7565b6001600160a01b0316146107ef5760405162461bcd60e51b815260040161065c90611e9c565b60006107fc600447612076565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061082f57600080fd5b600f546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061086157600080fd5b6010546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061089357600080fd5b6011546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506108c557600080fd5b50565b61071483838360405180602001604052806000815250610db1565b6108eb610f91565b6001600160a01b03166108fc610bd7565b6001600160a01b0316146109225760405162461bcd60e51b815260040161065c90611e9c565b6000600c54116109445760405162461bcd60e51b815260040161065c90611b80565b805161095790600b906020840190611601565b506001600c600082825461096b91906120a9565b909155505050565b600a5460ff1681565b6000818152600260205260408120546001600160a01b0316806105955760405162461bcd60e51b815260040161065c90611da6565b600b80546109be906120ec565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea906120ec565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b505050505081565b60006001600160a01b038216610a675760405162461bcd60e51b815260040161065c90611d5c565b506001600160a01b031660009081526003602052604090205490565b610a8b610f91565b6001600160a01b0316610a9c610bd7565b6001600160a01b031614610ac25760405162461bcd60e51b815260040161065c90611e9c565b610acc60006111b5565b565b610ad6610f91565b6001600160a01b0316610ae7610bd7565b6001600160a01b031614610b0d5760405162461bcd60e51b815260040161065c90611e9c565b8051600954600d54610b2090839061205e565b1115610b3e5760405162461bcd60e51b815260040161065c90611def565b60005b8181101561071457610b7b6001848381518110610b6e57634e487b7160e01b600052603260045260246000fd5b6020026020010151611207565b80610b8581612127565b915050610b41565b610b95610f91565b6001600160a01b0316610ba6610bd7565b6001600160a01b031614610bcc5760405162461bcd60e51b815260040161065c90611e9c565b600855565b600c5481565b6006546001600160a01b031690565b610bee610f91565b6001600160a01b0316610bff610bd7565b6001600160a01b031614610c255760405162461bcd60e51b815260040161065c90611e9c565b600755565b6060600180546105b2906120ec565b600a5460ff16610c5b5760405162461bcd60e51b815260040161065c90611c7c565b600854811115610c7d5760405162461bcd60e51b815260040161065c90611c30565b3481600754610c8c919061208a565b1115610caa5760405162461bcd60e51b815260040161065c90611b12565b60095481600d54610cbb919061205e565b1115610cd95760405162461bcd60e51b815260040161065c90611ed1565b6108c58133611207565b610ceb610f91565b6001600160a01b0316826001600160a01b03161415610d1c5760405162461bcd60e51b815260040161065c90611bf9565b8060056000610d29610f91565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d6d610f91565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610da59190611a5c565b60405180910390a35050565b610dc2610dbc610f91565b83611003565b610dde5760405162461bcd60e51b815260040161065c90611fda565b610dea84848484611253565b50505050565b6060610dfb82610f74565b610e175760405162461bcd60e51b815260040161065c90611f4a565b6000610e21611286565b90506000815111610e415760405180602001604052806000815250610e6c565b80610e4b84611295565b604051602001610e5c9291906119dc565b6040516020818303038152906040525b9392505050565b60085481565b610e81610f91565b6001600160a01b0316610e92610bd7565b6001600160a01b031614610eb85760405162461bcd60e51b815260040161065c90611e9c565b6000600c55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ef5610f91565b6001600160a01b0316610f06610bd7565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161065c90611e9c565b6001600160a01b038116610f525760405162461bcd60e51b815260040161065c90611acc565b6108c5816111b5565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fca8261097c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061100e82610f74565b61102a5760405162461bcd60e51b815260040161065c90611cb3565b60006110358361097c565b9050806001600160a01b0316846001600160a01b031614806110705750836001600160a01b031661106584610635565b6001600160a01b0316145b8061108057506110808185610ebf565b949350505050565b826001600160a01b031661109b8261097c565b6001600160a01b0316146110c15760405162461bcd60e51b815260040161065c90611f01565b6001600160a01b0382166110e75760405162461bcd60e51b815260040161065c90611bb5565b6110f2838383610714565b6110fd600082610f95565b6001600160a01b03831660009081526003602052604081208054600192906111269084906120a9565b90915550506001600160a01b038216600090815260036020526040812080546001929061115490849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d5460005b83811015610dea576001600d6000828254611228919061205e565b9091555061124190508361123c838561205e565b6113b0565b8061124b81612127565b91505061120d565b61125e848484611088565b61126a848484846113ce565b610dea5760405162461bcd60e51b815260040161065c90611a7a565b6060600b80546105b2906120ec565b6060816112ba57506040805180820190915260018152600360fc1b6020820152610598565b8160005b81156112e457806112ce81612127565b91506112dd9050600a83612076565b91506112be565b60008167ffffffffffffffff81111561130d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611337576020820181803683370190505b5090505b84156110805761134c6001836120a9565b9150611359600a86612142565b61136490603061205e565b60f81b81838151811061138757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113a9600a86612076565b945061133b565b6113ca8282604051806020016040528060008152506114e9565b5050565b60006113e2846001600160a01b031661151c565b156114de57836001600160a01b031663150b7a026113fe610f91565b8786866040518563ffffffff1660e01b81526004016114209493929190611a1f565b602060405180830381600087803b15801561143a57600080fd5b505af192505050801561146a575060408051601f3d908101601f1916820190925261146791810190611936565b60015b6114c4573d808015611498576040519150601f19603f3d011682016040523d82523d6000602084013e61149d565b606091505b5080516114bc5760405162461bcd60e51b815260040161065c90611a7a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611080565b506001949350505050565b6114f38383611522565b61150060008484846113ce565b6107145760405162461bcd60e51b815260040161065c90611a7a565b3b151590565b6001600160a01b0382166115485760405162461bcd60e51b815260040161065c90611e1b565b61155181610f74565b1561156e5760405162461bcd60e51b815260040161065c90611b49565b61157a60008383610714565b6001600160a01b03821660009081526003602052604081208054600192906115a390849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461160d906120ec565b90600052602060002090601f01602090048101928261162f5760008555611675565b82601f1061164857805160ff1916838001178555611675565b82800160010185558215611675579182015b8281111561167557825182559160200191906001019061165a565b50611681929150611685565b5090565b5b808211156116815760008155600101611686565b600067ffffffffffffffff8311156116b4576116b4612182565b6116c7601f8401601f1916602001612034565b90508281528383830111156116db57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461059857600080fd5b60006020828403121561171a578081fd5b610e6c826116f2565b60008060408385031215611735578081fd5b61173e836116f2565b915061174c602084016116f2565b90509250929050565b600080600060608486031215611769578081fd5b611772846116f2565b9250611780602085016116f2565b9150604084013590509250925092565b600080600080608085870312156117a5578081fd5b6117ae856116f2565b93506117bc602086016116f2565b925060408501359150606085013567ffffffffffffffff8111156117de578182fd5b8501601f810187136117ee578182fd5b6117fd8782356020840161169a565b91505092959194509250565b6000806040838503121561181b578182fd5b611824836116f2565b915060208301358015158114611838578182fd5b809150509250929050565b60008060408385031215611855578182fd5b61185e836116f2565b946020939093013593505050565b6000602080838503121561187e578182fd5b823567ffffffffffffffff80821115611895578384fd5b818501915085601f8301126118a8578384fd5b8135818111156118ba576118ba612182565b83810291506118ca848301612034565b8181528481019084860184860187018a10156118e4578788fd5b8795505b8386101561190d576118f9816116f2565b8352600195909501949186019186016118e8565b5098975050505050505050565b60006020828403121561192b578081fd5b8135610e6c81612198565b600060208284031215611947578081fd5b8151610e6c81612198565b600060208284031215611963578081fd5b813567ffffffffffffffff811115611979578182fd5b8201601f81018413611989578182fd5b6110808482356020840161169a565b6000602082840312156119a9578081fd5b5035919050565b600081518084526119c88160208601602086016120c0565b601f01601f19169290920160200192915050565b600083516119ee8184602088016120c0565b835190830190611a028183602088016120c0565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a52908301846119b0565b9695505050505050565b901515815260200190565b600060208252610e6c60208301846119b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601a908201527f596f75206e656564206d6f72652045544820746f206d696e742e000000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f5468697320636f6c6c656374696f6e20686173206265656e2066726f7a656e2e604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f596f752063616e2774206d696e74206d6f7265207468616e203130207065722060408201526b3a3930b739b1b0ba34b7b71760a11b606082015260800190565b60208082526017908201527f53616c65206973206e6f7420616374697665207965742e000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522bc31b2b2b2103a34329036b0bc1039bab838363c9760511b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561205657612056612182565b604052919050565b6000821982111561207157612071612156565b500190565b6000826120855761208561216c565b500490565b60008160001904831182151516156120a4576120a4612156565b500290565b6000828210156120bb576120bb612156565b500390565b60005b838110156120db5781810151838201526020016120c3565b83811115610dea5750506000910152565b60028104600182168061210057607f821691505b6020821081141561212157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561213b5761213b612156565b5060010190565b6000826121515761215161216c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108c557600080fdfea2646970667358221220d4cb58f75bdd80a62842131f044094fc75dcf6da64e3d2ebd15ca3953cae793f64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063a0712d6811610095578063de314a5911610064578063de314a59146104eb578063e7bc820814610500578063e985e9c514610515578063f2fde38b14610535576101d8565b8063a0712d6814610478578063a22cb4651461048b578063b88d4fde146104ab578063c87b56dd146104cb576101d8565b80637ca5027e116100d15780637ca5027e146104195780638da5cb5b1461042e57806391b7f5ed1461044357806395d89b4114610463576101d8565b806370a08231146103a4578063715018a6146103c4578063729ad39e146103d957806379f34a10146103f9576101d8565b806323b872dd1161017a57806355f804b31161014957806355f804b31461033a5780635d893ba01461035a5780636352211e1461036f5780636c0360eb1461038f576101d8565b806323b872dd146102d057806332cb6b0c146102f05780633ccfd60b1461030557806342842e0e1461031a576101d8565b8063081812fc116101b6578063081812fc14610257578063095ea7b31461028457806318160ddd146102a65780631ed40559146102bb576101d8565b806301ffc9a7146101dd5780630387da421461021357806306fdde0314610235575b600080fd5b3480156101e957600080fd5b506101fd6101f836600461191a565b610555565b60405161020a9190611a5c565b60405180910390f35b34801561021f57600080fd5b5061022861059d565b60405161020a919061202b565b34801561024157600080fd5b5061024a6105a3565b60405161020a9190611a67565b34801561026357600080fd5b50610277610272366004611998565b610635565b60405161020a9190611a0b565b34801561029057600080fd5b506102a461029f366004611843565b610681565b005b3480156102b257600080fd5b50610228610719565b3480156102c757600080fd5b506102a461071f565b3480156102dc57600080fd5b506102a46102eb366004611755565b610772565b3480156102fc57600080fd5b506102286107aa565b34801561031157600080fd5b506102a46107b0565b34801561032657600080fd5b506102a4610335366004611755565b6108c8565b34801561034657600080fd5b506102a4610355366004611952565b6108e3565b34801561036657600080fd5b506101fd610973565b34801561037b57600080fd5b5061027761038a366004611998565b61097c565b34801561039b57600080fd5b5061024a6109b1565b3480156103b057600080fd5b506102286103bf366004611709565b610a3f565b3480156103d057600080fd5b506102a4610a83565b3480156103e557600080fd5b506102a46103f436600461186c565b610ace565b34801561040557600080fd5b506102a4610414366004611998565b610b8d565b34801561042557600080fd5b50610228610bd1565b34801561043a57600080fd5b50610277610bd7565b34801561044f57600080fd5b506102a461045e366004611998565b610be6565b34801561046f57600080fd5b5061024a610c2a565b6102a4610486366004611998565b610c39565b34801561049757600080fd5b506102a46104a6366004611809565b610ce3565b3480156104b757600080fd5b506102a46104c6366004611790565b610db1565b3480156104d757600080fd5b5061024a6104e6366004611998565b610df0565b3480156104f757600080fd5b50610228610e73565b34801561050c57600080fd5b506102a4610e79565b34801561052157600080fd5b506101fd610530366004611723565b610ebf565b34801561054157600080fd5b506102a4610550366004611709565b610eed565b60006001600160e01b031982166380ac58cd60e01b148061058657506001600160e01b03198216635b5e139f60e01b145b80610595575061059582610f5b565b90505b919050565b60075481565b6060600080546105b2906120ec565b80601f01602080910402602001604051908101604052809291908181526020018280546105de906120ec565b801561062b5780601f106106005761010080835404028352916020019161062b565b820191906000526020600020905b81548152906001019060200180831161060e57829003601f168201915b5050505050905090565b600061064082610f74565b6106655760405162461bcd60e51b815260040161065c90611e50565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068c8261097c565b9050806001600160a01b0316836001600160a01b031614156106c05760405162461bcd60e51b815260040161065c90611f99565b806001600160a01b03166106d2610f91565b6001600160a01b031614806106ee57506106ee81610530610f91565b61070a5760405162461bcd60e51b815260040161065c90611cff565b6107148383610f95565b505050565b600d5490565b610727610f91565b6001600160a01b0316610738610bd7565b6001600160a01b03161461075e5760405162461bcd60e51b815260040161065c90611e9c565b600a805460ff19811660ff90911615179055565b61078361077d610f91565b82611003565b61079f5760405162461bcd60e51b815260040161065c90611fda565b610714838383611088565b60095481565b6107b8610f91565b6001600160a01b03166107c9610bd7565b6001600160a01b0316146107ef5760405162461bcd60e51b815260040161065c90611e9c565b60006107fc600447612076565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061082f57600080fd5b600f546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061086157600080fd5b6010546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061089357600080fd5b6011546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506108c557600080fd5b50565b61071483838360405180602001604052806000815250610db1565b6108eb610f91565b6001600160a01b03166108fc610bd7565b6001600160a01b0316146109225760405162461bcd60e51b815260040161065c90611e9c565b6000600c54116109445760405162461bcd60e51b815260040161065c90611b80565b805161095790600b906020840190611601565b506001600c600082825461096b91906120a9565b909155505050565b600a5460ff1681565b6000818152600260205260408120546001600160a01b0316806105955760405162461bcd60e51b815260040161065c90611da6565b600b80546109be906120ec565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea906120ec565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b505050505081565b60006001600160a01b038216610a675760405162461bcd60e51b815260040161065c90611d5c565b506001600160a01b031660009081526003602052604090205490565b610a8b610f91565b6001600160a01b0316610a9c610bd7565b6001600160a01b031614610ac25760405162461bcd60e51b815260040161065c90611e9c565b610acc60006111b5565b565b610ad6610f91565b6001600160a01b0316610ae7610bd7565b6001600160a01b031614610b0d5760405162461bcd60e51b815260040161065c90611e9c565b8051600954600d54610b2090839061205e565b1115610b3e5760405162461bcd60e51b815260040161065c90611def565b60005b8181101561071457610b7b6001848381518110610b6e57634e487b7160e01b600052603260045260246000fd5b6020026020010151611207565b80610b8581612127565b915050610b41565b610b95610f91565b6001600160a01b0316610ba6610bd7565b6001600160a01b031614610bcc5760405162461bcd60e51b815260040161065c90611e9c565b600855565b600c5481565b6006546001600160a01b031690565b610bee610f91565b6001600160a01b0316610bff610bd7565b6001600160a01b031614610c255760405162461bcd60e51b815260040161065c90611e9c565b600755565b6060600180546105b2906120ec565b600a5460ff16610c5b5760405162461bcd60e51b815260040161065c90611c7c565b600854811115610c7d5760405162461bcd60e51b815260040161065c90611c30565b3481600754610c8c919061208a565b1115610caa5760405162461bcd60e51b815260040161065c90611b12565b60095481600d54610cbb919061205e565b1115610cd95760405162461bcd60e51b815260040161065c90611ed1565b6108c58133611207565b610ceb610f91565b6001600160a01b0316826001600160a01b03161415610d1c5760405162461bcd60e51b815260040161065c90611bf9565b8060056000610d29610f91565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d6d610f91565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610da59190611a5c565b60405180910390a35050565b610dc2610dbc610f91565b83611003565b610dde5760405162461bcd60e51b815260040161065c90611fda565b610dea84848484611253565b50505050565b6060610dfb82610f74565b610e175760405162461bcd60e51b815260040161065c90611f4a565b6000610e21611286565b90506000815111610e415760405180602001604052806000815250610e6c565b80610e4b84611295565b604051602001610e5c9291906119dc565b6040516020818303038152906040525b9392505050565b60085481565b610e81610f91565b6001600160a01b0316610e92610bd7565b6001600160a01b031614610eb85760405162461bcd60e51b815260040161065c90611e9c565b6000600c55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ef5610f91565b6001600160a01b0316610f06610bd7565b6001600160a01b031614610f2c5760405162461bcd60e51b815260040161065c90611e9c565b6001600160a01b038116610f525760405162461bcd60e51b815260040161065c90611acc565b6108c5816111b5565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fca8261097c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061100e82610f74565b61102a5760405162461bcd60e51b815260040161065c90611cb3565b60006110358361097c565b9050806001600160a01b0316846001600160a01b031614806110705750836001600160a01b031661106584610635565b6001600160a01b0316145b8061108057506110808185610ebf565b949350505050565b826001600160a01b031661109b8261097c565b6001600160a01b0316146110c15760405162461bcd60e51b815260040161065c90611f01565b6001600160a01b0382166110e75760405162461bcd60e51b815260040161065c90611bb5565b6110f2838383610714565b6110fd600082610f95565b6001600160a01b03831660009081526003602052604081208054600192906111269084906120a9565b90915550506001600160a01b038216600090815260036020526040812080546001929061115490849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d5460005b83811015610dea576001600d6000828254611228919061205e565b9091555061124190508361123c838561205e565b6113b0565b8061124b81612127565b91505061120d565b61125e848484611088565b61126a848484846113ce565b610dea5760405162461bcd60e51b815260040161065c90611a7a565b6060600b80546105b2906120ec565b6060816112ba57506040805180820190915260018152600360fc1b6020820152610598565b8160005b81156112e457806112ce81612127565b91506112dd9050600a83612076565b91506112be565b60008167ffffffffffffffff81111561130d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611337576020820181803683370190505b5090505b84156110805761134c6001836120a9565b9150611359600a86612142565b61136490603061205e565b60f81b81838151811061138757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113a9600a86612076565b945061133b565b6113ca8282604051806020016040528060008152506114e9565b5050565b60006113e2846001600160a01b031661151c565b156114de57836001600160a01b031663150b7a026113fe610f91565b8786866040518563ffffffff1660e01b81526004016114209493929190611a1f565b602060405180830381600087803b15801561143a57600080fd5b505af192505050801561146a575060408051601f3d908101601f1916820190925261146791810190611936565b60015b6114c4573d808015611498576040519150601f19603f3d011682016040523d82523d6000602084013e61149d565b606091505b5080516114bc5760405162461bcd60e51b815260040161065c90611a7a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611080565b506001949350505050565b6114f38383611522565b61150060008484846113ce565b6107145760405162461bcd60e51b815260040161065c90611a7a565b3b151590565b6001600160a01b0382166115485760405162461bcd60e51b815260040161065c90611e1b565b61155181610f74565b1561156e5760405162461bcd60e51b815260040161065c90611b49565b61157a60008383610714565b6001600160a01b03821660009081526003602052604081208054600192906115a390849061205e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461160d906120ec565b90600052602060002090601f01602090048101928261162f5760008555611675565b82601f1061164857805160ff1916838001178555611675565b82800160010185558215611675579182015b8281111561167557825182559160200191906001019061165a565b50611681929150611685565b5090565b5b808211156116815760008155600101611686565b600067ffffffffffffffff8311156116b4576116b4612182565b6116c7601f8401601f1916602001612034565b90508281528383830111156116db57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461059857600080fd5b60006020828403121561171a578081fd5b610e6c826116f2565b60008060408385031215611735578081fd5b61173e836116f2565b915061174c602084016116f2565b90509250929050565b600080600060608486031215611769578081fd5b611772846116f2565b9250611780602085016116f2565b9150604084013590509250925092565b600080600080608085870312156117a5578081fd5b6117ae856116f2565b93506117bc602086016116f2565b925060408501359150606085013567ffffffffffffffff8111156117de578182fd5b8501601f810187136117ee578182fd5b6117fd8782356020840161169a565b91505092959194509250565b6000806040838503121561181b578182fd5b611824836116f2565b915060208301358015158114611838578182fd5b809150509250929050565b60008060408385031215611855578182fd5b61185e836116f2565b946020939093013593505050565b6000602080838503121561187e578182fd5b823567ffffffffffffffff80821115611895578384fd5b818501915085601f8301126118a8578384fd5b8135818111156118ba576118ba612182565b83810291506118ca848301612034565b8181528481019084860184860187018a10156118e4578788fd5b8795505b8386101561190d576118f9816116f2565b8352600195909501949186019186016118e8565b5098975050505050505050565b60006020828403121561192b578081fd5b8135610e6c81612198565b600060208284031215611947578081fd5b8151610e6c81612198565b600060208284031215611963578081fd5b813567ffffffffffffffff811115611979578182fd5b8201601f81018413611989578182fd5b6110808482356020840161169a565b6000602082840312156119a9578081fd5b5035919050565b600081518084526119c88160208601602086016120c0565b601f01601f19169290920160200192915050565b600083516119ee8184602088016120c0565b835190830190611a028183602088016120c0565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a52908301846119b0565b9695505050505050565b901515815260200190565b600060208252610e6c60208301846119b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601a908201527f596f75206e656564206d6f72652045544820746f206d696e742e000000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f5468697320636f6c6c656374696f6e20686173206265656e2066726f7a656e2e604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f596f752063616e2774206d696e74206d6f7265207468616e203130207065722060408201526b3a3930b739b1b0ba34b7b71760a11b606082015260800190565b60208082526017908201527f53616c65206973206e6f7420616374697665207965742e000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522bc31b2b2b2103a34329036b0bc1039bab838363c9760511b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561205657612056612182565b604052919050565b6000821982111561207157612071612156565b500190565b6000826120855761208561216c565b500490565b60008160001904831182151516156120a4576120a4612156565b500290565b6000828210156120bb576120bb612156565b500390565b60005b838110156120db5781810151838201526020016120c3565b83811115610dea5750506000910152565b60028104600182168061210057607f821691505b6020821081141561212157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561213b5761213b612156565b5060010190565b6000826121515761215161216c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108c557600080fdfea2646970667358221220d4cb58f75bdd80a62842131f044094fc75dcf6da64e3d2ebd15ca3953cae793f64736f6c63430008000033

Deployed Bytecode Sourcemap

41141:2684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9134:305;;;;;;;;;;-1:-1:-1;9134:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41190:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10079:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11638:221::-;;;;;;;;;;-1:-1:-1;11638:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;11161:411::-;;;;;;;;;;-1:-1:-1;11161:411:0;;;;;:::i;:::-;;:::i;:::-;;43737:83;;;;;;;;;;;;;:::i;43147:92::-;;;;;;;;;;;;;:::i;12528:339::-;;;;;;;;;;-1:-1:-1;12528:339:0;;;;;:::i;:::-;;:::i;41272:33::-;;;;;;;;;;;;;:::i;43337:276::-;;;;;;;;;;;;;:::i;12938:185::-;;;;;;;;;;-1:-1:-1;12938:185:0;;;;;:::i;:::-;;:::i;42701:208::-;;;;;;;;;;-1:-1:-1;42701:208:0;;;;;:::i;:::-;;:::i;41312:32::-;;;;;;;;;;;;;:::i;9773:239::-;;;;;;;;;;-1:-1:-1;9773:239:0;;;;;:::i;:::-;;:::i;41351:21::-;;;;;;;;;;;;;:::i;9503:208::-;;;;;;;;;;-1:-1:-1;9503:208:0;;;;;:::i;:::-;;:::i;40481:94::-;;;;;;;;;;;;;:::i;42435:258::-;;;;;;;;;;-1:-1:-1;42435:258:0;;;;;:::i;:::-;;:::i;43020:119::-;;;;;;;;;;-1:-1:-1;43020:119:0;;;;;:::i;:::-;;:::i;41379:39::-;;;;;;;;;;;;;:::i;39830:87::-;;;;;;;;;;;;;:::i;42917:95::-;;;;;;;;;;-1:-1:-1;42917:95:0;;;;;:::i;:::-;;:::i;10248:104::-;;;;;;;;;;;;;:::i;42032:395::-;;;;;;:::i;:::-;;:::i;11931:295::-;;;;;;;;;;-1:-1:-1;11931:295:0;;;;;:::i;:::-;;:::i;13194:328::-;;;;;;;;;;-1:-1:-1;13194:328:0;;;;;:::i;:::-;;:::i;10423:334::-;;;;;;;;;;-1:-1:-1;10423:334:0;;;;;:::i;:::-;;:::i;41232:33::-;;;;;;;;;;;;;:::i;43247:82::-;;;;;;;;;;;;;:::i;12297:164::-;;;;;;;;;;-1:-1:-1;12297:164:0;;;;;:::i;:::-;;:::i;40730:192::-;;;;;;;;;;-1:-1:-1;40730:192:0;;;;;:::i;:::-;;:::i;9134:305::-;9236:4;-1:-1:-1;;;;;;9273:40:0;;-1:-1:-1;;;9273:40:0;;:105;;-1:-1:-1;;;;;;;9330:48:0;;-1:-1:-1;;;9330:48:0;9273:105;:158;;;;9395:36;9419:11;9395:23;:36::i;:::-;9253:178;;9134:305;;;;:::o;41190:35::-;;;;:::o;10079:100::-;10133:13;10166:5;10159:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10079:100;:::o;11638:221::-;11714:7;11742:16;11750:7;11742;:16::i;:::-;11734:73;;;;-1:-1:-1;;;11734:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;11827:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;11827:24:0;;11638:221::o;11161:411::-;11242:13;11258:23;11273:7;11258:14;:23::i;:::-;11242:39;;11306:5;-1:-1:-1;;;;;11300:11:0;:2;-1:-1:-1;;;;;11300:11:0;;;11292:57;;;;-1:-1:-1;;;11292:57:0;;;;;;;:::i;:::-;11400:5;-1:-1:-1;;;;;11384:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;11384:21:0;;:62;;;;11409:37;11426:5;11433:12;:10;:12::i;11409:37::-;11362:168;;;;-1:-1:-1;;;11362:168:0;;;;;;;:::i;:::-;11543:21;11552:2;11556:7;11543:8;:21::i;:::-;11161:411;;;:::o;43737:83::-;43810:2;;43737:83;:::o;43147:92::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;43218:13:::1;::::0;;-1:-1:-1;;43201:30:0;::::1;43218:13;::::0;;::::1;43217:14;43201:30;::::0;;43147:92::o;12528:339::-;12723:41;12742:12;:10;:12::i;:::-;12756:7;12723:18;:41::i;:::-;12715:103;;;;-1:-1:-1;;;12715:103:0;;;;;;;:::i;:::-;12831:28;12841:4;12847:2;12851:7;12831:9;:28::i;41272:33::-;;;;:::o;43337:276::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;43385:14:::1;43402:23;43424:1;43402:21;:23;:::i;:::-;43452:2;::::0;43444:24:::1;::::0;43385:40;;-1:-1:-1;;;;;;43452:2:0::1;::::0;43444:24;::::1;;;::::0;43385:40;;43452:2:::1;43444:24:::0;43452:2;43444:24;43385:40;43452:2;43444:24;::::1;;;;;;43436:33;;;::::0;::::1;;43496:2;::::0;43488:24:::1;::::0;-1:-1:-1;;;;;43496:2:0;;::::1;::::0;43488:24;::::1;;;::::0;43505:6;;43496:2:::1;43488:24:::0;43496:2;43488:24;43505:6;43496:2;43488:24;::::1;;;;;;43480:33;;;::::0;::::1;;43540:2;::::0;43532:24:::1;::::0;-1:-1:-1;;;;;43540:2:0;;::::1;::::0;43532:24;::::1;;;::::0;43549:6;;43540:2:::1;43532:24:::0;43540:2;43532:24;43549:6;43540:2;43532:24;::::1;;;;;;43524:33;;;::::0;::::1;;43584:2;::::0;43576:24:::1;::::0;-1:-1:-1;;;;;43584:2:0;;::::1;::::0;43576:24;::::1;;;::::0;43593:6;;43584:2:::1;43576:24:::0;43584:2;43576:24;43593:6;43584:2;43576:24;::::1;;;;;;43568:33;;;::::0;::::1;;40121:1;43337:276::o:0;12938:185::-;13076:39;13093:4;13099:2;13103:7;13076:39;;;;;;;;;;;;:16;:39::i;42701:208::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;42800:1:::1;42783:16;;:18;42775:63;;;;-1:-1:-1::0;;;42775:63:0::1;;;;;;;:::i;:::-;42849:20:::0;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42900:1;42880:16;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;42701:208:0:o;41312:32::-;;;;;;:::o;9773:239::-;9845:7;9881:16;;;:7;:16;;;;;;-1:-1:-1;;;;;9881:16:0;9916:19;9908:73;;;;-1:-1:-1;;;9908:73:0;;;;;;;:::i;41351:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9503:208::-;9575:7;-1:-1:-1;;;;;9603:19:0;;9595:74;;;;-1:-1:-1;;;9595:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;9687:16:0;;;;;:9;:16;;;;;;;9503:208::o;40481:94::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;40546:21:::1;40564:1;40546:9;:21::i;:::-;40481:94::o:0;42435:258::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;42520:12;;42562:10:::1;::::0;42551:2:::1;::::0;:7:::1;::::0;42520:12;;42551:7:::1;:::i;:::-;:21;;42543:52;;;;-1:-1:-1::0;;;42543:52:0::1;;;;;;;:::i;:::-;42611:9;42606:80;42631:3;42627:1;:7;42606:80;;;42656:18;42662:1;42665:5;42671:1;42665:8;;;;;;-1:-1:-1::0;;;42665:8:0::1;;;;;;;;;;;;;;;42656:5;:18::i;:::-;42636:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42606:80;;43020:119:::0;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;43100:13:::1;:31:::0;43020:119::o;41379:39::-;;;;:::o;39830:87::-;39903:6;;-1:-1:-1;;;;;39903:6:0;39830:87;:::o;42917:95::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;42983:10:::1;:21:::0;42917:95::o;10248:104::-;10304:13;10337:7;10330:14;;;;;:::i;42032:395::-;42098:13;;;;42090:49;;;;-1:-1:-1;;;42090:49:0;;;;;;;:::i;:::-;42168:13;;42158:6;:23;;42150:80;;;;-1:-1:-1;;;42150:80:0;;;;;;;:::i;:::-;42272:9;42262:6;42249:10;;:19;;;;:::i;:::-;:32;;42241:71;;;;-1:-1:-1;;;42241:71:0;;;;;;;:::i;:::-;42346:10;;42336:6;42331:2;;:11;;;;:::i;:::-;:25;;42323:60;;;;-1:-1:-1;;;42323:60:0;;;;;;;:::i;:::-;42394:25;42400:6;42408:10;42394:5;:25::i;11931:295::-;12046:12;:10;:12::i;:::-;-1:-1:-1;;;;;12034:24:0;:8;-1:-1:-1;;;;;12034:24:0;;;12026:62;;;;-1:-1:-1;;;12026:62:0;;;;;;;:::i;:::-;12146:8;12101:18;:32;12120:12;:10;:12::i;:::-;-1:-1:-1;;;;;12101:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;12101:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;12101:53:0;;;;;;;;;;;12185:12;:10;:12::i;:::-;-1:-1:-1;;;;;12170:48:0;;12209:8;12170:48;;;;;;:::i;:::-;;;;;;;;11931:295;;:::o;13194:328::-;13369:41;13388:12;:10;:12::i;:::-;13402:7;13369:18;:41::i;:::-;13361:103;;;;-1:-1:-1;;;13361:103:0;;;;;;;:::i;:::-;13475:39;13489:4;13495:2;13499:7;13508:5;13475:13;:39::i;:::-;13194:328;;;;:::o;10423:334::-;10496:13;10530:16;10538:7;10530;:16::i;:::-;10522:76;;;;-1:-1:-1;;;10522:76:0;;;;;;;:::i;:::-;10611:21;10635:10;:8;:10::i;:::-;10611:34;;10687:1;10669:7;10663:21;:25;:86;;;;;;;;;;;;;;;;;10715:7;10724:18;:7;:16;:18::i;:::-;10698:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10663:86;10656:93;10423:334;-1:-1:-1;;;10423:334:0:o;41232:33::-;;;;:::o;43247:82::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;43320:1:::1;43301:16;:20:::0;43247:82::o;12297:164::-;-1:-1:-1;;;;;12418:25:0;;;12394:4;12418:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12297:164::o;40730:192::-;40061:12;:10;:12::i;:::-;-1:-1:-1;;;;;40050:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;40050:23:0;;40042:68;;;;-1:-1:-1;;;40042:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40819:22:0;::::1;40811:73;;;;-1:-1:-1::0;;;40811:73:0::1;;;;;;;:::i;:::-;40895:19;40905:8;40895:9;:19::i;7714:157::-:0;-1:-1:-1;;;;;;7823:40:0;;-1:-1:-1;;;7823:40:0;7714:157;;;:::o;15032:127::-;15097:4;15121:16;;;:7;:16;;;;;;-1:-1:-1;;;;;15121:16:0;:30;;;15032:127::o;601:98::-;681:10;601:98;:::o;19014:174::-;19089:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;19089:29:0;-1:-1:-1;;;;;19089:29:0;;;;;;;;:24;;19143:23;19089:24;19143:14;:23::i;:::-;-1:-1:-1;;;;;19134:46:0;;;;;;;;;;;19014:174;;:::o;15326:348::-;15419:4;15444:16;15452:7;15444;:16::i;:::-;15436:73;;;;-1:-1:-1;;;15436:73:0;;;;;;;:::i;:::-;15520:13;15536:23;15551:7;15536:14;:23::i;:::-;15520:39;;15589:5;-1:-1:-1;;;;;15578:16:0;:7;-1:-1:-1;;;;;15578:16:0;;:51;;;;15622:7;-1:-1:-1;;;;;15598:31:0;:20;15610:7;15598:11;:20::i;:::-;-1:-1:-1;;;;;15598:31:0;;15578:51;:87;;;;15633:32;15650:5;15657:7;15633:16;:32::i;:::-;15570:96;15326:348;-1:-1:-1;;;;15326:348:0:o;18318:578::-;18477:4;-1:-1:-1;;;;;18450:31:0;:23;18465:7;18450:14;:23::i;:::-;-1:-1:-1;;;;;18450:31:0;;18442:85;;;;-1:-1:-1;;;18442:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18546:16:0;;18538:65;;;;-1:-1:-1;;;18538:65:0;;;;;;;:::i;:::-;18616:39;18637:4;18643:2;18647:7;18616:20;:39::i;:::-;18720:29;18737:1;18741:7;18720:8;:29::i;:::-;-1:-1:-1;;;;;18762:15:0;;;;;;:9;:15;;;;;:20;;18781:1;;18762:15;:20;;18781:1;;18762:20;:::i;:::-;;;;-1:-1:-1;;;;;;;18793:13:0;;;;;;:9;:13;;;;;:18;;18810:1;;18793:13;:18;;18810:1;;18793:18;:::i;:::-;;;;-1:-1:-1;;18822:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;18822:21:0;-1:-1:-1;;;;;18822:21:0;;;;;;;;;18861:27;;18822:16;;18861:27;;;;;;;18318:578;;;:::o;40930:173::-;41005:6;;;-1:-1:-1;;;;;41022:17:0;;;-1:-1:-1;;;;;;41022:17:0;;;;;;;41055:40;;41005:6;;;41022:17;41005:6;;41055:40;;40986:16;;41055:40;40930:173;;:::o;41804:220::-;41879:2;;41867:9;41892:106;41916:6;41912:1;:10;41892:106;;;41950:1;41944:2;;:7;;;;;;;:::i;:::-;;;;-1:-1:-1;41966:20:0;;-1:-1:-1;41976:2:0;41980:5;41984:1;41980;:5;:::i;:::-;41966:9;:20::i;:::-;41924:3;;;;:::i;:::-;;;;41892:106;;14404:315;14561:28;14571:4;14577:2;14581:7;14561:9;:28::i;:::-;14608:48;14631:4;14637:2;14641:7;14650:5;14608:22;:48::i;:::-;14600:111;;;;-1:-1:-1;;;14600:111:0;;;;;;;:::i;43621:108::-;43681:13;43714:7;43707:14;;;;;:::i;21518:723::-;21574:13;21795:10;21791:53;;-1:-1:-1;21822:10:0;;;;;;;;;;;;-1:-1:-1;;;21822:10:0;;;;;;21791:53;21869:5;21854:12;21910:78;21917:9;;21910:78;;21943:8;;;;:::i;:::-;;-1:-1:-1;21966:10:0;;-1:-1:-1;21974:2:0;21966:10;;:::i;:::-;;;21910:78;;;21998:19;22030:6;22020:17;;;;;;-1:-1:-1;;;22020:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22020:17:0;;21998:39;;22048:154;22055:10;;22048:154;;22082:11;22092:1;22082:11;;:::i;:::-;;-1:-1:-1;22151:10:0;22159:2;22151:5;:10;:::i;:::-;22138:24;;:2;:24;:::i;:::-;22125:39;;22108:6;22115;22108:14;;;;;;-1:-1:-1;;;22108:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22108:56:0;;;;;;;;-1:-1:-1;22179:11:0;22188:2;22179:11;;:::i;:::-;;;22048:154;;16016:110;16092:26;16102:2;16106:7;16092:26;;;;;;;;;;;;:9;:26::i;:::-;16016:110;;:::o;19753:803::-;19908:4;19929:15;:2;-1:-1:-1;;;;;19929:13:0;;:15::i;:::-;19925:624;;;19981:2;-1:-1:-1;;;;;19965:36:0;;20002:12;:10;:12::i;:::-;20016:4;20022:7;20031:5;19965:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19965:72:0;;;;;;;;-1:-1:-1;;19965:72:0;;;;;;;;;;;;:::i;:::-;;;19961:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20211:13:0;;20207:272;;20254:60;;-1:-1:-1;;;20254:60:0;;;;;;;:::i;20207:272::-;20429:6;20423:13;20414:6;20410:2;20406:15;20399:38;19961:533;-1:-1:-1;;;;;;20088:55:0;-1:-1:-1;;;20088:55:0;;-1:-1:-1;20081:62:0;;19925:624;-1:-1:-1;20533:4:0;19753:803;;;;;;:::o;16353:321::-;16483:18;16489:2;16493:7;16483:5;:18::i;:::-;16534:54;16565:1;16569:2;16573:7;16582:5;16534:22;:54::i;:::-;16512:154;;;;-1:-1:-1;;;16512:154:0;;;;;;;:::i;23985:387::-;24308:20;24356:8;;;23985:387::o;17010:382::-;-1:-1:-1;;;;;17090:16:0;;17082:61;;;;-1:-1:-1;;;17082:61:0;;;;;;;:::i;:::-;17163:16;17171:7;17163;:16::i;:::-;17162:17;17154:58;;;;-1:-1:-1;;;17154:58:0;;;;;;;:::i;:::-;17225:45;17254:1;17258:2;17262:7;17225:20;:45::i;:::-;-1:-1:-1;;;;;17283:13:0;;;;;;:9;:13;;;;;:18;;17300:1;;17283:13;:18;;17300:1;;17283:18;:::i;:::-;;;;-1:-1:-1;;17312:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;17312:21:0;-1:-1:-1;;;;;17312:21:0;;;;;;;;17351:33;;17312:16;;;17351:33;;17312:16;;17351:33;17010:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:198;;720:2;708:9;699:7;695:23;691:32;688:2;;;741:6;733;726:22;688:2;769:31;790:9;769:31;:::i;811:274::-;;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:31;1010:9;989:31;:::i;:::-;979:41;;1039:40;1075:2;1064:9;1060:18;1039:40;:::i;:::-;1029:50;;898:187;;;;;:::o;1090:342::-;;;;1236:2;1224:9;1215:7;1211:23;1207:32;1204:2;;;1257:6;1249;1242:22;1204:2;1285:31;1306:9;1285:31;:::i;:::-;1275:41;;1335:40;1371:2;1360:9;1356:18;1335:40;:::i;:::-;1325:50;;1422:2;1411:9;1407:18;1394:32;1384:42;;1194:238;;;;;:::o;1437:702::-;;;;;1609:3;1597:9;1588:7;1584:23;1580:33;1577:2;;;1631:6;1623;1616:22;1577:2;1659:31;1680:9;1659:31;:::i;:::-;1649:41;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;:::-;1699:50;;1796:2;1785:9;1781:18;1768:32;1758:42;;1851:2;1840:9;1836:18;1823:32;1878:18;1870:6;1867:30;1864:2;;;1915:6;1907;1900:22;1864:2;1943:22;;1996:4;1988:13;;1984:27;-1:-1:-1;1974:2:1;;2030:6;2022;2015:22;1974:2;2058:75;2125:7;2120:2;2107:16;2102:2;2098;2094:11;2058:75;:::i;:::-;2048:85;;;1567:572;;;;;;;:::o;2144:369::-;;;2270:2;2258:9;2249:7;2245:23;2241:32;2238:2;;;2291:6;2283;2276:22;2238:2;2319:31;2340:9;2319:31;:::i;:::-;2309:41;;2400:2;2389:9;2385:18;2372:32;2447:5;2440:13;2433:21;2426:5;2423:32;2413:2;;2474:6;2466;2459:22;2413:2;2502:5;2492:15;;;2228:285;;;;;:::o;2518:266::-;;;2647:2;2635:9;2626:7;2622:23;2618:32;2615:2;;;2668:6;2660;2653:22;2615:2;2696:31;2717:9;2696:31;:::i;:::-;2686:41;2774:2;2759:18;;;;2746:32;;-1:-1:-1;;;2605:179:1:o;2789:1010::-;;2904:2;2947;2935:9;2926:7;2922:23;2918:32;2915:2;;;2968:6;2960;2953:22;2915:2;3013:9;3000:23;3042:18;3083:2;3075:6;3072:14;3069:2;;;3104:6;3096;3089:22;3069:2;3147:6;3136:9;3132:22;3122:32;;3192:7;3185:4;3181:2;3177:13;3173:27;3163:2;;3219:6;3211;3204:22;3163:2;3260;3247:16;3282:2;3278;3275:10;3272:2;;;3288:18;;:::i;:::-;3335:2;3331;3327:11;3317:21;;3358:27;3381:2;3377;3373:11;3358:27;:::i;:::-;3419:15;;;3450:12;;;;3482:11;;;3512;;;3508:20;;3505:33;-1:-1:-1;3502:2:1;;;3556:6;3548;3541:22;3502:2;3583:6;3574:15;;3598:171;3612:2;3609:1;3606:9;3598:171;;;3669:25;3690:3;3669:25;:::i;:::-;3657:38;;3630:1;3623:9;;;;;3715:12;;;;3747;;3598:171;;;-1:-1:-1;3788:5:1;2884:915;-1:-1:-1;;;;;;;;2884:915:1:o;3804:257::-;;3915:2;3903:9;3894:7;3890:23;3886:32;3883:2;;;3936:6;3928;3921:22;3883:2;3980:9;3967:23;3999:32;4025:5;3999:32;:::i;4066:261::-;;4188:2;4176:9;4167:7;4163:23;4159:32;4156:2;;;4209:6;4201;4194:22;4156:2;4246:9;4240:16;4265:32;4291:5;4265:32;:::i;4332:482::-;;4454:2;4442:9;4433:7;4429:23;4425:32;4422:2;;;4475:6;4467;4460:22;4422:2;4520:9;4507:23;4553:18;4545:6;4542:30;4539:2;;;4590:6;4582;4575:22;4539:2;4618:22;;4671:4;4663:13;;4659:27;-1:-1:-1;4649:2:1;;4705:6;4697;4690:22;4649:2;4733:75;4800:7;4795:2;4782:16;4777:2;4773;4769:11;4733:75;:::i;4819:190::-;;4931:2;4919:9;4910:7;4906:23;4902:32;4899:2;;;4952:6;4944;4937:22;4899:2;-1:-1:-1;4980:23:1;;4889:120;-1:-1:-1;4889:120:1:o;5014:259::-;;5095:5;5089:12;5122:6;5117:3;5110:19;5138:63;5194:6;5187:4;5182:3;5178:14;5171:4;5164:5;5160:16;5138:63;:::i;:::-;5255:2;5234:15;-1:-1:-1;;5230:29:1;5221:39;;;;5262:4;5217:50;;5065:208;-1:-1:-1;;5065:208:1:o;5278:470::-;;5495:6;5489:13;5511:53;5557:6;5552:3;5545:4;5537:6;5533:17;5511:53;:::i;:::-;5627:13;;5586:16;;;;5649:57;5627:13;5586:16;5683:4;5671:17;;5649:57;:::i;:::-;5722:20;;5465:283;-1:-1:-1;;;;5465:283:1:o;5753:203::-;-1:-1:-1;;;;;5917:32:1;;;;5899:51;;5887:2;5872:18;;5854:102::o;5961:490::-;-1:-1:-1;;;;;6230:15:1;;;6212:34;;6282:15;;6277:2;6262:18;;6255:43;6329:2;6314:18;;6307:34;;;6377:3;6372:2;6357:18;;6350:31;;;5961:490;;6398:47;;6425:19;;6417:6;6398:47;:::i;:::-;6390:55;6164:287;-1:-1:-1;;;;;;6164:287:1:o;6456:187::-;6621:14;;6614:22;6596:41;;6584:2;6569:18;;6551:92::o;6648:221::-;;6797:2;6786:9;6779:21;6817:46;6859:2;6848:9;6844:18;6836:6;6817:46;:::i;6874:414::-;7076:2;7058:21;;;7115:2;7095:18;;;7088:30;7154:34;7149:2;7134:18;;7127:62;-1:-1:-1;;;7220:2:1;7205:18;;7198:48;7278:3;7263:19;;7048:240::o;7293:402::-;7495:2;7477:21;;;7534:2;7514:18;;;7507:30;7573:34;7568:2;7553:18;;7546:62;-1:-1:-1;;;7639:2:1;7624:18;;7617:36;7685:3;7670:19;;7467:228::o;7700:350::-;7902:2;7884:21;;;7941:2;7921:18;;;7914:30;7980:28;7975:2;7960:18;;7953:56;8041:2;8026:18;;7874:176::o;8055:352::-;8257:2;8239:21;;;8296:2;8276:18;;;8269:30;8335;8330:2;8315:18;;8308:58;8398:2;8383:18;;8229:178::o;8412:356::-;8614:2;8596:21;;;8633:18;;;8626:30;8692:34;8687:2;8672:18;;8665:62;8759:2;8744:18;;8586:182::o;8773:400::-;8975:2;8957:21;;;9014:2;8994:18;;;8987:30;9053:34;9048:2;9033:18;;9026:62;-1:-1:-1;;;9119:2:1;9104:18;;9097:34;9163:3;9148:19;;8947:226::o;9178:349::-;9380:2;9362:21;;;9419:2;9399:18;;;9392:30;9458:27;9453:2;9438:18;;9431:55;9518:2;9503:18;;9352:175::o;9532:408::-;9734:2;9716:21;;;9773:2;9753:18;;;9746:30;9812:34;9807:2;9792:18;;9785:62;-1:-1:-1;;;9878:2:1;9863:18;;9856:42;9930:3;9915:19;;9706:234::o;9945:347::-;10147:2;10129:21;;;10186:2;10166:18;;;10159:30;10225:25;10220:2;10205:18;;10198:53;10283:2;10268:18;;10119:173::o;10297:408::-;10499:2;10481:21;;;10538:2;10518:18;;;10511:30;10577:34;10572:2;10557:18;;10550:62;-1:-1:-1;;;10643:2:1;10628:18;;10621:42;10695:3;10680:19;;10471:234::o;10710:420::-;10912:2;10894:21;;;10951:2;10931:18;;;10924:30;10990:34;10985:2;10970:18;;10963:62;11061:26;11056:2;11041:18;;11034:54;11120:3;11105:19;;10884:246::o;11135:406::-;11337:2;11319:21;;;11376:2;11356:18;;;11349:30;11415:34;11410:2;11395:18;;11388:62;-1:-1:-1;;;11481:2:1;11466:18;;11459:40;11531:3;11516:19;;11309:232::o;11546:405::-;11748:2;11730:21;;;11787:2;11767:18;;;11760:30;11826:34;11821:2;11806:18;;11799:62;-1:-1:-1;;;11892:2:1;11877:18;;11870:39;11941:3;11926:19;;11720:231::o;11956:342::-;12158:2;12140:21;;;12197:2;12177:18;;;12170:30;-1:-1:-1;;;12231:2:1;12216:18;;12209:48;12289:2;12274:18;;12130:168::o;12303:356::-;12505:2;12487:21;;;12524:18;;;12517:30;12583:34;12578:2;12563:18;;12556:62;12650:2;12635:18;;12477:182::o;12664:408::-;12866:2;12848:21;;;12905:2;12885:18;;;12878:30;12944:34;12939:2;12924:18;;12917:62;-1:-1:-1;;;13010:2:1;12995:18;;12988:42;13062:3;13047:19;;12838:234::o;13077:356::-;13279:2;13261:21;;;13298:18;;;13291:30;13357:34;13352:2;13337:18;;13330:62;13424:2;13409:18;;13251:182::o;13438:346::-;13640:2;13622:21;;;13679:2;13659:18;;;13652:30;-1:-1:-1;;;13713:2:1;13698:18;;13691:52;13775:2;13760:18;;13612:172::o;13789:405::-;13991:2;13973:21;;;14030:2;14010:18;;;14003:30;14069:34;14064:2;14049:18;;14042:62;-1:-1:-1;;;14135:2:1;14120:18;;14113:39;14184:3;14169:19;;13963:231::o;14199:411::-;14401:2;14383:21;;;14440:2;14420:18;;;14413:30;14479:34;14474:2;14459:18;;14452:62;-1:-1:-1;;;14545:2:1;14530:18;;14523:45;14600:3;14585:19;;14373:237::o;14615:397::-;14817:2;14799:21;;;14856:2;14836:18;;;14829:30;14895:34;14890:2;14875:18;;14868:62;-1:-1:-1;;;14961:2:1;14946:18;;14939:31;15002:3;14987:19;;14789:223::o;15017:413::-;15219:2;15201:21;;;15258:2;15238:18;;;15231:30;15297:34;15292:2;15277:18;;15270:62;-1:-1:-1;;;15363:2:1;15348:18;;15341:47;15420:3;15405:19;;15191:239::o;15435:177::-;15581:25;;;15569:2;15554:18;;15536:76::o;15617:251::-;15687:2;15681:9;15717:17;;;15764:18;15749:34;;15785:22;;;15746:62;15743:2;;;15811:18;;:::i;:::-;15847:2;15840:22;15661:207;;-1:-1:-1;15661:207:1:o;15873:128::-;;15944:1;15940:6;15937:1;15934:13;15931:2;;;15950:18;;:::i;:::-;-1:-1:-1;15986:9:1;;15921:80::o;16006:120::-;;16072:1;16062:2;;16077:18;;:::i;:::-;-1:-1:-1;16111:9:1;;16052:74::o;16131:168::-;;16237:1;16233;16229:6;16225:14;16222:1;16219:21;16214:1;16207:9;16200:17;16196:45;16193:2;;;16244:18;;:::i;:::-;-1:-1:-1;16284:9:1;;16183:116::o;16304:125::-;;16372:1;16369;16366:8;16363:2;;;16377:18;;:::i;:::-;-1:-1:-1;16414:9:1;;16353:76::o;16434:258::-;16506:1;16516:113;16530:6;16527:1;16524:13;16516:113;;;16606:11;;;16600:18;16587:11;;;16580:39;16552:2;16545:10;16516:113;;;16647:6;16644:1;16641:13;16638:2;;;-1:-1:-1;;16682:1:1;16664:16;;16657:27;16487:205::o;16697:380::-;16782:1;16772:12;;16829:1;16819:12;;;16840:2;;16894:4;16886:6;16882:17;16872:27;;16840:2;16947;16939:6;16936:14;16916:18;16913:38;16910:2;;;16993:10;16988:3;16984:20;16981:1;16974:31;17028:4;17025:1;17018:15;17056:4;17053:1;17046:15;16910:2;;16752:325;;;:::o;17082:135::-;;-1:-1:-1;;17142:17:1;;17139:2;;;17162:18;;:::i;:::-;-1:-1:-1;17209:1:1;17198:13;;17129:88::o;17222:112::-;;17280:1;17270:2;;17285:18;;:::i;:::-;-1:-1:-1;17319:9:1;;17260:74::o;17339:127::-;17400:10;17395:3;17391:20;17388:1;17381:31;17431:4;17428:1;17421:15;17455:4;17452:1;17445:15;17471:127;17532:10;17527:3;17523:20;17520:1;17513:31;17563:4;17560:1;17553:15;17587:4;17584:1;17577:15;17603:127;17664:10;17659:3;17655:20;17652:1;17645:31;17695:4;17692:1;17685:15;17719:4;17716:1;17709:15;17735:133;-1:-1:-1;;;;;;17811:32:1;;17801:43;;17791:2;;17858:1;17855;17848:12

Swarm Source

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