ETH Price: $3,167.92 (+1.96%)

Token

Mirror Passes (Mirror)
 

Overview

Max Total Supply

103 Mirror

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xagree.eth
Balance
1 Mirror
0xd57f5d1c30de1d45149bc2d9cf528374d17f10ab
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:
MirrorPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
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);
}


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


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


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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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


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


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

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

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

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

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


contract MirrorPass is ERC721, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    Counters.Counter private Passes;
    string private baseURI;

    uint256 constant public maxPasses = 5555;

    uint256 public mintPrice = 0.035 ether;
    uint256 public maxPerTxn = 10;
    bool public saleLive = false;

    modifier activeSale() {
        require(saleLive, "Passes are not available to be minted yet");
        _;
    }

    modifier isNotContract() {
        require(tx.origin == msg.sender, "What are you doing? >:(");
        _;
    }

    constructor() ERC721("Mirror Passes", "Mirror") {}

    function mintPass(uint256 qty) public payable activeSale isNotContract {
        uint256 currentPasses = Passes.current();

        require(currentPasses <= maxPasses, "Total Supply has been reached");
        require(qty > 0 && qty <= maxPerTxn, "Not a valid quantity of passes");
        require(currentPasses.add(qty) <= maxPasses, "You would exceed Total Supply");
        require(mintPrice.mul(qty) >= msg.value, "You didn't send enough eth");

        for (uint256 i;i < qty;i++) {
            _safeMint(msg.sender, currentPasses + i);
            Passes.increment();
        }
    }

    function getPassesFromAddress(address wallet) public view returns(uint256[] memory) {
        uint256 passesHeld = balanceOf(wallet);
        uint256 currentPasses = Passes.current();
        uint256 x = 0;

        uint256[] memory passes = new uint256[](passesHeld);
        
        for (uint256 i;i < currentPasses;i++) {
            if (ownerOf(i) == wallet) {
                passes[x] = i;
                x++;
            }
        }

        return passes;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function totalSupply() external view returns(uint256) {
        return Passes.current();
    }

    function setMintSettings(bool isSaleLive, uint256 howManyPerTxn) public payable onlyOwner {
        saleLive = isSaleLive;
        maxPerTxn = howManyPerTxn;
    }

    function setMintPrice(uint256 howMuch) public payable onlyOwner {
        mintPrice = howMuch;
    }

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

    function setMetadata(string memory metadata) public payable onlyOwner {
        baseURI = metadata;
    }

    function transferFrom(address from, address to, uint256 tokenId) public override {
        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override {
        ERC721.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getPassesFromAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPasses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"metadata","type":"string"}],"name":"setMetadata","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"howMuch","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"isSaleLive","type":"bool"},{"internalType":"uint256","name":"howManyPerTxn","type":"uint256"}],"name":"setMintSettings","outputs":[],"stateMutability":"payable","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"}]

6080604052667c585087238000600955600a8055600b805460ff191690553480156200002a57600080fd5b50604080518082018252600d81526c4d6972726f722050617373657360981b60208083019182528351808501909452600684526526b4b93937b960d11b9084015281519192916200007e916000916200010d565b508051620000949060019060208401906200010d565b505050620000b1620000ab620000b760201b60201c565b620000bb565b620001f0565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011b90620001b3565b90600052602060002090601f0160209004810192826200013f57600085556200018a565b82601f106200015a57805160ff19168380011785556200018a565b828001600101855582156200018a579182015b828111156200018a5782518255916020019190600101906200016d565b50620001989291506200019c565b5090565b5b808211156200019857600081556001016200019d565b600181811c90821680620001c857607f821691505b60208210811415620001ea57634e487b7160e01b600052602260045260246000fd5b50919050565b611df580620002006000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c51461045e578063f2fde38b146104a7578063f4a0a528146104c7578063fa94a059146104da57600080fd5b8063c87b56dd146103f7578063e081b78114610417578063e80981b41461043157600080fd5b806395d89b41116100c657806395d89b411461038f578063a22cb465146103a4578063a49a1e7d146103c4578063b88d4fde146103d757600080fd5b806370a082311461033c578063715018a61461035c5780638da5cb5b1461037157600080fd5b80633cb51994116101595780634f28e680116101335780634f28e680146102e05780636352211e146102f3578063656b4b65146103135780636817c76c1461032657600080fd5b80633cb51994146102955780633ccfd60b146102ab57806342842e0e146102c057600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046119f6565b6104f0565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610542565b6040516101cd9190611b6e565b34801561020457600080fd5b50610218610213366004611a79565b6105d4565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046119b0565b61066e565b005b34801561025e57600080fd5b50610267610784565b6040519081526020016101cd565b34801561028157600080fd5b506102506102903660046118ce565b610794565b3480156102a157600080fd5b50610267600a5481565b3480156102b757600080fd5b5061025061079f565b3480156102cc57600080fd5b506102506102db3660046118ce565b6107fc565b6102506102ee366004611a79565b610817565b3480156102ff57600080fd5b5061021861030e366004611a79565b610a7d565b6102506103213660046119da565b610af4565b34801561033257600080fd5b5061026760095481565b34801561034857600080fd5b50610267610357366004611880565b610b35565b34801561036857600080fd5b50610250610bbc565b34801561037d57600080fd5b506006546001600160a01b0316610218565b34801561039b57600080fd5b506101eb610bf2565b3480156103b057600080fd5b506102506103bf366004611986565b610c01565b6102506103d2366004611a30565b610cc6565b3480156103e357600080fd5b506102506103f236600461190a565b610d03565b34801561040357600080fd5b506101eb610412366004611a79565b610d15565b34801561042357600080fd5b50600b546101c19060ff1681565b34801561043d57600080fd5b5061045161044c366004611880565b610df0565b6040516101cd9190611b2a565b34801561046a57600080fd5b506101c161047936600461189b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104b357600080fd5b506102506104c2366004611880565b610ec9565b6102506104d5366004611a79565b610f64565b3480156104e657600080fd5b506102676115b381565b60006001600160e01b031982166380ac58cd60e01b148061052157506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461055190611ce7565b80601f016020809104026020016040519081016040528092919081815260200182805461057d90611ce7565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067982610a7d565b9050806001600160a01b0316836001600160a01b031614156106e75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610649565b336001600160a01b038216148061070357506107038133610479565b6107755760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610649565b61077f8383610f93565b505050565b600061078f60075490565b905090565b61077f838383611001565b6006546001600160a01b031633146107c95760405162461bcd60e51b815260040161064990611bd3565b6040514790339082156108fc029083906000818181858888f193505050501580156107f8573d6000803e3d6000fd5b5050565b61077f83838360405180602001604052806000815250610d03565b600b5460ff1661087b5760405162461bcd60e51b815260206004820152602960248201527f50617373657320617265206e6f7420617661696c61626c6520746f206265206d6044820152681a5b9d1959081e595d60ba1b6064820152608401610649565b3233146108ca5760405162461bcd60e51b815260206004820152601760248201527f576861742061726520796f7520646f696e673f203e3a280000000000000000006044820152606401610649565b60006108d560075490565b90506115b38111156109295760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20537570706c7920686173206265656e20726561636865640000006044820152606401610649565b60008211801561093b5750600a548211155b6109875760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420612076616c6964207175616e74697479206f662070617373657300006044820152606401610649565b6115b36109948284611032565b11156109e25760405162461bcd60e51b815260206004820152601d60248201527f596f7520776f756c642065786365656420546f74616c20537570706c790000006044820152606401610649565b60095434906109f1908461103e565b1015610a3f5760405162461bcd60e51b815260206004820152601a60248201527f596f75206469646e27742073656e6420656e6f756768206574680000000000006044820152606401610649565b60005b8281101561077f57610a5d33610a588385611c59565b61104a565b610a6b600780546001019055565b80610a7581611d22565b915050610a42565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610649565b6006546001600160a01b03163314610b1e5760405162461bcd60e51b815260040161064990611bd3565b600b805460ff191692151592909217909155600a55565b60006001600160a01b038216610ba05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610649565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610be65760405162461bcd60e51b815260040161064990611bd3565b610bf06000611064565b565b60606001805461055190611ce7565b6001600160a01b038216331415610c5a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610649565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610cf05760405162461bcd60e51b815260040161064990611bd3565b80516107f8906008906020840190611745565b610d0f848484846110b6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610649565b6000610d9e6110e8565b90506000815111610dbe5760405180602001604052806000815250610de9565b80610dc8846110f7565b604051602001610dd9929190611abe565b6040516020818303038152906040525b9392505050565b60606000610dfd83610b35565b90506000610e0a60075490565b90506000808367ffffffffffffffff811115610e2857610e28611d93565b604051908082528060200260200182016040528015610e51578160200160208202803683370190505b50905060005b83811015610ebf57866001600160a01b0316610e7282610a7d565b6001600160a01b03161415610ead5780828481518110610e9457610e94611d7d565b602090810291909101015282610ea981611d22565b9350505b80610eb781611d22565b915050610e57565b5095945050505050565b6006546001600160a01b03163314610ef35760405162461bcd60e51b815260040161064990611bd3565b6001600160a01b038116610f585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610649565b610f6181611064565b50565b6006546001600160a01b03163314610f8e5760405162461bcd60e51b815260040161064990611bd3565b600955565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fc882610a7d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61100b33826111fd565b6110275760405162461bcd60e51b815260040161064990611c08565b61077f8383836112f0565b6000610de98284611c59565b6000610de98284611c85565b6107f8828260405180602001604052806000815250611490565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110c033836111fd565b6110dc5760405162461bcd60e51b815260040161064990611c08565b610d0f848484846114c3565b60606008805461055190611ce7565b60608161111b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611145578061112f81611d22565b915061113e9050600a83611c71565b915061111f565b60008167ffffffffffffffff81111561116057611160611d93565b6040519080825280601f01601f19166020018201604052801561118a576020820181803683370190505b5090505b84156111f55761119f600183611ca4565b91506111ac600a86611d3d565b6111b7906030611c59565b60f81b8183815181106111cc576111cc611d7d565b60200101906001600160f81b031916908160001a9053506111ee600a86611c71565b945061118e565b949350505050565b6000818152600260205260408120546001600160a01b03166112765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610649565b600061128183610a7d565b9050806001600160a01b0316846001600160a01b031614806112bc5750836001600160a01b03166112b1846105d4565b6001600160a01b0316145b806111f557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166111f5565b826001600160a01b031661130382610a7d565b6001600160a01b03161461136b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610649565b6001600160a01b0382166113cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610649565b6113d8600082610f93565b6001600160a01b0383166000908152600360205260408120805460019290611401908490611ca4565b90915550506001600160a01b038216600090815260036020526040812080546001929061142f908490611c59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61149a83836114f6565b6114a76000848484611638565b61077f5760405162461bcd60e51b815260040161064990611b81565b6114ce8484846112f0565b6114da84848484611638565b610d0f5760405162461bcd60e51b815260040161064990611b81565b6001600160a01b03821661154c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610649565b6000818152600260205260409020546001600160a01b0316156115b15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610649565b6001600160a01b03821660009081526003602052604081208054600192906115da908490611c59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561173a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061167c903390899088908890600401611aed565b602060405180830381600087803b15801561169657600080fd5b505af19250505080156116c6575060408051601f3d908101601f191682019092526116c391810190611a13565b60015b611720573d8080156116f4576040519150601f19603f3d011682016040523d82523d6000602084013e6116f9565b606091505b5080516117185760405162461bcd60e51b815260040161064990611b81565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111f5565b506001949350505050565b82805461175190611ce7565b90600052602060002090601f01602090048101928261177357600085556117b9565b82601f1061178c57805160ff19168380011785556117b9565b828001600101855582156117b9579182015b828111156117b957825182559160200191906001019061179e565b506117c59291506117c9565b5090565b5b808211156117c557600081556001016117ca565b600067ffffffffffffffff808411156117f9576117f9611d93565b604051601f8501601f19908116603f0116810190828211818310171561182157611821611d93565b8160405280935085815286868601111561183a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461186b57600080fd5b919050565b8035801515811461186b57600080fd5b60006020828403121561189257600080fd5b610de982611854565b600080604083850312156118ae57600080fd5b6118b783611854565b91506118c560208401611854565b90509250929050565b6000806000606084860312156118e357600080fd5b6118ec84611854565b92506118fa60208501611854565b9150604084013590509250925092565b6000806000806080858703121561192057600080fd5b61192985611854565b935061193760208601611854565b925060408501359150606085013567ffffffffffffffff81111561195a57600080fd5b8501601f8101871361196b57600080fd5b61197a878235602084016117de565b91505092959194509250565b6000806040838503121561199957600080fd5b6119a283611854565b91506118c560208401611870565b600080604083850312156119c357600080fd5b6119cc83611854565b946020939093013593505050565b600080604083850312156119ed57600080fd5b6119cc83611870565b600060208284031215611a0857600080fd5b8135610de981611da9565b600060208284031215611a2557600080fd5b8151610de981611da9565b600060208284031215611a4257600080fd5b813567ffffffffffffffff811115611a5957600080fd5b8201601f81018413611a6a57600080fd5b6111f5848235602084016117de565b600060208284031215611a8b57600080fd5b5035919050565b60008151808452611aaa816020860160208601611cbb565b601f01601f19169290920160200192915050565b60008351611ad0818460208801611cbb565b835190830190611ae4818360208801611cbb565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2090830184611a92565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611b6257835183529284019291840191600101611b46565b50909695505050505050565b602081526000610de96020830184611a92565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c6c57611c6c611d51565b500190565b600082611c8057611c80611d67565b500490565b6000816000190483118215151615611c9f57611c9f611d51565b500290565b600082821015611cb657611cb6611d51565b500390565b60005b83811015611cd6578181015183820152602001611cbe565b83811115610d0f5750506000910152565b600181811c90821680611cfb57607f821691505b60208210811415611d1c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d3657611d36611d51565b5060010190565b600082611d4c57611d4c611d67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f6157600080fdfea2646970667358221220636b1367c1c2fc9ba678ff3cb8948b6ab2278a512aac27e7521945b35906051864736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c51461045e578063f2fde38b146104a7578063f4a0a528146104c7578063fa94a059146104da57600080fd5b8063c87b56dd146103f7578063e081b78114610417578063e80981b41461043157600080fd5b806395d89b41116100c657806395d89b411461038f578063a22cb465146103a4578063a49a1e7d146103c4578063b88d4fde146103d757600080fd5b806370a082311461033c578063715018a61461035c5780638da5cb5b1461037157600080fd5b80633cb51994116101595780634f28e680116101335780634f28e680146102e05780636352211e146102f3578063656b4b65146103135780636817c76c1461032657600080fd5b80633cb51994146102955780633ccfd60b146102ab57806342842e0e146102c057600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046119f6565b6104f0565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610542565b6040516101cd9190611b6e565b34801561020457600080fd5b50610218610213366004611a79565b6105d4565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046119b0565b61066e565b005b34801561025e57600080fd5b50610267610784565b6040519081526020016101cd565b34801561028157600080fd5b506102506102903660046118ce565b610794565b3480156102a157600080fd5b50610267600a5481565b3480156102b757600080fd5b5061025061079f565b3480156102cc57600080fd5b506102506102db3660046118ce565b6107fc565b6102506102ee366004611a79565b610817565b3480156102ff57600080fd5b5061021861030e366004611a79565b610a7d565b6102506103213660046119da565b610af4565b34801561033257600080fd5b5061026760095481565b34801561034857600080fd5b50610267610357366004611880565b610b35565b34801561036857600080fd5b50610250610bbc565b34801561037d57600080fd5b506006546001600160a01b0316610218565b34801561039b57600080fd5b506101eb610bf2565b3480156103b057600080fd5b506102506103bf366004611986565b610c01565b6102506103d2366004611a30565b610cc6565b3480156103e357600080fd5b506102506103f236600461190a565b610d03565b34801561040357600080fd5b506101eb610412366004611a79565b610d15565b34801561042357600080fd5b50600b546101c19060ff1681565b34801561043d57600080fd5b5061045161044c366004611880565b610df0565b6040516101cd9190611b2a565b34801561046a57600080fd5b506101c161047936600461189b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104b357600080fd5b506102506104c2366004611880565b610ec9565b6102506104d5366004611a79565b610f64565b3480156104e657600080fd5b506102676115b381565b60006001600160e01b031982166380ac58cd60e01b148061052157506001600160e01b03198216635b5e139f60e01b145b8061053c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461055190611ce7565b80601f016020809104026020016040519081016040528092919081815260200182805461057d90611ce7565b80156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061067982610a7d565b9050806001600160a01b0316836001600160a01b031614156106e75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610649565b336001600160a01b038216148061070357506107038133610479565b6107755760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610649565b61077f8383610f93565b505050565b600061078f60075490565b905090565b61077f838383611001565b6006546001600160a01b031633146107c95760405162461bcd60e51b815260040161064990611bd3565b6040514790339082156108fc029083906000818181858888f193505050501580156107f8573d6000803e3d6000fd5b5050565b61077f83838360405180602001604052806000815250610d03565b600b5460ff1661087b5760405162461bcd60e51b815260206004820152602960248201527f50617373657320617265206e6f7420617661696c61626c6520746f206265206d6044820152681a5b9d1959081e595d60ba1b6064820152608401610649565b3233146108ca5760405162461bcd60e51b815260206004820152601760248201527f576861742061726520796f7520646f696e673f203e3a280000000000000000006044820152606401610649565b60006108d560075490565b90506115b38111156109295760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20537570706c7920686173206265656e20726561636865640000006044820152606401610649565b60008211801561093b5750600a548211155b6109875760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420612076616c6964207175616e74697479206f662070617373657300006044820152606401610649565b6115b36109948284611032565b11156109e25760405162461bcd60e51b815260206004820152601d60248201527f596f7520776f756c642065786365656420546f74616c20537570706c790000006044820152606401610649565b60095434906109f1908461103e565b1015610a3f5760405162461bcd60e51b815260206004820152601a60248201527f596f75206469646e27742073656e6420656e6f756768206574680000000000006044820152606401610649565b60005b8281101561077f57610a5d33610a588385611c59565b61104a565b610a6b600780546001019055565b80610a7581611d22565b915050610a42565b6000818152600260205260408120546001600160a01b03168061053c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610649565b6006546001600160a01b03163314610b1e5760405162461bcd60e51b815260040161064990611bd3565b600b805460ff191692151592909217909155600a55565b60006001600160a01b038216610ba05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610649565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610be65760405162461bcd60e51b815260040161064990611bd3565b610bf06000611064565b565b60606001805461055190611ce7565b6001600160a01b038216331415610c5a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610649565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610cf05760405162461bcd60e51b815260040161064990611bd3565b80516107f8906008906020840190611745565b610d0f848484846110b6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610649565b6000610d9e6110e8565b90506000815111610dbe5760405180602001604052806000815250610de9565b80610dc8846110f7565b604051602001610dd9929190611abe565b6040516020818303038152906040525b9392505050565b60606000610dfd83610b35565b90506000610e0a60075490565b90506000808367ffffffffffffffff811115610e2857610e28611d93565b604051908082528060200260200182016040528015610e51578160200160208202803683370190505b50905060005b83811015610ebf57866001600160a01b0316610e7282610a7d565b6001600160a01b03161415610ead5780828481518110610e9457610e94611d7d565b602090810291909101015282610ea981611d22565b9350505b80610eb781611d22565b915050610e57565b5095945050505050565b6006546001600160a01b03163314610ef35760405162461bcd60e51b815260040161064990611bd3565b6001600160a01b038116610f585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610649565b610f6181611064565b50565b6006546001600160a01b03163314610f8e5760405162461bcd60e51b815260040161064990611bd3565b600955565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fc882610a7d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61100b33826111fd565b6110275760405162461bcd60e51b815260040161064990611c08565b61077f8383836112f0565b6000610de98284611c59565b6000610de98284611c85565b6107f8828260405180602001604052806000815250611490565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110c033836111fd565b6110dc5760405162461bcd60e51b815260040161064990611c08565b610d0f848484846114c3565b60606008805461055190611ce7565b60608161111b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611145578061112f81611d22565b915061113e9050600a83611c71565b915061111f565b60008167ffffffffffffffff81111561116057611160611d93565b6040519080825280601f01601f19166020018201604052801561118a576020820181803683370190505b5090505b84156111f55761119f600183611ca4565b91506111ac600a86611d3d565b6111b7906030611c59565b60f81b8183815181106111cc576111cc611d7d565b60200101906001600160f81b031916908160001a9053506111ee600a86611c71565b945061118e565b949350505050565b6000818152600260205260408120546001600160a01b03166112765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610649565b600061128183610a7d565b9050806001600160a01b0316846001600160a01b031614806112bc5750836001600160a01b03166112b1846105d4565b6001600160a01b0316145b806111f557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166111f5565b826001600160a01b031661130382610a7d565b6001600160a01b03161461136b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610649565b6001600160a01b0382166113cd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610649565b6113d8600082610f93565b6001600160a01b0383166000908152600360205260408120805460019290611401908490611ca4565b90915550506001600160a01b038216600090815260036020526040812080546001929061142f908490611c59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61149a83836114f6565b6114a76000848484611638565b61077f5760405162461bcd60e51b815260040161064990611b81565b6114ce8484846112f0565b6114da84848484611638565b610d0f5760405162461bcd60e51b815260040161064990611b81565b6001600160a01b03821661154c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610649565b6000818152600260205260409020546001600160a01b0316156115b15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610649565b6001600160a01b03821660009081526003602052604081208054600192906115da908490611c59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561173a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061167c903390899088908890600401611aed565b602060405180830381600087803b15801561169657600080fd5b505af19250505080156116c6575060408051601f3d908101601f191682019092526116c391810190611a13565b60015b611720573d8080156116f4576040519150601f19603f3d011682016040523d82523d6000602084013e6116f9565b606091505b5080516117185760405162461bcd60e51b815260040161064990611b81565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111f5565b506001949350505050565b82805461175190611ce7565b90600052602060002090601f01602090048101928261177357600085556117b9565b82601f1061178c57805160ff19168380011785556117b9565b828001600101855582156117b9579182015b828111156117b957825182559160200191906001019061179e565b506117c59291506117c9565b5090565b5b808211156117c557600081556001016117ca565b600067ffffffffffffffff808411156117f9576117f9611d93565b604051601f8501601f19908116603f0116810190828211818310171561182157611821611d93565b8160405280935085815286868601111561183a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461186b57600080fd5b919050565b8035801515811461186b57600080fd5b60006020828403121561189257600080fd5b610de982611854565b600080604083850312156118ae57600080fd5b6118b783611854565b91506118c560208401611854565b90509250929050565b6000806000606084860312156118e357600080fd5b6118ec84611854565b92506118fa60208501611854565b9150604084013590509250925092565b6000806000806080858703121561192057600080fd5b61192985611854565b935061193760208601611854565b925060408501359150606085013567ffffffffffffffff81111561195a57600080fd5b8501601f8101871361196b57600080fd5b61197a878235602084016117de565b91505092959194509250565b6000806040838503121561199957600080fd5b6119a283611854565b91506118c560208401611870565b600080604083850312156119c357600080fd5b6119cc83611854565b946020939093013593505050565b600080604083850312156119ed57600080fd5b6119cc83611870565b600060208284031215611a0857600080fd5b8135610de981611da9565b600060208284031215611a2557600080fd5b8151610de981611da9565b600060208284031215611a4257600080fd5b813567ffffffffffffffff811115611a5957600080fd5b8201601f81018413611a6a57600080fd5b6111f5848235602084016117de565b600060208284031215611a8b57600080fd5b5035919050565b60008151808452611aaa816020860160208601611cbb565b601f01601f19169290920160200192915050565b60008351611ad0818460208801611cbb565b835190830190611ae4818360208801611cbb565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b2090830184611a92565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611b6257835183529284019291840191600101611b46565b50909695505050505050565b602081526000610de96020830184611a92565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c6c57611c6c611d51565b500190565b600082611c8057611c80611d67565b500490565b6000816000190483118215151615611c9f57611c9f611d51565b500290565b600082821015611cb657611cb6611d51565b500390565b60005b83811015611cd6578181015183820152602001611cbe565b83811115610d0f5750506000910152565b600181811c90821680611cfb57607f821691505b60208210811415611d1c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d3657611d36611d51565b5060010190565b600082611d4c57611d4c611d67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f6157600080fdfea2646970667358221220636b1367c1c2fc9ba678ff3cb8948b6ab2278a512aac27e7521945b35906051864736f6c63430008070033

Deployed Bytecode Sourcemap

42364:3031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19855:305;;;;;;;;;;-1:-1:-1;19855:305:0;;;;;:::i;:::-;;:::i;:::-;;;6608:14:1;;6601:22;6583:41;;6571:2;6556:18;19855:305:0;;;;;;;;20800:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22359:221::-;;;;;;;;;;-1:-1:-1;22359:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5269:32:1;;;5251:51;;5239:2;5224:18;22359:221:0;5105:203:1;21882:411:0;;;;;;;;;;-1:-1:-1;21882:411:0;;;;;:::i;:::-;;:::i;:::-;;44313:96;;;;;;;;;;;;;:::i;:::-;;;15579:25:1;;;15567:2;15552:18;44313:96:0;15433:177:1;44924:138:0;;;;;;;;;;-1:-1:-1;44924:138:0;;;;;:::i;:::-;;:::i;42682:29::-;;;;;;;;;;;;;;;;44162:143;;;;;;;;;;;;;:::i;45070:::-;;;;;;;;;;-1:-1:-1;45070:143:0;;;;;:::i;:::-;;:::i;43059:601::-;;;;;;:::i;:::-;;:::i;20494:239::-;;;;;;;;;;-1:-1:-1;20494:239:0;;;;;:::i;:::-;;:::i;44417:166::-;;;;;;:::i;:::-;;:::i;42637:38::-;;;;;;;;;;;;;;;;20224:208;;;;;;;;;;-1:-1:-1;20224:208:0;;;;;:::i;:::-;;:::i;33541:94::-;;;;;;;;;;;;;:::i;32890:87::-;;;;;;;;;;-1:-1:-1;32963:6:0;;-1:-1:-1;;;;;32963:6:0;32890:87;;20969:104;;;;;;;;;;;;;:::i;22652:295::-;;;;;;;;;;-1:-1:-1;22652:295:0;;;;;:::i;:::-;;:::i;44809:107::-;;;;;;:::i;:::-;;:::i;45221:171::-;;;;;;;;;;-1:-1:-1;45221:171:0;;;;;:::i;:::-;;:::i;21144:334::-;;;;;;;;;;-1:-1:-1;21144:334:0;;;;;:::i;:::-;;:::i;42718:28::-;;;;;;;;;;-1:-1:-1;42718:28:0;;;;;;;;43668:486;;;;;;;;;;-1:-1:-1;43668:486:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23018:164::-;;;;;;;;;;-1:-1:-1;23018:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23139:25:0;;;23115:4;23139:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23018:164;33790:192;;;;;;;;;;-1:-1:-1;33790:192:0;;;;;:::i;:::-;;:::i;44591:102::-;;;;;;:::i;:::-;;:::i;42588:40::-;;;;;;;;;;;;42624:4;42588:40;;19855:305;19957:4;-1:-1:-1;;;;;;19994:40:0;;-1:-1:-1;;;19994:40:0;;:105;;-1:-1:-1;;;;;;;20051:48:0;;-1:-1:-1;;;20051:48:0;19994:105;:158;;;-1:-1:-1;;;;;;;;;;18571:40:0;;;20116:36;19974:178;19855:305;-1:-1:-1;;19855:305:0:o;20800:100::-;20854:13;20887:5;20880:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20800:100;:::o;22359:221::-;22435:7;25842:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25842:16:0;22455:73;;;;-1:-1:-1;;;22455:73:0;;13215:2:1;22455:73:0;;;13197:21:1;13254:2;13234:18;;;13227:30;13293:34;13273:18;;;13266:62;-1:-1:-1;;;13344:18:1;;;13337:42;13396:19;;22455:73:0;;;;;;;;;-1:-1:-1;22548:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22548:24:0;;22359:221::o;21882:411::-;21963:13;21979:23;21994:7;21979:14;:23::i;:::-;21963:39;;22027:5;-1:-1:-1;;;;;22021:11:0;:2;-1:-1:-1;;;;;22021:11:0;;;22013:57;;;;-1:-1:-1;;;22013:57:0;;14815:2:1;22013:57:0;;;14797:21:1;14854:2;14834:18;;;14827:30;14893:34;14873:18;;;14866:62;-1:-1:-1;;;14944:18:1;;;14937:31;14985:19;;22013:57:0;14613:397:1;22013:57:0;15641:10;-1:-1:-1;;;;;22105:21:0;;;;:62;;-1:-1:-1;22130:37:0;22147:5;15641:10;23018:164;:::i;22130:37::-;22083:168;;;;-1:-1:-1;;;22083:168:0;;11608:2:1;22083:168:0;;;11590:21:1;11647:2;11627:18;;;11620:30;11686:34;11666:18;;;11659:62;11757:26;11737:18;;;11730:54;11801:19;;22083:168:0;11406:420:1;22083:168:0;22264:21;22273:2;22277:7;22264:8;:21::i;:::-;21952:341;21882:411;;:::o;44313:96::-;44358:7;44385:16;:6;41861:14;;41769:114;44385:16;44378:23;;44313:96;:::o;44924:138::-;45016:38;45036:4;45042:2;45046:7;45016:19;:38::i;44162:143::-;32963:6;;-1:-1:-1;;;;;32963:6:0;15641:10;33110:23;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;44260:37:::1;::::0;44228:21:::1;::::0;44268:10:::1;::::0;44260:37;::::1;;;::::0;44228:21;;44210:15:::1;44260:37:::0;44210:15;44260:37;44228:21;44268:10;44260:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44199:106;44162:143::o:0;45070:::-;45166:39;45183:4;45189:2;45193:7;45166:39;;;;;;;;;;;;:16;:39::i;43059:601::-;42796:8;;;;42788:62;;;;-1:-1:-1;;;42788:62:0;;9671:2:1;42788:62:0;;;9653:21:1;9710:2;9690:18;;;9683:30;9749:34;9729:18;;;9722:62;-1:-1:-1;;;9800:18:1;;;9793:39;9849:19;;42788:62:0;9469:405:1;42788:62:0;42922:9:::1;42935:10;42922:23;42914:59;;;::::0;-1:-1:-1;;;42914:59:0;;7778:2:1;42914:59:0::1;::::0;::::1;7760:21:1::0;7817:2;7797:18;;;7790:30;7856:25;7836:18;;;7829:53;7899:18;;42914:59:0::1;7576:347:1::0;42914:59:0::1;43141:21:::2;43165:16;:6;41861:14:::0;;41769:114;43165:16:::2;43141:40;;42624:4;43202:13;:26;;43194:68;;;::::0;-1:-1:-1;;;43194:68:0;;7061:2:1;43194:68:0::2;::::0;::::2;7043:21:1::0;7100:2;7080:18;;;7073:30;7139:31;7119:18;;;7112:59;7188:18;;43194:68:0::2;6859:353:1::0;43194:68:0::2;43287:1;43281:3;:7;:27;;;;;43299:9;;43292:3;:16;;43281:27;43273:70;;;::::0;-1:-1:-1;;;43273:70:0;;7419:2:1;43273:70:0::2;::::0;::::2;7401:21:1::0;7458:2;7438:18;;;7431:30;7497:32;7477:18;;;7470:60;7547:18;;43273:70:0::2;7217:354:1::0;43273:70:0::2;42624:4;43362:22;:13:::0;43380:3;43362:17:::2;:22::i;:::-;:35;;43354:77;;;::::0;-1:-1:-1;;;43354:77:0;;8956:2:1;43354:77:0::2;::::0;::::2;8938:21:1::0;8995:2;8975:18;;;8968:30;9034:31;9014:18;;;9007:59;9083:18;;43354:77:0::2;8754:353:1::0;43354:77:0::2;43450:9;::::0;43472::::2;::::0;43450:18:::2;::::0;43464:3;43450:13:::2;:18::i;:::-;:31;;43442:70;;;::::0;-1:-1:-1;;;43442:70:0;;11253:2:1;43442:70:0::2;::::0;::::2;11235:21:1::0;11292:2;11272:18;;;11265:30;11331:28;11311:18;;;11304:56;11377:18;;43442:70:0::2;11051:350:1::0;43442:70:0::2;43530:9;43525:128;43544:3;43540:1;:7;43525:128;;;43568:40;43578:10;43590:17;43606:1:::0;43590:13;:17:::2;:::i;:::-;43568:9;:40::i;:::-;43623:18;:6;41980:19:::0;;41998:1;41980:19;;;41891:127;43623:18:::2;43548:3:::0;::::2;::::0;::::2;:::i;:::-;;;;43525:128;;20494:239:::0;20566:7;20602:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20602:16:0;20637:19;20629:73;;;;-1:-1:-1;;;20629:73:0;;12444:2:1;20629:73:0;;;12426:21:1;12483:2;12463:18;;;12456:30;12522:34;12502:18;;;12495:62;-1:-1:-1;;;12573:18:1;;;12566:39;12622:19;;20629:73:0;12242:405:1;44417:166:0;32963:6;;-1:-1:-1;;;;;32963:6:0;15641:10;33110:23;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;44518:8:::1;:21:::0;;-1:-1:-1;;44518:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;44550:9:::1;:25:::0;44417:166::o;20224:208::-;20296:7;-1:-1:-1;;;;;20324:19:0;;20316:74;;;;-1:-1:-1;;;20316:74:0;;12033:2:1;20316:74:0;;;12015:21:1;12072:2;12052:18;;;12045:30;12111:34;12091:18;;;12084:62;-1:-1:-1;;;12162:18:1;;;12155:40;12212:19;;20316:74:0;11831:406:1;20316:74:0;-1:-1:-1;;;;;;20408:16:0;;;;;:9;:16;;;;;;;20224:208::o;33541:94::-;32963:6;;-1:-1:-1;;;;;32963:6:0;15641:10;33110:23;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;33606:21:::1;33624:1;33606:9;:21::i;:::-;33541:94::o:0;20969:104::-;21025:13;21058:7;21051:14;;;;;:::i;22652:295::-;-1:-1:-1;;;;;22755:24:0;;15641:10;22755:24;;22747:62;;;;-1:-1:-1;;;22747:62:0;;10486:2:1;22747:62:0;;;10468:21:1;10525:2;10505:18;;;10498:30;10564:27;10544:18;;;10537:55;10609:18;;22747:62:0;10284:349:1;22747:62:0;15641:10;22822:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22822:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22822:53:0;;;;;;;;;;22891:48;;6583:41:1;;;22822:42:0;;15641:10;22891:48;;6556:18:1;22891:48:0;;;;;;;22652:295;;:::o;44809:107::-;32963:6;;-1:-1:-1;;;;;32963:6:0;15641:10;33110:23;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;44890:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;45221:171::-:0;45336:48;45360:4;45366:2;45370:7;45379:4;45336:23;:48::i;:::-;45221:171;;;;:::o;21144:334::-;25818:4;25842:16;;;:7;:16;;;;;;21217:13;;-1:-1:-1;;;;;25842:16:0;21243:76;;;;-1:-1:-1;;;21243:76:0;;14399:2:1;21243:76:0;;;14381:21:1;14438:2;14418:18;;;14411:30;14477:34;14457:18;;;14450:62;-1:-1:-1;;;14528:18:1;;;14521:45;14583:19;;21243:76:0;14197:411:1;21243:76:0;21332:21;21356:10;:8;:10::i;:::-;21332:34;;21408:1;21390:7;21384:21;:25;:86;;;;;;;;;;;;;;;;;21436:7;21445:18;:7;:16;:18::i;:::-;21419:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21384:86;21377:93;21144:334;-1:-1:-1;;;21144:334:0:o;43668:486::-;43734:16;43763:18;43784:17;43794:6;43784:9;:17::i;:::-;43763:38;;43812:21;43836:16;:6;41861:14;;41769:114;43836:16;43812:40;;43863:9;43889:23;43929:10;43915:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43915:25:0;;43889:51;;43966:9;43961:160;43980:13;43976:1;:17;43961:160;;;44032:6;-1:-1:-1;;;;;44018:20:0;:10;44026:1;44018:7;:10::i;:::-;-1:-1:-1;;;;;44018:20:0;;44014:96;;;44071:1;44059:6;44066:1;44059:9;;;;;;;;:::i;:::-;;;;;;;;;;:13;44091:3;;;;:::i;:::-;;;;44014:96;43994:3;;;;:::i;:::-;;;;43961:160;;;-1:-1:-1;44140:6:0;43668:486;-1:-1:-1;;;;;43668:486:0:o;33790:192::-;32963:6;;-1:-1:-1;;;;;32963:6:0;15641:10;33110:23;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33879:22:0;::::1;33871:73;;;::::0;-1:-1:-1;;;33871:73:0;;8549:2:1;33871:73:0::1;::::0;::::1;8531:21:1::0;8588:2;8568:18;;;8561:30;8627:34;8607:18;;;8600:62;-1:-1:-1;;;8678:18:1;;;8671:36;8724:19;;33871:73:0::1;8347:402:1::0;33871:73:0::1;33955:19;33965:8;33955:9;:19::i;:::-;33790:192:::0;:::o;44591:102::-;32963:6;;-1:-1:-1;;;;;32963:6:0;15641:10;33110:23;33102:68;;;;-1:-1:-1;;;33102:68:0;;;;;;;:::i;:::-;44666:9:::1;:19:::0;44591:102::o;29735:174::-;29810:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29810:29:0;-1:-1:-1;;;;;29810:29:0;;;;;;;;:24;;29864:23;29810:24;29864:14;:23::i;:::-;-1:-1:-1;;;;;29855:46:0;;;;;;;;;;;29735:174;;:::o;23249:339::-;23444:41;15641:10;23477:7;23444:18;:41::i;:::-;23436:103;;;;-1:-1:-1;;;23436:103:0;;;;;;;:::i;:::-;23552:28;23562:4;23568:2;23572:7;23552:9;:28::i;36871:98::-;36929:7;36956:5;36960:1;36956;:5;:::i;37609:98::-;37667:7;37694:5;37698:1;37694;:5;:::i;26737:110::-;26813:26;26823:2;26827:7;26813:26;;;;;;;;;;;;:9;:26::i;33990:173::-;34065:6;;;-1:-1:-1;;;;;34082:17:0;;;-1:-1:-1;;;;;;34082:17:0;;;;;;;34115:40;;34065:6;;;34082:17;34065:6;;34115:40;;34046:16;;34115:40;34035:128;33990:173;:::o;23915:328::-;24090:41;15641:10;24123:7;24090:18;:41::i;:::-;24082:103;;;;-1:-1:-1;;;24082:103:0;;;;;;;:::i;:::-;24196:39;24210:4;24216:2;24220:7;24229:5;24196:13;:39::i;44701:100::-;44753:13;44786:7;44779:14;;;;;:::i;16003:723::-;16059:13;16280:10;16276:53;;-1:-1:-1;;16307:10:0;;;;;;;;;;;;-1:-1:-1;;;16307:10:0;;;;;16003:723::o;16276:53::-;16354:5;16339:12;16395:78;16402:9;;16395:78;;16428:8;;;;:::i;:::-;;-1:-1:-1;16451:10:0;;-1:-1:-1;16459:2:0;16451:10;;:::i;:::-;;;16395:78;;;16483:19;16515:6;16505:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16505:17:0;;16483:39;;16533:154;16540:10;;16533:154;;16567:11;16577:1;16567:11;;:::i;:::-;;-1:-1:-1;16636:10:0;16644:2;16636:5;:10;:::i;:::-;16623:24;;:2;:24;:::i;:::-;16610:39;;16593:6;16600;16593:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16593:56:0;;;;;;;;-1:-1:-1;16664:11:0;16673:2;16664:11;;:::i;:::-;;;16533:154;;;16711:6;16003:723;-1:-1:-1;;;;16003:723:0:o;26047:348::-;26140:4;25842:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25842:16:0;26157:73;;;;-1:-1:-1;;;26157:73:0;;10840:2:1;26157:73:0;;;10822:21:1;10879:2;10859:18;;;10852:30;10918:34;10898:18;;;10891:62;-1:-1:-1;;;10969:18:1;;;10962:42;11021:19;;26157:73:0;10638:408:1;26157:73:0;26241:13;26257:23;26272:7;26257:14;:23::i;:::-;26241:39;;26310:5;-1:-1:-1;;;;;26299:16:0;:7;-1:-1:-1;;;;;26299:16:0;;:51;;;;26343:7;-1:-1:-1;;;;;26319:31:0;:20;26331:7;26319:11;:20::i;:::-;-1:-1:-1;;;;;26319:31:0;;26299:51;:87;;;-1:-1:-1;;;;;;23139:25:0;;;23115:4;23139:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26354:32;23018:164;29039:578;29198:4;-1:-1:-1;;;;;29171:31:0;:23;29186:7;29171:14;:23::i;:::-;-1:-1:-1;;;;;29171:31:0;;29163:85;;;;-1:-1:-1;;;29163:85:0;;13989:2:1;29163:85:0;;;13971:21:1;14028:2;14008:18;;;14001:30;14067:34;14047:18;;;14040:62;-1:-1:-1;;;14118:18:1;;;14111:39;14167:19;;29163:85:0;13787:405:1;29163:85:0;-1:-1:-1;;;;;29267:16:0;;29259:65;;;;-1:-1:-1;;;29259:65:0;;10081:2:1;29259:65:0;;;10063:21:1;10120:2;10100:18;;;10093:30;10159:34;10139:18;;;10132:62;-1:-1:-1;;;10210:18:1;;;10203:34;10254:19;;29259:65:0;9879:400:1;29259:65:0;29441:29;29458:1;29462:7;29441:8;:29::i;:::-;-1:-1:-1;;;;;29483:15:0;;;;;;:9;:15;;;;;:20;;29502:1;;29483:15;:20;;29502:1;;29483:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29514:13:0;;;;;;:9;:13;;;;;:18;;29531:1;;29514:13;:18;;29531:1;;29514:18;:::i;:::-;;;;-1:-1:-1;;29543:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29543:21:0;-1:-1:-1;;;;;29543:21:0;;;;;;;;;29582:27;;29543:16;;29582:27;;;;;;;29039:578;;;:::o;27074:321::-;27204:18;27210:2;27214:7;27204:5;:18::i;:::-;27255:54;27286:1;27290:2;27294:7;27303:5;27255:22;:54::i;:::-;27233:154;;;;-1:-1:-1;;;27233:154:0;;;;;;;:::i;25125:315::-;25282:28;25292:4;25298:2;25302:7;25282:9;:28::i;:::-;25329:48;25352:4;25358:2;25362:7;25371:5;25329:22;:48::i;:::-;25321:111;;;;-1:-1:-1;;;25321:111:0;;;;;;;:::i;27731:382::-;-1:-1:-1;;;;;27811:16:0;;27803:61;;;;-1:-1:-1;;;27803:61:0;;12854:2:1;27803:61:0;;;12836:21:1;;;12873:18;;;12866:30;12932:34;12912:18;;;12905:62;12984:18;;27803:61:0;12652:356:1;27803:61:0;25818:4;25842:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25842:16:0;:30;27875:58;;;;-1:-1:-1;;;27875:58:0;;9314:2:1;27875:58:0;;;9296:21:1;9353:2;9333:18;;;9326:30;9392;9372:18;;;9365:58;9440:18;;27875:58:0;9112:352:1;27875:58:0;-1:-1:-1;;;;;28004:13:0;;;;;;:9;:13;;;;;:18;;28021:1;;28004:13;:18;;28021:1;;28004:18;:::i;:::-;;;;-1:-1:-1;;28033:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28033:21:0;-1:-1:-1;;;;;28033:21:0;;;;;;;;28072:33;;28033:16;;;28072:33;;28033:16;;28072:33;27731:382;;:::o;30474:799::-;30629:4;-1:-1:-1;;;;;30650:13:0;;8011:20;8059:8;30646:620;;30686:72;;-1:-1:-1;;;30686:72:0;;-1:-1:-1;;;;;30686:36:0;;;;;:72;;15641:10;;30737:4;;30743:7;;30752:5;;30686:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30686:72:0;;;;;;;;-1:-1:-1;;30686:72:0;;;;;;;;;;;;:::i;:::-;;;30682:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30928:13:0;;30924:272;;30971:60;;-1:-1:-1;;;30971:60:0;;;;;;;:::i;30924:272::-;31146:6;31140:13;31131:6;31127:2;31123:15;31116:38;30682:529;-1:-1:-1;;;;;;30809:51:0;-1:-1:-1;;;30809:51:0;;-1:-1:-1;30802:58:0;;30646:620;-1:-1:-1;31250:4:0;30474:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:248::-;3036:6;3044;3097:2;3085:9;3076:7;3072:23;3068:32;3065:52;;;3113:1;3110;3103:12;3065:52;3136:26;3152:9;3136:26;:::i;3224:245::-;3282:6;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:30;3433:5;3409:30;:::i;3474:249::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3644:9;3638:16;3663:30;3687:5;3663:30;:::i;3728:450::-;3797:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:52;;;3866:1;3863;3856:12;3818:52;3906:9;3893:23;3939:18;3931:6;3928:30;3925:50;;;3971:1;3968;3961:12;3925:50;3994:22;;4047:4;4039:13;;4035:27;-1:-1:-1;4025:55:1;;4076:1;4073;4066:12;4025:55;4099:73;4164:7;4159:2;4146:16;4141:2;4137;4133:11;4099:73;:::i;4183:180::-;4242:6;4295:2;4283:9;4274:7;4270:23;4266:32;4263:52;;;4311:1;4308;4301:12;4263:52;-1:-1:-1;4334:23:1;;4183:180;-1:-1:-1;4183:180:1:o;4368:257::-;4409:3;4447:5;4441:12;4474:6;4469:3;4462:19;4490:63;4546:6;4539:4;4534:3;4530:14;4523:4;4516:5;4512:16;4490:63;:::i;:::-;4607:2;4586:15;-1:-1:-1;;4582:29:1;4573:39;;;;4614:4;4569:50;;4368:257;-1:-1:-1;;4368:257:1:o;4630:470::-;4809:3;4847:6;4841:13;4863:53;4909:6;4904:3;4897:4;4889:6;4885:17;4863:53;:::i;:::-;4979:13;;4938:16;;;;5001:57;4979:13;4938:16;5035:4;5023:17;;5001:57;:::i;:::-;5074:20;;4630:470;-1:-1:-1;;;;4630:470:1:o;5313:488::-;-1:-1:-1;;;;;5582:15:1;;;5564:34;;5634:15;;5629:2;5614:18;;5607:43;5681:2;5666:18;;5659:34;;;5729:3;5724:2;5709:18;;5702:31;;;5507:4;;5750:45;;5775:19;;5767:6;5750:45;:::i;:::-;5742:53;5313:488;-1:-1:-1;;;;;;5313:488:1:o;5806:632::-;5977:2;6029:21;;;6099:13;;6002:18;;;6121:22;;;5948:4;;5977:2;6200:15;;;;6174:2;6159:18;;;5948:4;6243:169;6257:6;6254:1;6251:13;6243:169;;;6318:13;;6306:26;;6387:15;;;;6352:12;;;;6279:1;6272:9;6243:169;;;-1:-1:-1;6429:3:1;;5806:632;-1:-1:-1;;;;;;5806:632:1:o;6635:219::-;6784:2;6773:9;6766:21;6747:4;6804:44;6844:2;6833:9;6829:18;6821:6;6804:44;:::i;7928:414::-;8130:2;8112:21;;;8169:2;8149:18;;;8142:30;8208:34;8203:2;8188:18;;8181:62;-1:-1:-1;;;8274:2:1;8259:18;;8252:48;8332:3;8317:19;;7928:414::o;13426:356::-;13628:2;13610:21;;;13647:18;;;13640:30;13706:34;13701:2;13686:18;;13679:62;13773:2;13758:18;;13426:356::o;15015:413::-;15217:2;15199:21;;;15256:2;15236:18;;;15229:30;15295:34;15290:2;15275:18;;15268:62;-1:-1:-1;;;15361:2:1;15346:18;;15339:47;15418:3;15403:19;;15015:413::o;15615:128::-;15655:3;15686:1;15682:6;15679:1;15676:13;15673:39;;;15692:18;;:::i;:::-;-1:-1:-1;15728:9:1;;15615:128::o;15748:120::-;15788:1;15814;15804:35;;15819:18;;:::i;:::-;-1:-1:-1;15853:9:1;;15748:120::o;15873:168::-;15913:7;15979:1;15975;15971:6;15967:14;15964:1;15961:21;15956:1;15949:9;15942:17;15938:45;15935:71;;;15986:18;;:::i;:::-;-1:-1:-1;16026:9:1;;15873:168::o;16046:125::-;16086:4;16114:1;16111;16108:8;16105:34;;;16119:18;;:::i;:::-;-1:-1:-1;16156:9:1;;16046:125::o;16176:258::-;16248:1;16258:113;16272:6;16269:1;16266:13;16258:113;;;16348:11;;;16342:18;16329:11;;;16322:39;16294:2;16287:10;16258:113;;;16389:6;16386:1;16383:13;16380:48;;;-1:-1:-1;;16424:1:1;16406:16;;16399:27;16176:258::o;16439:380::-;16518:1;16514:12;;;;16561;;;16582:61;;16636:4;16628:6;16624:17;16614:27;;16582:61;16689:2;16681:6;16678:14;16658:18;16655:38;16652:161;;;16735:10;16730:3;16726:20;16723:1;16716:31;16770:4;16767:1;16760:15;16798:4;16795:1;16788:15;16652:161;;16439:380;;;:::o;16824:135::-;16863:3;-1:-1:-1;;16884:17:1;;16881:43;;;16904:18;;:::i;:::-;-1:-1:-1;16951:1:1;16940:13;;16824:135::o;16964:112::-;16996:1;17022;17012:35;;17027:18;;:::i;:::-;-1:-1:-1;17061:9:1;;16964:112::o;17081:127::-;17142:10;17137:3;17133:20;17130:1;17123:31;17173:4;17170:1;17163:15;17197:4;17194:1;17187:15;17213:127;17274:10;17269:3;17265:20;17262:1;17255:31;17305:4;17302:1;17295:15;17329:4;17326:1;17319:15;17345:127;17406:10;17401:3;17397:20;17394:1;17387:31;17437:4;17434:1;17427:15;17461:4;17458:1;17451:15;17477:127;17538:10;17533:3;17529:20;17526:1;17519:31;17569:4;17566:1;17559:15;17593:4;17590:1;17583:15;17609:131;-1:-1:-1;;;;;;17683:32:1;;17673:43;;17663:71;;17730:1;17727;17720:12

Swarm Source

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