ETH Price: $3,282.73 (+0.09%)
Gas: 4 Gwei

Token

NFT Postcards (POST)
 

Overview

Max Total Supply

11 POST

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
faputy.eth
Balance
2 POST
0x25bc299a5fd97641c542a6a251c4f985591b9a54
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:
NFTPostcard

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 2021-08-31
*/

// Sources flattened with hardhat v2.6.1 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/NFTPostcard.sol

pragma solidity ^0.8.0;



contract NFTPostcard is ERC721, ERC721Enumerable, Ownable {
    string public PROVENANCE;
    bool public saleIsActive = false;
    string private _baseURIextended;
    uint public price = 0.01 ether;

    constructor() ERC721("NFT Postcards", "POST") {
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

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

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

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function mint(address to) public payable {
        require(saleIsActive, "Sale must be active to mint Tokens");
        require(price <= msg.value, "Ether value sent is not correct");
        _safeMint(to, totalSupply()+1);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"saleIsActive","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600c805460ff19169055662386f26fc10000600e553480156200002657600080fd5b50604080518082018252600d81526c4e465420506f7374636172647360981b6020808301918252835180850190945260048452631413d4d560e21b908401528151919291620000789160009162000107565b5080516200008e90600190602084019062000107565b505050620000ab620000a5620000b160201b60201c565b620000b5565b620001ea565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011590620001ad565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600181811c90821680620001c257607f821691505b60208210811415620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b611fd980620001fa6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c5146104a7578063eb8d2444146104f0578063f2fde38b1461050a578063ffe630b51461052a57600080fd5b8063b88d4fde14610447578063c4e3709514610467578063c87b56dd1461048757600080fd5b806391b7f5ed116100c657806391b7f5ed146103dc57806395d89b41146103fc578063a035b1fe14610411578063a22cb4651461042757600080fd5b806370a0823114610389578063715018a6146103a95780638da5cb5b146103be57600080fd5b80633ccfd60b1161015957806355f804b31161013357806355f804b3146103215780636352211e146103415780636373a6b1146103615780636a6278421461037657600080fd5b80633ccfd60b146102cc57806342842e0e146102e15780634f6ccce71461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632f745c59146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611c27565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661055b565b6040516101e89190611d5b565b34801561021f57600080fd5b5061023361022e366004611caa565b6105ed565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611be2565b610687565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611b00565b61079d565b3480156102b857600080fd5b5061027e6102c7366004611be2565b6107ce565b3480156102d857600080fd5b5061026b610864565b3480156102ed57600080fd5b5061026b6102fc366004611b00565b6108c1565b34801561030d57600080fd5b5061027e61031c366004611caa565b6108dc565b34801561032d57600080fd5b5061026b61033c366004611c61565b61096f565b34801561034d57600080fd5b5061023361035c366004611caa565b6109ac565b34801561036d57600080fd5b50610206610a23565b61026b610384366004611ab2565b610ab1565b34801561039557600080fd5b5061027e6103a4366004611ab2565b610b80565b3480156103b557600080fd5b5061026b610c07565b3480156103ca57600080fd5b50600a546001600160a01b0316610233565b3480156103e857600080fd5b5061026b6103f7366004611caa565b610c3d565b34801561040857600080fd5b50610206610c6c565b34801561041d57600080fd5b5061027e600e5481565b34801561043357600080fd5b5061026b610442366004611bb8565b610c7b565b34801561045357600080fd5b5061026b610462366004611b3c565b610d40565b34801561047357600080fd5b5061026b610482366004611c0c565b610d78565b34801561049357600080fd5b506102066104a2366004611caa565b610db5565b3480156104b357600080fd5b506101dc6104c2366004611acd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104fc57600080fd5b50600c546101dc9060ff1681565b34801561051657600080fd5b5061026b610525366004611ab2565b610e90565b34801561053657600080fd5b5061026b610545366004611c61565b610f28565b600061055582610f65565b92915050565b60606000805461056a90611eb5565b80601f016020809104026020016040519081016040528092919081815260200182805461059690611eb5565b80156105e35780601f106105b8576101008083540402835291602001916105e3565b820191906000526020600020905b8154815290600101906020018083116105c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661066b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610692826109ac565b9050806001600160a01b0316836001600160a01b031614156107005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610662565b336001600160a01b038216148061071c575061071c81336104c2565b61078e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610662565b6107988383610f8a565b505050565b6107a73382610ff8565b6107c35760405162461bcd60e51b815260040161066290611df5565b6107988383836110ef565b60006107d983610b80565b821061083b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610662565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461088e5760405162461bcd60e51b815260040161066290611dc0565b6040514790339082156108fc029083906000818181858888f193505050501580156108bd573d6000803e3d6000fd5b5050565b61079883838360405180602001604052806000815250610d40565b60006108e760085490565b821061094a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610662565b6008828154811061095d5761095d611f61565b90600052602060002001549050919050565b600a546001600160a01b031633146109995760405162461bcd60e51b815260040161066290611dc0565b80516108bd90600d906020840190611977565b6000818152600260205260408120546001600160a01b0316806105555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610662565b600b8054610a3090611eb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5c90611eb5565b8015610aa95780601f10610a7e57610100808354040283529160200191610aa9565b820191906000526020600020905b815481529060010190602001808311610a8c57829003601f168201915b505050505081565b600c5460ff16610b0e5760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656044820152616e7360f01b6064820152608401610662565b34600e541115610b605760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610662565b610b7d81610b6d60085490565b610b78906001611e46565b61129a565b50565b60006001600160a01b038216610beb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610662565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c315760405162461bcd60e51b815260040161066290611dc0565b610c3b60006112b4565b565b600a546001600160a01b03163314610c675760405162461bcd60e51b815260040161066290611dc0565b600e55565b60606001805461056a90611eb5565b6001600160a01b038216331415610cd45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610662565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d4a3383610ff8565b610d665760405162461bcd60e51b815260040161066290611df5565b610d7284848484611306565b50505050565b600a546001600160a01b03163314610da25760405162461bcd60e51b815260040161066290611dc0565b600c805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b0316610e345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610662565b6000610e3e611339565b90506000815111610e5e5760405180602001604052806000815250610e89565b80610e6884611348565b604051602001610e79929190611cef565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610eba5760405162461bcd60e51b815260040161066290611dc0565b6001600160a01b038116610f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610662565b610b7d816112b4565b600a546001600160a01b03163314610f525760405162461bcd60e51b815260040161066290611dc0565b80516108bd90600b906020840190611977565b60006001600160e01b0319821663780e9d6360e01b1480610555575061055582611446565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fbf826109ac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610662565b600061107c836109ac565b9050806001600160a01b0316846001600160a01b031614806110b75750836001600160a01b03166110ac846105ed565b6001600160a01b0316145b806110e757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611102826109ac565b6001600160a01b03161461116a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610662565b6001600160a01b0382166111cc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610662565b6111d7838383611496565b6111e2600082610f8a565b6001600160a01b038316600090815260036020526040812080546001929061120b908490611e72565b90915550506001600160a01b0382166000908152600360205260408120805460019290611239908490611e46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108bd8282604051806020016040528060008152506114a1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113118484846110ef565b61131d848484846114d4565b610d725760405162461bcd60e51b815260040161066290611d6e565b6060600d805461056a90611eb5565b60608161136c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611396578061138081611ef0565b915061138f9050600a83611e5e565b9150611370565b60008167ffffffffffffffff8111156113b1576113b1611f77565b6040519080825280601f01601f1916602001820160405280156113db576020820181803683370190505b5090505b84156110e7576113f0600183611e72565b91506113fd600a86611f0b565b611408906030611e46565b60f81b81838151811061141d5761141d611f61565b60200101906001600160f81b031916908160001a90535061143f600a86611e5e565b94506113df565b60006001600160e01b031982166380ac58cd60e01b148061147757506001600160e01b03198216635b5e139f60e01b145b8061055557506301ffc9a760e01b6001600160e01b0319831614610555565b6107988383836115e1565b6114ab8383611699565b6114b860008484846114d4565b6107985760405162461bcd60e51b815260040161066290611d6e565b60006001600160a01b0384163b156115d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611518903390899088908890600401611d1e565b602060405180830381600087803b15801561153257600080fd5b505af1925050508015611562575060408051601f3d908101601f1916820190925261155f91810190611c44565b60015b6115bc573d808015611590576040519150601f19603f3d011682016040523d82523d6000602084013e611595565b606091505b5080516115b45760405162461bcd60e51b815260040161066290611d6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110e7565b506001949350505050565b6001600160a01b03831661163c5761163781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61165f565b816001600160a01b0316836001600160a01b03161461165f5761165f83826117e7565b6001600160a01b0382166116765761079881611884565b826001600160a01b0316826001600160a01b031614610798576107988282611933565b6001600160a01b0382166116ef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610662565b6000818152600260205260409020546001600160a01b0316156117545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610662565b61176060008383611496565b6001600160a01b0382166000908152600360205260408120805460019290611789908490611e46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016117f484610b80565b6117fe9190611e72565b600083815260076020526040902054909150808214611851576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061189690600190611e72565b600083815260096020526040812054600880549394509092849081106118be576118be611f61565b9060005260206000200154905080600883815481106118df576118df611f61565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061191757611917611f4b565b6001900381819060005260206000200160009055905550505050565b600061193e83610b80565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461198390611eb5565b90600052602060002090601f0160209004810192826119a557600085556119eb565b82601f106119be57805160ff19168380011785556119eb565b828001600101855582156119eb579182015b828111156119eb5782518255916020019190600101906119d0565b506119f79291506119fb565b5090565b5b808211156119f757600081556001016119fc565b600067ffffffffffffffff80841115611a2b57611a2b611f77565b604051601f8501601f19908116603f01168101908282118183101715611a5357611a53611f77565b81604052809350858152868686011115611a6c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a9d57600080fd5b919050565b80358015158114611a9d57600080fd5b600060208284031215611ac457600080fd5b610e8982611a86565b60008060408385031215611ae057600080fd5b611ae983611a86565b9150611af760208401611a86565b90509250929050565b600080600060608486031215611b1557600080fd5b611b1e84611a86565b9250611b2c60208501611a86565b9150604084013590509250925092565b60008060008060808587031215611b5257600080fd5b611b5b85611a86565b9350611b6960208601611a86565b925060408501359150606085013567ffffffffffffffff811115611b8c57600080fd5b8501601f81018713611b9d57600080fd5b611bac87823560208401611a10565b91505092959194509250565b60008060408385031215611bcb57600080fd5b611bd483611a86565b9150611af760208401611aa2565b60008060408385031215611bf557600080fd5b611bfe83611a86565b946020939093013593505050565b600060208284031215611c1e57600080fd5b610e8982611aa2565b600060208284031215611c3957600080fd5b8135610e8981611f8d565b600060208284031215611c5657600080fd5b8151610e8981611f8d565b600060208284031215611c7357600080fd5b813567ffffffffffffffff811115611c8a57600080fd5b8201601f81018413611c9b57600080fd5b6110e784823560208401611a10565b600060208284031215611cbc57600080fd5b5035919050565b60008151808452611cdb816020860160208601611e89565b601f01601f19169290920160200192915050565b60008351611d01818460208801611e89565b835190830190611d15818360208801611e89565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5190830184611cc3565b9695505050505050565b602081526000610e896020830184611cc3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e5957611e59611f1f565b500190565b600082611e6d57611e6d611f35565b500490565b600082821015611e8457611e84611f1f565b500390565b60005b83811015611ea4578181015183820152602001611e8c565b83811115610d725750506000910152565b600181811c90821680611ec957607f821691505b60208210811415611eea57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0457611f04611f1f565b5060010190565b600082611f1a57611f1a611f35565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7d57600080fdfea2646970667358221220d79912d59826371acfc56e2a23405fa61b7cb1e93ffababec545b82b27f023a464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c5146104a7578063eb8d2444146104f0578063f2fde38b1461050a578063ffe630b51461052a57600080fd5b8063b88d4fde14610447578063c4e3709514610467578063c87b56dd1461048757600080fd5b806391b7f5ed116100c657806391b7f5ed146103dc57806395d89b41146103fc578063a035b1fe14610411578063a22cb4651461042757600080fd5b806370a0823114610389578063715018a6146103a95780638da5cb5b146103be57600080fd5b80633ccfd60b1161015957806355f804b31161013357806355f804b3146103215780636352211e146103415780636373a6b1146103615780636a6278421461037657600080fd5b80633ccfd60b146102cc57806342842e0e146102e15780634f6ccce71461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c5780632f745c59146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611c27565b61054a565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661055b565b6040516101e89190611d5b565b34801561021f57600080fd5b5061023361022e366004611caa565b6105ed565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611be2565b610687565b005b34801561027957600080fd5b506008545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611b00565b61079d565b3480156102b857600080fd5b5061027e6102c7366004611be2565b6107ce565b3480156102d857600080fd5b5061026b610864565b3480156102ed57600080fd5b5061026b6102fc366004611b00565b6108c1565b34801561030d57600080fd5b5061027e61031c366004611caa565b6108dc565b34801561032d57600080fd5b5061026b61033c366004611c61565b61096f565b34801561034d57600080fd5b5061023361035c366004611caa565b6109ac565b34801561036d57600080fd5b50610206610a23565b61026b610384366004611ab2565b610ab1565b34801561039557600080fd5b5061027e6103a4366004611ab2565b610b80565b3480156103b557600080fd5b5061026b610c07565b3480156103ca57600080fd5b50600a546001600160a01b0316610233565b3480156103e857600080fd5b5061026b6103f7366004611caa565b610c3d565b34801561040857600080fd5b50610206610c6c565b34801561041d57600080fd5b5061027e600e5481565b34801561043357600080fd5b5061026b610442366004611bb8565b610c7b565b34801561045357600080fd5b5061026b610462366004611b3c565b610d40565b34801561047357600080fd5b5061026b610482366004611c0c565b610d78565b34801561049357600080fd5b506102066104a2366004611caa565b610db5565b3480156104b357600080fd5b506101dc6104c2366004611acd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104fc57600080fd5b50600c546101dc9060ff1681565b34801561051657600080fd5b5061026b610525366004611ab2565b610e90565b34801561053657600080fd5b5061026b610545366004611c61565b610f28565b600061055582610f65565b92915050565b60606000805461056a90611eb5565b80601f016020809104026020016040519081016040528092919081815260200182805461059690611eb5565b80156105e35780601f106105b8576101008083540402835291602001916105e3565b820191906000526020600020905b8154815290600101906020018083116105c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661066b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610692826109ac565b9050806001600160a01b0316836001600160a01b031614156107005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610662565b336001600160a01b038216148061071c575061071c81336104c2565b61078e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610662565b6107988383610f8a565b505050565b6107a73382610ff8565b6107c35760405162461bcd60e51b815260040161066290611df5565b6107988383836110ef565b60006107d983610b80565b821061083b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610662565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461088e5760405162461bcd60e51b815260040161066290611dc0565b6040514790339082156108fc029083906000818181858888f193505050501580156108bd573d6000803e3d6000fd5b5050565b61079883838360405180602001604052806000815250610d40565b60006108e760085490565b821061094a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610662565b6008828154811061095d5761095d611f61565b90600052602060002001549050919050565b600a546001600160a01b031633146109995760405162461bcd60e51b815260040161066290611dc0565b80516108bd90600d906020840190611977565b6000818152600260205260408120546001600160a01b0316806105555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610662565b600b8054610a3090611eb5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5c90611eb5565b8015610aa95780601f10610a7e57610100808354040283529160200191610aa9565b820191906000526020600020905b815481529060010190602001808311610a8c57829003601f168201915b505050505081565b600c5460ff16610b0e5760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656044820152616e7360f01b6064820152608401610662565b34600e541115610b605760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610662565b610b7d81610b6d60085490565b610b78906001611e46565b61129a565b50565b60006001600160a01b038216610beb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610662565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c315760405162461bcd60e51b815260040161066290611dc0565b610c3b60006112b4565b565b600a546001600160a01b03163314610c675760405162461bcd60e51b815260040161066290611dc0565b600e55565b60606001805461056a90611eb5565b6001600160a01b038216331415610cd45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610662565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d4a3383610ff8565b610d665760405162461bcd60e51b815260040161066290611df5565b610d7284848484611306565b50505050565b600a546001600160a01b03163314610da25760405162461bcd60e51b815260040161066290611dc0565b600c805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b0316610e345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610662565b6000610e3e611339565b90506000815111610e5e5760405180602001604052806000815250610e89565b80610e6884611348565b604051602001610e79929190611cef565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610eba5760405162461bcd60e51b815260040161066290611dc0565b6001600160a01b038116610f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610662565b610b7d816112b4565b600a546001600160a01b03163314610f525760405162461bcd60e51b815260040161066290611dc0565b80516108bd90600b906020840190611977565b60006001600160e01b0319821663780e9d6360e01b1480610555575061055582611446565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fbf826109ac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610662565b600061107c836109ac565b9050806001600160a01b0316846001600160a01b031614806110b75750836001600160a01b03166110ac846105ed565b6001600160a01b0316145b806110e757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611102826109ac565b6001600160a01b03161461116a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610662565b6001600160a01b0382166111cc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610662565b6111d7838383611496565b6111e2600082610f8a565b6001600160a01b038316600090815260036020526040812080546001929061120b908490611e72565b90915550506001600160a01b0382166000908152600360205260408120805460019290611239908490611e46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108bd8282604051806020016040528060008152506114a1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113118484846110ef565b61131d848484846114d4565b610d725760405162461bcd60e51b815260040161066290611d6e565b6060600d805461056a90611eb5565b60608161136c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611396578061138081611ef0565b915061138f9050600a83611e5e565b9150611370565b60008167ffffffffffffffff8111156113b1576113b1611f77565b6040519080825280601f01601f1916602001820160405280156113db576020820181803683370190505b5090505b84156110e7576113f0600183611e72565b91506113fd600a86611f0b565b611408906030611e46565b60f81b81838151811061141d5761141d611f61565b60200101906001600160f81b031916908160001a90535061143f600a86611e5e565b94506113df565b60006001600160e01b031982166380ac58cd60e01b148061147757506001600160e01b03198216635b5e139f60e01b145b8061055557506301ffc9a760e01b6001600160e01b0319831614610555565b6107988383836115e1565b6114ab8383611699565b6114b860008484846114d4565b6107985760405162461bcd60e51b815260040161066290611d6e565b60006001600160a01b0384163b156115d657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611518903390899088908890600401611d1e565b602060405180830381600087803b15801561153257600080fd5b505af1925050508015611562575060408051601f3d908101601f1916820190925261155f91810190611c44565b60015b6115bc573d808015611590576040519150601f19603f3d011682016040523d82523d6000602084013e611595565b606091505b5080516115b45760405162461bcd60e51b815260040161066290611d6e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110e7565b506001949350505050565b6001600160a01b03831661163c5761163781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61165f565b816001600160a01b0316836001600160a01b03161461165f5761165f83826117e7565b6001600160a01b0382166116765761079881611884565b826001600160a01b0316826001600160a01b031614610798576107988282611933565b6001600160a01b0382166116ef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610662565b6000818152600260205260409020546001600160a01b0316156117545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610662565b61176060008383611496565b6001600160a01b0382166000908152600360205260408120805460019290611789908490611e46565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016117f484610b80565b6117fe9190611e72565b600083815260076020526040902054909150808214611851576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061189690600190611e72565b600083815260096020526040812054600880549394509092849081106118be576118be611f61565b9060005260206000200154905080600883815481106118df576118df611f61565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061191757611917611f4b565b6001900381819060005260206000200160009055905550505050565b600061193e83610b80565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461198390611eb5565b90600052602060002090601f0160209004810192826119a557600085556119eb565b82601f106119be57805160ff19168380011785556119eb565b828001600101855582156119eb579182015b828111156119eb5782518255916020019190600101906119d0565b506119f79291506119fb565b5090565b5b808211156119f757600081556001016119fc565b600067ffffffffffffffff80841115611a2b57611a2b611f77565b604051601f8501601f19908116603f01168101908282118183101715611a5357611a53611f77565b81604052809350858152868686011115611a6c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a9d57600080fd5b919050565b80358015158114611a9d57600080fd5b600060208284031215611ac457600080fd5b610e8982611a86565b60008060408385031215611ae057600080fd5b611ae983611a86565b9150611af760208401611a86565b90509250929050565b600080600060608486031215611b1557600080fd5b611b1e84611a86565b9250611b2c60208501611a86565b9150604084013590509250925092565b60008060008060808587031215611b5257600080fd5b611b5b85611a86565b9350611b6960208601611a86565b925060408501359150606085013567ffffffffffffffff811115611b8c57600080fd5b8501601f81018713611b9d57600080fd5b611bac87823560208401611a10565b91505092959194509250565b60008060408385031215611bcb57600080fd5b611bd483611a86565b9150611af760208401611aa2565b60008060408385031215611bf557600080fd5b611bfe83611a86565b946020939093013593505050565b600060208284031215611c1e57600080fd5b610e8982611aa2565b600060208284031215611c3957600080fd5b8135610e8981611f8d565b600060208284031215611c5657600080fd5b8151610e8981611f8d565b600060208284031215611c7357600080fd5b813567ffffffffffffffff811115611c8a57600080fd5b8201601f81018413611c9b57600080fd5b6110e784823560208401611a10565b600060208284031215611cbc57600080fd5b5035919050565b60008151808452611cdb816020860160208601611e89565b601f01601f19169290920160200192915050565b60008351611d01818460208801611e89565b835190830190611d15818360208801611e89565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5190830184611cc3565b9695505050505050565b602081526000610e896020830184611cc3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611e5957611e59611f1f565b500190565b600082611e6d57611e6d611f35565b500490565b600082821015611e8457611e84611f1f565b500390565b60005b83811015611ea4578181015183820152602001611e8c565b83811115610d725750506000910152565b600181811c90821680611ec957607f821691505b60208210811415611eea57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0457611f04611f1f565b5060010190565b600082611f1a57611f1a611f35565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7d57600080fdfea2646970667358221220d79912d59826371acfc56e2a23405fa61b7cb1e93ffababec545b82b27f023a464736f6c63430008070033

Deployed Bytecode Sourcemap

43316:1598:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43779:179;;;;;;;;;;-1:-1:-1;43779:179:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;43779:179:0;;;;;;;;21715:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23274:221::-;;;;;;;;;;-1:-1:-1;23274:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;23274:221:0;5037:203:1;22797:411:0;;;;;;;;;;-1:-1:-1;22797:411:0;;;;;:::i;:::-;;:::i;:::-;;37738:113;;;;;;;;;;-1:-1:-1;37826:10:0;:17;37738:113;;;14270:25:1;;;14258:2;14243:18;37738:113:0;14124:177:1;24164:339:0;;;;;;;;;;-1:-1:-1;24164:339:0;;;;;:::i;:::-;;:::i;37406:256::-;;;;;;;;;;-1:-1:-1;37406:256:0;;;;;:::i;:::-;;:::i;44771:140::-;;;;;;;;;;;;;:::i;24574:185::-;;;;;;;;;;-1:-1:-1;24574:185:0;;;;;:::i;:::-;;:::i;37928:233::-;;;;;;;;;;-1:-1:-1;37928:233:0;;;;;:::i;:::-;;:::i;43966:111::-;;;;;;;;;;-1:-1:-1;43966:111:0;;;;;:::i;:::-;;:::i;21409:239::-;;;;;;;;;;-1:-1:-1;21409:239:0;;;;;:::i;:::-;;:::i;43381:24::-;;;;;;;;;;;;;:::i;44530:233::-;;;;;;:::i;:::-;;:::i;21139:208::-;;;;;;;;;;-1:-1:-1;21139:208:0;;;;;:::i;:::-;;:::i;34544:94::-;;;;;;;;;;;;;:::i;33893:87::-;;;;;;;;;;-1:-1:-1;33966:6:0;;-1:-1:-1;;;;;33966:6:0;33893:87;;44210:92;;;;;;;;;;-1:-1:-1;44210:92:0;;;;;:::i;:::-;;:::i;21884:104::-;;;;;;;;;;;;;:::i;43489:30::-;;;;;;;;;;;;;;;;23567:295;;;;;;;;;;-1:-1:-1;23567:295:0;;;;;:::i;:::-;;:::i;24830:328::-;;;;;;;;;;-1:-1:-1;24830:328:0;;;;;:::i;:::-;;:::i;44426:96::-;;;;;;;;;;-1:-1:-1;44426:96:0;;;;;:::i;:::-;;:::i;22059:334::-;;;;;;;;;;-1:-1:-1;22059:334:0;;;;;:::i;:::-;;:::i;23933:164::-;;;;;;;;;;-1:-1:-1;23933:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24054:25:0;;;24030:4;24054:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23933:164;43412:32;;;;;;;;;;-1:-1:-1;43412:32:0;;;;;;;;34793:192;;;;;;;;;;-1:-1:-1;34793:192:0;;;;;:::i;:::-;;:::i;44310:108::-;;;;;;;;;;-1:-1:-1;44310:108:0;;;;;:::i;:::-;;:::i;43779:179::-;43890:4;43914:36;43938:11;43914:23;:36::i;:::-;43907:43;43779:179;-1:-1:-1;;43779:179:0:o;21715:100::-;21769:13;21802:5;21795:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21715:100;:::o;23274:221::-;23350:7;26757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26757:16:0;23370:73;;;;-1:-1:-1;;;23370:73:0;;11493:2:1;23370:73:0;;;11475:21:1;11532:2;11512:18;;;11505:30;11571:34;11551:18;;;11544:62;-1:-1:-1;;;11622:18:1;;;11615:42;11674:19;;23370:73:0;;;;;;;;;-1:-1:-1;23463:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23463:24:0;;23274:221::o;22797:411::-;22878:13;22894:23;22909:7;22894:14;:23::i;:::-;22878:39;;22942:5;-1:-1:-1;;;;;22936:11:0;:2;-1:-1:-1;;;;;22936:11:0;;;22928:57;;;;-1:-1:-1;;;22928:57:0;;13093:2:1;22928:57:0;;;13075:21:1;13132:2;13112:18;;;13105:30;13171:34;13151:18;;;13144:62;-1:-1:-1;;;13222:18:1;;;13215:31;13263:19;;22928:57:0;12891:397:1;22928:57:0;16264:10;-1:-1:-1;;;;;23020:21:0;;;;:62;;-1:-1:-1;23045:37:0;23062:5;16264:10;23933:164;:::i;23045:37::-;22998:168;;;;-1:-1:-1;;;22998:168:0;;9886:2:1;22998:168:0;;;9868:21:1;9925:2;9905:18;;;9898:30;9964:34;9944:18;;;9937:62;10035:26;10015:18;;;10008:54;10079:19;;22998:168:0;9684:420:1;22998:168:0;23179:21;23188:2;23192:7;23179:8;:21::i;:::-;22867:341;22797:411;;:::o;24164:339::-;24359:41;16264:10;24392:7;24359:18;:41::i;:::-;24351:103;;;;-1:-1:-1;;;24351:103:0;;;;;;;:::i;:::-;24467:28;24477:4;24483:2;24487:7;24467:9;:28::i;37406:256::-;37503:7;37539:23;37556:5;37539:16;:23::i;:::-;37531:5;:31;37523:87;;;;-1:-1:-1;;;37523:87:0;;6356:2:1;37523:87:0;;;6338:21:1;6395:2;6375:18;;;6368:30;6434:34;6414:18;;;6407:62;-1:-1:-1;;;6485:18:1;;;6478:41;6536:19;;37523:87:0;6154:407:1;37523:87:0;-1:-1:-1;;;;;;37628:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37406:256::o;44771:140::-;33966:6;;-1:-1:-1;;;;;33966:6:0;16264:10;34113:23;34105:68;;;;-1:-1:-1;;;34105:68:0;;;;;;;:::i;:::-;44866:37:::1;::::0;44834:21:::1;::::0;44874:10:::1;::::0;44866:37;::::1;;;::::0;44834:21;;44819:12:::1;44866:37:::0;44819:12;44866:37;44834:21;44874:10;44866:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44808:103;44771:140::o:0;24574:185::-;24712:39;24729:4;24735:2;24739:7;24712:39;;;;;;;;;;;;:16;:39::i;37928:233::-;38003:7;38039:30;37826:10;:17;;37738:113;38039:30;38031:5;:38;38023:95;;;;-1:-1:-1;;;38023:95:0;;13913:2:1;38023:95:0;;;13895:21:1;13952:2;13932:18;;;13925:30;13991:34;13971:18;;;13964:62;-1:-1:-1;;;14042:18:1;;;14035:42;14094:19;;38023:95:0;13711:408:1;38023:95:0;38136:10;38147:5;38136:17;;;;;;;;:::i;:::-;;;;;;;;;38129:24;;37928:233;;;:::o;43966:111::-;33966:6;;-1:-1:-1;;;;;33966:6:0;16264:10;34113:23;34105:68;;;;-1:-1:-1;;;34105:68:0;;;;;;;:::i;:::-;44042:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;21409:239::-:0;21481:7;21517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21517:16:0;21552:19;21544:73;;;;-1:-1:-1;;;21544:73:0;;10722:2:1;21544:73:0;;;10704:21:1;10761:2;10741:18;;;10734:30;10800:34;10780:18;;;10773:62;-1:-1:-1;;;10851:18:1;;;10844:39;10900:19;;21544:73:0;10520:405:1;43381:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44530:233::-;44590:12;;;;44582:59;;;;-1:-1:-1;;;44582:59:0;;9070:2:1;44582:59:0;;;9052:21:1;9109:2;9089:18;;;9082:30;9148:34;9128:18;;;9121:62;-1:-1:-1;;;9199:18:1;;;9192:32;9241:19;;44582:59:0;8868:398:1;44582:59:0;44669:9;44660:5;;:18;;44652:62;;;;-1:-1:-1;;;44652:62:0;;8710:2:1;44652:62:0;;;8692:21:1;8749:2;8729:18;;;8722:30;8788:33;8768:18;;;8761:61;8839:18;;44652:62:0;8508:355:1;44652:62:0;44725:30;44735:2;44739:13;37826:10;:17;;37738:113;44739:13;:15;;44753:1;44739:15;:::i;:::-;44725:9;:30::i;:::-;44530:233;:::o;21139:208::-;21211:7;-1:-1:-1;;;;;21239:19:0;;21231:74;;;;-1:-1:-1;;;21231:74:0;;10311:2:1;21231:74:0;;;10293:21:1;10350:2;10330:18;;;10323:30;10389:34;10369:18;;;10362:62;-1:-1:-1;;;10440:18:1;;;10433:40;10490:19;;21231:74:0;10109:406:1;21231:74:0;-1:-1:-1;;;;;;21323:16:0;;;;;:9;:16;;;;;;;21139:208::o;34544:94::-;33966:6;;-1:-1:-1;;;;;33966:6:0;16264:10;34113:23;34105:68;;;;-1:-1:-1;;;34105:68:0;;;;;;;:::i;:::-;34609:21:::1;34627:1;34609:9;:21::i;:::-;34544:94::o:0;44210:92::-;33966:6;;-1:-1:-1;;;;;33966:6:0;16264:10;34113:23;34105:68;;;;-1:-1:-1;;;34105:68:0;;;;;;;:::i;:::-;44277:5:::1;:17:::0;44210:92::o;21884:104::-;21940:13;21973:7;21966:14;;;;;:::i;23567:295::-;-1:-1:-1;;;;;23670:24:0;;16264:10;23670:24;;23662:62;;;;-1:-1:-1;;;23662:62:0;;8356:2:1;23662:62:0;;;8338:21:1;8395:2;8375:18;;;8368:30;8434:27;8414:18;;;8407:55;8479:18;;23662:62:0;8154:349:1;23662:62:0;16264:10;23737:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23737:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23737:53:0;;;;;;;;;;23806:48;;5878:41:1;;;23737:42:0;;16264:10;23806:48;;5851:18:1;23806:48:0;;;;;;;23567:295;;:::o;24830:328::-;25005:41;16264:10;25038:7;25005:18;:41::i;:::-;24997:103;;;;-1:-1:-1;;;24997:103:0;;;;;;;:::i;:::-;25111:39;25125:4;25131:2;25135:7;25144:5;25111:13;:39::i;:::-;24830:328;;;;:::o;44426:96::-;33966:6;;-1:-1:-1;;;;;33966:6:0;16264:10;34113:23;34105:68;;;;-1:-1:-1;;;34105:68:0;;;;;;;:::i;:::-;44491:12:::1;:23:::0;;-1:-1:-1;;44491:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44426:96::o;22059:334::-;26733:4;26757:16;;;:7;:16;;;;;;22132:13;;-1:-1:-1;;;;;26757:16:0;22158:76;;;;-1:-1:-1;;;22158:76:0;;12677:2:1;22158:76:0;;;12659:21:1;12716:2;12696:18;;;12689:30;12755:34;12735:18;;;12728:62;-1:-1:-1;;;12806:18:1;;;12799:45;12861:19;;22158:76:0;12475:411:1;22158:76:0;22247:21;22271:10;:8;:10::i;:::-;22247:34;;22323:1;22305:7;22299:21;:25;:86;;;;;;;;;;;;;;;;;22351:7;22360:18;:7;:16;:18::i;:::-;22334:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22299:86;22292:93;22059:334;-1:-1:-1;;;22059:334:0:o;34793:192::-;33966:6;;-1:-1:-1;;;;;33966:6:0;16264:10;34113:23;34105:68;;;;-1:-1:-1;;;34105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34882:22:0;::::1;34874:73;;;::::0;-1:-1:-1;;;34874:73:0;;7187:2:1;34874:73:0::1;::::0;::::1;7169:21:1::0;7226:2;7206:18;;;7199:30;7265:34;7245:18;;;7238:62;-1:-1:-1;;;7316:18:1;;;7309:36;7362:19;;34874:73:0::1;6985:402:1::0;34874:73:0::1;34958:19;34968:8;34958:9;:19::i;44310:108::-:0;33966:6;;-1:-1:-1;;;;;33966:6:0;16264:10;34113:23;34105:68;;;;-1:-1:-1;;;34105:68:0;;;;;;;:::i;:::-;44387:23;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;37098:224::-:0;37200:4;-1:-1:-1;;;;;;37224:50:0;;-1:-1:-1;;;37224:50:0;;:90;;;37278:36;37302:11;37278:23;:36::i;30650:174::-;30725:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30725:29:0;-1:-1:-1;;;;;30725:29:0;;;;;;;;:24;;30779:23;30725:24;30779:14;:23::i;:::-;-1:-1:-1;;;;;30770:46:0;;;;;;;;;;;30650:174;;:::o;26962:348::-;27055:4;26757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26757:16:0;27072:73;;;;-1:-1:-1;;;27072:73:0;;9473:2:1;27072:73:0;;;9455:21:1;9512:2;9492:18;;;9485:30;9551:34;9531:18;;;9524:62;-1:-1:-1;;;9602:18:1;;;9595:42;9654:19;;27072:73:0;9271:408:1;27072:73:0;27156:13;27172:23;27187:7;27172:14;:23::i;:::-;27156:39;;27225:5;-1:-1:-1;;;;;27214:16:0;:7;-1:-1:-1;;;;;27214:16:0;;:51;;;;27258:7;-1:-1:-1;;;;;27234:31:0;:20;27246:7;27234:11;:20::i;:::-;-1:-1:-1;;;;;27234:31:0;;27214:51;:87;;;-1:-1:-1;;;;;;24054:25:0;;;24030:4;24054:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27269:32;27206:96;26962:348;-1:-1:-1;;;;26962:348:0:o;29954:578::-;30113:4;-1:-1:-1;;;;;30086:31:0;:23;30101:7;30086:14;:23::i;:::-;-1:-1:-1;;;;;30086:31:0;;30078:85;;;;-1:-1:-1;;;30078:85:0;;12267:2:1;30078:85:0;;;12249:21:1;12306:2;12286:18;;;12279:30;12345:34;12325:18;;;12318:62;-1:-1:-1;;;12396:18:1;;;12389:39;12445:19;;30078:85:0;12065:405:1;30078:85:0;-1:-1:-1;;;;;30182:16:0;;30174:65;;;;-1:-1:-1;;;30174:65:0;;7951:2:1;30174:65:0;;;7933:21:1;7990:2;7970:18;;;7963:30;8029:34;8009:18;;;8002:62;-1:-1:-1;;;8080:18:1;;;8073:34;8124:19;;30174:65:0;7749:400:1;30174:65:0;30252:39;30273:4;30279:2;30283:7;30252:20;:39::i;:::-;30356:29;30373:1;30377:7;30356:8;:29::i;:::-;-1:-1:-1;;;;;30398:15:0;;;;;;:9;:15;;;;;:20;;30417:1;;30398:15;:20;;30417:1;;30398:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30429:13:0;;;;;;:9;:13;;;;;:18;;30446:1;;30429:13;:18;;30446:1;;30429:18;:::i;:::-;;;;-1:-1:-1;;30458:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30458:21:0;-1:-1:-1;;;;;30458:21:0;;;;;;;;;30497:27;;30458:16;;30497:27;;;;;;;29954:578;;;:::o;27652:110::-;27728:26;27738:2;27742:7;27728:26;;;;;;;;;;;;:9;:26::i;34993:173::-;35068:6;;;-1:-1:-1;;;;;35085:17:0;;;-1:-1:-1;;;;;;35085:17:0;;;;;;;35118:40;;35068:6;;;35085:17;35068:6;;35118:40;;35049:16;;35118:40;35038:128;34993:173;:::o;26040:315::-;26197:28;26207:4;26213:2;26217:7;26197:9;:28::i;:::-;26244:48;26267:4;26273:2;26277:7;26286:5;26244:22;:48::i;:::-;26236:111;;;;-1:-1:-1;;;26236:111:0;;;;;;;:::i;44085:117::-;44145:13;44178:16;44171:23;;;;;:::i;16713:723::-;16769:13;16990:10;16986:53;;-1:-1:-1;;17017:10:0;;;;;;;;;;;;-1:-1:-1;;;17017:10:0;;;;;16713:723::o;16986:53::-;17064:5;17049:12;17105:78;17112:9;;17105:78;;17138:8;;;;:::i;:::-;;-1:-1:-1;17161:10:0;;-1:-1:-1;17169:2:0;17161:10;;:::i;:::-;;;17105:78;;;17193:19;17225:6;17215:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17215:17:0;;17193:39;;17243:154;17250:10;;17243:154;;17277:11;17287:1;17277:11;;:::i;:::-;;-1:-1:-1;17346:10:0;17354:2;17346:5;:10;:::i;:::-;17333:24;;:2;:24;:::i;:::-;17320:39;;17303:6;17310;17303:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17303:56:0;;;;;;;;-1:-1:-1;17374:11:0;17383:2;17374:11;;:::i;:::-;;;17243:154;;20770:305;20872:4;-1:-1:-1;;;;;;20909:40:0;;-1:-1:-1;;;20909:40:0;;:105;;-1:-1:-1;;;;;;;20966:48:0;;-1:-1:-1;;;20966:48:0;20909:105;:158;;;-1:-1:-1;;;;;;;;;;19381:40:0;;;21031:36;19272:157;43590:181;43718:45;43745:4;43751:2;43755:7;43718:26;:45::i;27989:321::-;28119:18;28125:2;28129:7;28119:5;:18::i;:::-;28170:54;28201:1;28205:2;28209:7;28218:5;28170:22;:54::i;:::-;28148:154;;;;-1:-1:-1;;;28148:154:0;;;;;;;:::i;31389:799::-;31544:4;-1:-1:-1;;;;;31565:13:0;;8547:20;8595:8;31561:620;;31601:72;;-1:-1:-1;;;31601:72:0;;-1:-1:-1;;;;;31601:36:0;;;;;:72;;16264:10;;31652:4;;31658:7;;31667:5;;31601:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31601:72:0;;;;;;;;-1:-1:-1;;31601:72:0;;;;;;;;;;;;:::i;:::-;;;31597:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31843:13:0;;31839:272;;31886:60;;-1:-1:-1;;;31886:60:0;;;;;;;:::i;31839:272::-;32061:6;32055:13;32046:6;32042:2;32038:15;32031:38;31597:529;-1:-1:-1;;;;;;31724:51:0;-1:-1:-1;;;31724:51:0;;-1:-1:-1;31717:58:0;;31561:620;-1:-1:-1;32165:4:0;31389:799;;;;;;:::o;38774:589::-;-1:-1:-1;;;;;38980:18:0;;38976:187;;39015:40;39047:7;40190:10;:17;;40163:24;;;;:15;:24;;;;;:44;;;40218:24;;;;;;;;;;;;40086:164;39015:40;38976:187;;;39085:2;-1:-1:-1;;;;;39077:10:0;:4;-1:-1:-1;;;;;39077:10:0;;39073:90;;39104:47;39137:4;39143:7;39104:32;:47::i;:::-;-1:-1:-1;;;;;39177:16:0;;39173:183;;39210:45;39247:7;39210:36;:45::i;39173:183::-;39283:4;-1:-1:-1;;;;;39277:10:0;:2;-1:-1:-1;;;;;39277:10:0;;39273:83;;39304:40;39332:2;39336:7;39304:27;:40::i;28646:382::-;-1:-1:-1;;;;;28726:16:0;;28718:61;;;;-1:-1:-1;;;28718:61:0;;11132:2:1;28718:61:0;;;11114:21:1;;;11151:18;;;11144:30;11210:34;11190:18;;;11183:62;11262:18;;28718:61:0;10930:356:1;28718:61:0;26733:4;26757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26757:16:0;:30;28790:58;;;;-1:-1:-1;;;28790:58:0;;7594:2:1;28790:58:0;;;7576:21:1;7633:2;7613:18;;;7606:30;7672;7652:18;;;7645:58;7720:18;;28790:58:0;7392:352:1;28790:58:0;28861:45;28890:1;28894:2;28898:7;28861:20;:45::i;:::-;-1:-1:-1;;;;;28919:13:0;;;;;;:9;:13;;;;;:18;;28936:1;;28919:13;:18;;28936:1;;28919:18;:::i;:::-;;;;-1:-1:-1;;28948:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28948:21:0;-1:-1:-1;;;;;28948:21:0;;;;;;;;28987:33;;28948:16;;;28987:33;;28948:16;;28987:33;28646:382;;:::o;40877:988::-;41143:22;41193:1;41168:22;41185:4;41168:16;:22::i;:::-;:26;;;;:::i;:::-;41205:18;41226:26;;;:17;:26;;;;;;41143:51;;-1:-1:-1;41359:28:0;;;41355:328;;-1:-1:-1;;;;;41426:18:0;;41404:19;41426:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41477:30;;;;;;:44;;;41594:30;;:17;:30;;;;;:43;;;41355:328;-1:-1:-1;41779:26:0;;;;:17;:26;;;;;;;;41772:33;;;-1:-1:-1;;;;;41823:18:0;;;;;:12;:18;;;;;:34;;;;;;;41816:41;40877:988::o;42160:1079::-;42438:10;:17;42413:22;;42438:21;;42458:1;;42438:21;:::i;:::-;42470:18;42491:24;;;:15;:24;;;;;;42864:10;:26;;42413:46;;-1:-1:-1;42491:24:0;;42413:46;;42864:26;;;;;;:::i;:::-;;;;;;;;;42842:48;;42928:11;42903:10;42914;42903:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43008:28;;;:15;:28;;;;;;;:41;;;43180:24;;;;;43173:31;43215:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42231:1008;;;42160:1079;:::o;39664:221::-;39749:14;39766:20;39783:2;39766:16;:20::i;:::-;-1:-1:-1;;;;;39797:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39842:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39664:221:0: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:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;6566:414::-;6768:2;6750:21;;;6807:2;6787:18;;;6780:30;6846:34;6841:2;6826:18;;6819:62;-1:-1:-1;;;6912:2:1;6897:18;;6890:48;6970:3;6955:19;;6566:414::o;11704:356::-;11906:2;11888:21;;;11925:18;;;11918:30;11984:34;11979:2;11964:18;;11957:62;12051:2;12036:18;;11704:356::o;13293:413::-;13495:2;13477:21;;;13534:2;13514:18;;;13507:30;13573:34;13568:2;13553:18;;13546:62;-1:-1:-1;;;13639:2:1;13624:18;;13617:47;13696:3;13681:19;;13293:413::o;14306:128::-;14346:3;14377:1;14373:6;14370:1;14367:13;14364:39;;;14383:18;;:::i;:::-;-1:-1:-1;14419:9:1;;14306:128::o;14439:120::-;14479:1;14505;14495:35;;14510:18;;:::i;:::-;-1:-1:-1;14544:9:1;;14439:120::o;14564:125::-;14604:4;14632:1;14629;14626:8;14623:34;;;14637:18;;:::i;:::-;-1:-1:-1;14674:9:1;;14564:125::o;14694:258::-;14766:1;14776:113;14790:6;14787:1;14784:13;14776:113;;;14866:11;;;14860:18;14847:11;;;14840:39;14812:2;14805:10;14776:113;;;14907:6;14904:1;14901:13;14898:48;;;-1:-1:-1;;14942:1:1;14924:16;;14917:27;14694:258::o;14957:380::-;15036:1;15032:12;;;;15079;;;15100:61;;15154:4;15146:6;15142:17;15132:27;;15100:61;15207:2;15199:6;15196:14;15176:18;15173:38;15170:161;;;15253:10;15248:3;15244:20;15241:1;15234:31;15288:4;15285:1;15278:15;15316:4;15313:1;15306:15;15170:161;;14957:380;;;:::o;15342:135::-;15381:3;-1:-1:-1;;15402:17:1;;15399:43;;;15422:18;;:::i;:::-;-1:-1:-1;15469:1:1;15458:13;;15342:135::o;15482:112::-;15514:1;15540;15530:35;;15545:18;;:::i;:::-;-1:-1:-1;15579:9:1;;15482:112::o;15599:127::-;15660:10;15655:3;15651:20;15648:1;15641:31;15691:4;15688:1;15681:15;15715:4;15712:1;15705:15;15731:127;15792:10;15787:3;15783:20;15780:1;15773:31;15823:4;15820:1;15813:15;15847:4;15844:1;15837:15;15863:127;15924:10;15919:3;15915:20;15912:1;15905:31;15955:4;15952:1;15945:15;15979:4;15976:1;15969:15;15995:127;16056:10;16051:3;16047:20;16044:1;16037:31;16087:4;16084:1;16077:15;16111:4;16108:1;16101:15;16127:127;16188:10;16183:3;16179:20;16176:1;16169:31;16219:4;16216:1;16209:15;16243:4;16240:1;16233:15;16259:131;-1:-1:-1;;;;;;16333:32:1;;16323:43;;16313:71;;16380:1;16377;16370:12

Swarm Source

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