ETH Price: $2,975.51 (-4.14%)
Gas: 2 Gwei

Token

TrippyMoais (TMoais)
 

Overview

Max Total Supply

3,299 TMoais

Holders

668

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TMoais
0x9ad914299947458113f08946134c610b7520f224
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:
TrippyMoais

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity 0.8.14;


// 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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;
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

// 
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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);
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
/**
 * @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;
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
 * @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);
}

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @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);
}

// 
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
/**
 * @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);

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

// 
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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);
    }
}

// 
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @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;
    }
}

// 
// Creator: Chiru Labs
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

//
contract TrippyMoais is ERC721A, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenIdCounter;

    string baseURI;

    uint256 free = 0 ether;
    uint256 price = 0 ether;
    uint256 public maximumSupply = 3300;
    uint256 public maxFreeMint = 3300;
    uint256 public maxForWallet = 5;

    mapping (address => uint256) mintedByWallet;

    bool public saleState = false;
    
    constructor() ERC721A("TrippyMoais", "TMoais") {
        setBaseURI("ipfs://QmatuMoKDFWQMd82ULG7HymNS8P61FGQQEE9tzTDVDHpvd/");
        tokenIdCounter.increment();
    }

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

    function changeMaxFree(uint256 newMax) external onlyOwner{
        maxFreeMint = newMax;
    }

    function changeMaxWallet(uint256 newMax) external onlyOwner{
        maxForWallet = newMax;
    }

    function getCurrentMintPrice() public view returns (uint256 currentPrice){
    if(totalSupply() < maxFreeMint){
      return free;
    }else{
      return price;
    }
    }

    function mint(uint256 amount) public payable {
        uint256 supply = tokenIdCounter.current();

        require(msg.value >= getCurrentMintPrice() * amount, "Not enough Ether sent");
        require(amount <= 5, "You can mint maximum 5 per tx.");
        require(supply + amount <= maximumSupply, "Exceeds maximum supply");
        require(saleState, "Sale paused");
        require(mintedByWallet[msg.sender] + amount <= maxForWallet,"it exceeds max per wallet");

        mintedByWallet[msg.sender] += amount;

        internalMint(msg.sender, amount);
    }

    function internalMint(address wallet, uint256 amount) internal {

        _safeMint(wallet, amount);

        for (uint256 i = 0; i < amount; i++) {
            tokenIdCounter.increment(); 
        }
    }

    function mintToWallets(address[] memory wallets) external onlyOwner{

        for(uint256 i = 0; i < wallets.length; i++){
            internalMint(wallets[i], 1);
        }

    }



    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }


    function saleSwitch() public onlyOwner {
        saleState = !saleState;
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(payable(msg.sender).send(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":[{"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":"newMax","type":"uint256"}],"name":"changeMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentMintPrice","outputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxForWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"}],"name":"mintToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a819055600b55610ce4600c819055600d556005600e556010805460ff191690553480156200003557600080fd5b50604080518082018252600b81526a5472697070794d6f61697360a81b602080830191825283518085019094526006845265544d6f61697360d01b9084015281519192916200008791600191620001d2565b5080516200009d906002906020840190620001d2565b505050620000ba620000b4620000fb60201b60201c565b620000ff565b620000de604051806060016040528060368152602001620023466036913962000151565b620000f56008620001c960201b620010901760201c565b620002b4565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c5906009906020840190620001d2565b5050565b80546001019055565b828054620001e09062000278565b90600052602060002090601f0160209004810192826200020457600085556200024f565b82601f106200021f57805160ff19168380011785556200024f565b828001600101855582156200024f579182015b828111156200024f57825182559160200191906001019062000232565b506200025d92915062000261565b5090565b5b808211156200025d576000815560010162000262565b600181811c908216806200028d57607f821691505b602082108103620002ae57634e487b7160e01b600052602260045260246000fd5b50919050565b61208280620002c46000396000f3fe6080604052600436106101d85760003560e01c8063603f4d5211610102578063a22cb46511610095578063e437b45011610064578063e437b4501461051d578063e82ded2114610532578063e985e9c514610547578063f2fde38b1461059057600080fd5b8063a22cb465146104a7578063a591252d146104c7578063b88d4fde146104dd578063c87b56dd146104fd57600080fd5b8063853828b6116100d1578063853828b61461044c5780638da5cb5b1461046157806395d89b411461047f578063a0712d681461049457600080fd5b8063603f4d52146103dd5780636352211e146103f757806370a0823114610417578063715018a61461043757600080fd5b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461035d5780634f6ccce71461037d57806355122b011461039d57806355f804b3146103bd57600080fd5b806318160ddd146102e857806323b872dd146102fd5780632f745c591461031d578063421f9c9f1461033d57600080fd5b8063081812fc116101b6578063081812fc14610258578063095ea7b3146102905780630b006d60146102b2578063101cd991146102d257600080fd5b806301ffc9a7146101dd5780630480e58b1461021257806306fdde0314610236575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046119c4565b6105b0565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610228600c5481565b604051908152602001610209565b34801561024257600080fd5b5061024b61061d565b6040516102099190611a40565b34801561026457600080fd5b50610278610273366004611a53565b6106af565b6040516001600160a01b039091168152602001610209565b34801561029c57600080fd5b506102b06102ab366004611a88565b61073f565b005b3480156102be57600080fd5b506102b06102cd366004611a53565b610856565b3480156102de57600080fd5b50610228600e5481565b3480156102f457600080fd5b50600054610228565b34801561030957600080fd5b506102b0610318366004611ab2565b610885565b34801561032957600080fd5b50610228610338366004611a88565b610890565b34801561034957600080fd5b506102b0610358366004611b35565b6109eb565b34801561036957600080fd5b506102b0610378366004611ab2565b610a5b565b34801561038957600080fd5b50610228610398366004611a53565b610a76565b3480156103a957600080fd5b506102b06103b8366004611a53565b610ad8565b3480156103c957600080fd5b506102b06103d8366004611c3a565b610b07565b3480156103e957600080fd5b506010546101fd9060ff1681565b34801561040357600080fd5b50610278610412366004611a53565b610b44565b34801561042357600080fd5b50610228610432366004611c83565b610b56565b34801561044357600080fd5b506102b0610be7565b34801561045857600080fd5b506102b0610c1d565b34801561046d57600080fd5b506007546001600160a01b0316610278565b34801561048b57600080fd5b5061024b610c71565b6102b06104a2366004611a53565b610c80565b3480156104b357600080fd5b506102b06104c2366004611c9e565b610e67565b3480156104d357600080fd5b50610228600d5481565b3480156104e957600080fd5b506102b06104f8366004611cda565b610f2b565b34801561050957600080fd5b5061024b610518366004611a53565b610f64565b34801561052957600080fd5b506102b0610f98565b34801561053e57600080fd5b50610228610fd6565b34801561055357600080fd5b506101fd610562366004611d56565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b506102b06105ab366004611c83565b610ff8565b60006001600160e01b031982166380ac58cd60e01b14806105e157506001600160e01b03198216635b5e139f60e01b145b806105fc57506001600160e01b0319821663780e9d6360e01b145b8061061757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062c90611d89565b80601f016020809104026020016040519081016040528092919081815260200182805461065890611d89565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b60006106bc826000541190565b6107235760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074a82610b44565b9050806001600160a01b0316836001600160a01b0316036107b85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161071a565b336001600160a01b03821614806107d457506107d48133610562565b6108465760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161071a565b610851838383611099565b505050565b6007546001600160a01b031633146108805760405162461bcd60e51b815260040161071a90611dc3565b600e55565b6108518383836110f5565b600061089b83610b56565b82106108f45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161071a565b600080549080805b8381101561098b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094f57805192505b876001600160a01b0316836001600160a01b0316036109825786840361097b5750935061061792505050565b6001909301925b506001016108fc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161071a565b6007546001600160a01b03163314610a155760405162461bcd60e51b815260040161071a90611dc3565b60005b8151811015610a5757610a45828281518110610a3657610a36611df8565b602002602001015160016113da565b80610a4f81611e24565b915050610a18565b5050565b61085183838360405180602001604052806000815250610f2b565b600080548210610ad45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161071a565b5090565b6007546001600160a01b03163314610b025760405162461bcd60e51b815260040161071a90611dc3565b600d55565b6007546001600160a01b03163314610b315760405162461bcd60e51b815260040161071a90611dc3565b8051610a5790600990602084019061191e565b6000610b4f8261140f565b5192915050565b60006001600160a01b038216610bc25760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161071a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c115760405162461bcd60e51b815260040161071a90611dc3565b610c1b60006114e6565b565b6007546001600160a01b03163314610c475760405162461bcd60e51b815260040161071a90611dc3565b6040514790339082156108fc029083906000818181858888f19350505050610c6e57600080fd5b50565b60606002805461062c90611d89565b6000610c8b60085490565b905081610c96610fd6565b610ca09190611e3d565b341015610ce75760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b604482015260640161071a565b6005821115610d385760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206d696e74206d6178696d756d2035207065722074782e0000604482015260640161071a565b600c54610d458383611e5c565b1115610d8c5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161071a565b60105460ff16610dcc5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b604482015260640161071a565b600e54336000908152600f6020526040902054610dea908490611e5c565b1115610e385760405162461bcd60e51b815260206004820152601960248201527f69742065786365656473206d6178207065722077616c6c657400000000000000604482015260640161071a565b336000908152600f602052604081208054849290610e57908490611e5c565b90915550610a57905033836113da565b336001600160a01b03831603610ebf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161071a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f368484846110f5565b610f4284848484611538565b610f5e5760405162461bcd60e51b815260040161071a90611e74565b50505050565b60606009610f718361163a565b604051602001610f82929190611ee3565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610fc25760405162461bcd60e51b815260040161071a90611dc3565b6010805460ff19811660ff90911615179055565b6000600d54610fe460005490565b1015610ff15750600a5490565b50600b5490565b6007546001600160a01b031633146110225760405162461bcd60e51b815260040161071a90611dc3565b6001600160a01b0381166110875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071a565b610c6e816114e6565b80546001019055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111008261140f565b80519091506000906001600160a01b0316336001600160a01b0316148061113757503361112c846106af565b6001600160a01b0316145b80611149575081516111499033610562565b9050806111b35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161071a565b846001600160a01b031682600001516001600160a01b0316146112275760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161071a565b6001600160a01b03841661128b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071a565b61129b6000848460000151611099565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661139057611343816000541190565b15611390578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6113e4828261173b565b60005b81811015610851576113fd600880546001019055565b8061140781611e24565b9150506113e7565b604080518082019091526000808252602082015261142e826000541190565b61148d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161071a565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114dc579392505050565b506000190161148f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561162e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061157c903390899088908890600401611f9d565b6020604051808303816000875af19250505080156115b7575060408051601f3d908101601f191682019092526115b491810190611fda565b60015b611614573d8080156115e5576040519150601f19603f3d011682016040523d82523d6000602084013e6115ea565b606091505b50805160000361160c5760405162461bcd60e51b815260040161071a90611e74565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611632565b5060015b949350505050565b6060816000036116615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561168b578061167581611e24565b91506116849050600a8361200d565b9150611665565b60008167ffffffffffffffff8111156116a6576116a6611aee565b6040519080825280601f01601f1916602001820160405280156116d0576020820181803683370190505b5090505b8415611632576116e5600183612021565b91506116f2600a86612038565b6116fd906030611e5c565b60f81b81838151811061171257611712611df8565b60200101906001600160f81b031916908160001a905350611734600a8661200d565b94506116d4565b610a5782826040518060200160405280600081525061085183838360016000546001600160a01b0385166117bb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161071a565b8360000361181c5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161071a565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119155760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611909576118ed6000888488611538565b6119095760405162461bcd60e51b815260040161071a90611e74565b6001918201910161189a565b506000556113d3565b82805461192a90611d89565b90600052602060002090601f01602090048101928261194c5760008555611992565b82601f1061196557805160ff1916838001178555611992565b82800160010185558215611992579182015b82811115611992578251825591602001919060010190611977565b50610ad49291505b80821115610ad4576000815560010161199a565b6001600160e01b031981168114610c6e57600080fd5b6000602082840312156119d657600080fd5b81356119e1816119ae565b9392505050565b60005b83811015611a035781810151838201526020016119eb565b83811115610f5e5750506000910152565b60008151808452611a2c8160208601602086016119e8565b601f01601f19169290920160200192915050565b6020815260006119e16020830184611a14565b600060208284031215611a6557600080fd5b5035919050565b80356001600160a01b0381168114611a8357600080fd5b919050565b60008060408385031215611a9b57600080fd5b611aa483611a6c565b946020939093013593505050565b600080600060608486031215611ac757600080fd5b611ad084611a6c565b9250611ade60208501611a6c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611b2d57611b2d611aee565b604052919050565b60006020808385031215611b4857600080fd5b823567ffffffffffffffff80821115611b6057600080fd5b818501915085601f830112611b7457600080fd5b813581811115611b8657611b86611aee565b8060051b9150611b97848301611b04565b8181529183018401918481019088841115611bb157600080fd5b938501935b83851015611bd657611bc785611a6c565b82529385019390850190611bb6565b98975050505050505050565b600067ffffffffffffffff831115611bfc57611bfc611aee565b611c0f601f8401601f1916602001611b04565b9050828152838383011115611c2357600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c4c57600080fd5b813567ffffffffffffffff811115611c6357600080fd5b8201601f81018413611c7457600080fd5b61163284823560208401611be2565b600060208284031215611c9557600080fd5b6119e182611a6c565b60008060408385031215611cb157600080fd5b611cba83611a6c565b915060208301358015158114611ccf57600080fd5b809150509250929050565b60008060008060808587031215611cf057600080fd5b611cf985611a6c565b9350611d0760208601611a6c565b925060408501359150606085013567ffffffffffffffff811115611d2a57600080fd5b8501601f81018713611d3b57600080fd5b611d4a87823560208401611be2565b91505092959194509250565b60008060408385031215611d6957600080fd5b611d7283611a6c565b9150611d8060208401611a6c565b90509250929050565b600181811c90821680611d9d57607f821691505b602082108103611dbd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611e3657611e36611e0e565b5060010190565b6000816000190483118215151615611e5757611e57611e0e565b500290565b60008219821115611e6f57611e6f611e0e565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151611ed98185602086016119e8565b9290920192915050565b600080845481600182811c915080831680611eff57607f831692505b60208084108203611f1e57634e487b7160e01b86526022600452602486fd5b818015611f325760018114611f4357611f70565b60ff19861689528489019650611f70565b60008b81526020902060005b86811015611f685781548b820152908501908301611f4f565b505084890196505b505050505050611f94611f838286611ec7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd090830184611a14565b9695505050505050565b600060208284031215611fec57600080fd5b81516119e1816119ae565b634e487b7160e01b600052601260045260246000fd5b60008261201c5761201c611ff7565b500490565b60008282101561203357612033611e0e565b500390565b60008261204757612047611ff7565b50069056fea26469706673582212208af602e3d83fb96343e8e3e1af51e2d52811989408c6e596aa87b0f68e9e46f764736f6c634300080e0033697066733a2f2f516d6174754d6f4b444657514d643832554c473748796d4e533850363146475151454539747a54445644487076642f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063603f4d5211610102578063a22cb46511610095578063e437b45011610064578063e437b4501461051d578063e82ded2114610532578063e985e9c514610547578063f2fde38b1461059057600080fd5b8063a22cb465146104a7578063a591252d146104c7578063b88d4fde146104dd578063c87b56dd146104fd57600080fd5b8063853828b6116100d1578063853828b61461044c5780638da5cb5b1461046157806395d89b411461047f578063a0712d681461049457600080fd5b8063603f4d52146103dd5780636352211e146103f757806370a0823114610417578063715018a61461043757600080fd5b806318160ddd1161017a57806342842e0e1161014957806342842e0e1461035d5780634f6ccce71461037d57806355122b011461039d57806355f804b3146103bd57600080fd5b806318160ddd146102e857806323b872dd146102fd5780632f745c591461031d578063421f9c9f1461033d57600080fd5b8063081812fc116101b6578063081812fc14610258578063095ea7b3146102905780630b006d60146102b2578063101cd991146102d257600080fd5b806301ffc9a7146101dd5780630480e58b1461021257806306fdde0314610236575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046119c4565b6105b0565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610228600c5481565b604051908152602001610209565b34801561024257600080fd5b5061024b61061d565b6040516102099190611a40565b34801561026457600080fd5b50610278610273366004611a53565b6106af565b6040516001600160a01b039091168152602001610209565b34801561029c57600080fd5b506102b06102ab366004611a88565b61073f565b005b3480156102be57600080fd5b506102b06102cd366004611a53565b610856565b3480156102de57600080fd5b50610228600e5481565b3480156102f457600080fd5b50600054610228565b34801561030957600080fd5b506102b0610318366004611ab2565b610885565b34801561032957600080fd5b50610228610338366004611a88565b610890565b34801561034957600080fd5b506102b0610358366004611b35565b6109eb565b34801561036957600080fd5b506102b0610378366004611ab2565b610a5b565b34801561038957600080fd5b50610228610398366004611a53565b610a76565b3480156103a957600080fd5b506102b06103b8366004611a53565b610ad8565b3480156103c957600080fd5b506102b06103d8366004611c3a565b610b07565b3480156103e957600080fd5b506010546101fd9060ff1681565b34801561040357600080fd5b50610278610412366004611a53565b610b44565b34801561042357600080fd5b50610228610432366004611c83565b610b56565b34801561044357600080fd5b506102b0610be7565b34801561045857600080fd5b506102b0610c1d565b34801561046d57600080fd5b506007546001600160a01b0316610278565b34801561048b57600080fd5b5061024b610c71565b6102b06104a2366004611a53565b610c80565b3480156104b357600080fd5b506102b06104c2366004611c9e565b610e67565b3480156104d357600080fd5b50610228600d5481565b3480156104e957600080fd5b506102b06104f8366004611cda565b610f2b565b34801561050957600080fd5b5061024b610518366004611a53565b610f64565b34801561052957600080fd5b506102b0610f98565b34801561053e57600080fd5b50610228610fd6565b34801561055357600080fd5b506101fd610562366004611d56565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059c57600080fd5b506102b06105ab366004611c83565b610ff8565b60006001600160e01b031982166380ac58cd60e01b14806105e157506001600160e01b03198216635b5e139f60e01b145b806105fc57506001600160e01b0319821663780e9d6360e01b145b8061061757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461062c90611d89565b80601f016020809104026020016040519081016040528092919081815260200182805461065890611d89565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b60006106bc826000541190565b6107235760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061074a82610b44565b9050806001600160a01b0316836001600160a01b0316036107b85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161071a565b336001600160a01b03821614806107d457506107d48133610562565b6108465760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161071a565b610851838383611099565b505050565b6007546001600160a01b031633146108805760405162461bcd60e51b815260040161071a90611dc3565b600e55565b6108518383836110f5565b600061089b83610b56565b82106108f45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161071a565b600080549080805b8381101561098b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094f57805192505b876001600160a01b0316836001600160a01b0316036109825786840361097b5750935061061792505050565b6001909301925b506001016108fc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161071a565b6007546001600160a01b03163314610a155760405162461bcd60e51b815260040161071a90611dc3565b60005b8151811015610a5757610a45828281518110610a3657610a36611df8565b602002602001015160016113da565b80610a4f81611e24565b915050610a18565b5050565b61085183838360405180602001604052806000815250610f2b565b600080548210610ad45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161071a565b5090565b6007546001600160a01b03163314610b025760405162461bcd60e51b815260040161071a90611dc3565b600d55565b6007546001600160a01b03163314610b315760405162461bcd60e51b815260040161071a90611dc3565b8051610a5790600990602084019061191e565b6000610b4f8261140f565b5192915050565b60006001600160a01b038216610bc25760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161071a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c115760405162461bcd60e51b815260040161071a90611dc3565b610c1b60006114e6565b565b6007546001600160a01b03163314610c475760405162461bcd60e51b815260040161071a90611dc3565b6040514790339082156108fc029083906000818181858888f19350505050610c6e57600080fd5b50565b60606002805461062c90611d89565b6000610c8b60085490565b905081610c96610fd6565b610ca09190611e3d565b341015610ce75760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b604482015260640161071a565b6005821115610d385760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206d696e74206d6178696d756d2035207065722074782e0000604482015260640161071a565b600c54610d458383611e5c565b1115610d8c5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161071a565b60105460ff16610dcc5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b604482015260640161071a565b600e54336000908152600f6020526040902054610dea908490611e5c565b1115610e385760405162461bcd60e51b815260206004820152601960248201527f69742065786365656473206d6178207065722077616c6c657400000000000000604482015260640161071a565b336000908152600f602052604081208054849290610e57908490611e5c565b90915550610a57905033836113da565b336001600160a01b03831603610ebf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161071a565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f368484846110f5565b610f4284848484611538565b610f5e5760405162461bcd60e51b815260040161071a90611e74565b50505050565b60606009610f718361163a565b604051602001610f82929190611ee3565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610fc25760405162461bcd60e51b815260040161071a90611dc3565b6010805460ff19811660ff90911615179055565b6000600d54610fe460005490565b1015610ff15750600a5490565b50600b5490565b6007546001600160a01b031633146110225760405162461bcd60e51b815260040161071a90611dc3565b6001600160a01b0381166110875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161071a565b610c6e816114e6565b80546001019055565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111008261140f565b80519091506000906001600160a01b0316336001600160a01b0316148061113757503361112c846106af565b6001600160a01b0316145b80611149575081516111499033610562565b9050806111b35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161071a565b846001600160a01b031682600001516001600160a01b0316146112275760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161071a565b6001600160a01b03841661128b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161071a565b61129b6000848460000151611099565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661139057611343816000541190565b15611390578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6113e4828261173b565b60005b81811015610851576113fd600880546001019055565b8061140781611e24565b9150506113e7565b604080518082019091526000808252602082015261142e826000541190565b61148d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161071a565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114dc579392505050565b506000190161148f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561162e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061157c903390899088908890600401611f9d565b6020604051808303816000875af19250505080156115b7575060408051601f3d908101601f191682019092526115b491810190611fda565b60015b611614573d8080156115e5576040519150601f19603f3d011682016040523d82523d6000602084013e6115ea565b606091505b50805160000361160c5760405162461bcd60e51b815260040161071a90611e74565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611632565b5060015b949350505050565b6060816000036116615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561168b578061167581611e24565b91506116849050600a8361200d565b9150611665565b60008167ffffffffffffffff8111156116a6576116a6611aee565b6040519080825280601f01601f1916602001820160405280156116d0576020820181803683370190505b5090505b8415611632576116e5600183612021565b91506116f2600a86612038565b6116fd906030611e5c565b60f81b81838151811061171257611712611df8565b60200101906001600160f81b031916908160001a905350611734600a8661200d565b94506116d4565b610a5782826040518060200160405280600081525061085183838360016000546001600160a01b0385166117bb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161071a565b8360000361181c5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161071a565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119155760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611909576118ed6000888488611538565b6119095760405162461bcd60e51b815260040161071a90611e74565b6001918201910161189a565b506000556113d3565b82805461192a90611d89565b90600052602060002090601f01602090048101928261194c5760008555611992565b82601f1061196557805160ff1916838001178555611992565b82800160010185558215611992579182015b82811115611992578251825591602001919060010190611977565b50610ad49291505b80821115610ad4576000815560010161199a565b6001600160e01b031981168114610c6e57600080fd5b6000602082840312156119d657600080fd5b81356119e1816119ae565b9392505050565b60005b83811015611a035781810151838201526020016119eb565b83811115610f5e5750506000910152565b60008151808452611a2c8160208601602086016119e8565b601f01601f19169290920160200192915050565b6020815260006119e16020830184611a14565b600060208284031215611a6557600080fd5b5035919050565b80356001600160a01b0381168114611a8357600080fd5b919050565b60008060408385031215611a9b57600080fd5b611aa483611a6c565b946020939093013593505050565b600080600060608486031215611ac757600080fd5b611ad084611a6c565b9250611ade60208501611a6c565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611b2d57611b2d611aee565b604052919050565b60006020808385031215611b4857600080fd5b823567ffffffffffffffff80821115611b6057600080fd5b818501915085601f830112611b7457600080fd5b813581811115611b8657611b86611aee565b8060051b9150611b97848301611b04565b8181529183018401918481019088841115611bb157600080fd5b938501935b83851015611bd657611bc785611a6c565b82529385019390850190611bb6565b98975050505050505050565b600067ffffffffffffffff831115611bfc57611bfc611aee565b611c0f601f8401601f1916602001611b04565b9050828152838383011115611c2357600080fd5b828260208301376000602084830101529392505050565b600060208284031215611c4c57600080fd5b813567ffffffffffffffff811115611c6357600080fd5b8201601f81018413611c7457600080fd5b61163284823560208401611be2565b600060208284031215611c9557600080fd5b6119e182611a6c565b60008060408385031215611cb157600080fd5b611cba83611a6c565b915060208301358015158114611ccf57600080fd5b809150509250929050565b60008060008060808587031215611cf057600080fd5b611cf985611a6c565b9350611d0760208601611a6c565b925060408501359150606085013567ffffffffffffffff811115611d2a57600080fd5b8501601f81018713611d3b57600080fd5b611d4a87823560208401611be2565b91505092959194509250565b60008060408385031215611d6957600080fd5b611d7283611a6c565b9150611d8060208401611a6c565b90509250929050565b600181811c90821680611d9d57607f821691505b602082108103611dbd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611e3657611e36611e0e565b5060010190565b6000816000190483118215151615611e5757611e57611e0e565b500290565b60008219821115611e6f57611e6f611e0e565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008151611ed98185602086016119e8565b9290920192915050565b600080845481600182811c915080831680611eff57607f831692505b60208084108203611f1e57634e487b7160e01b86526022600452602486fd5b818015611f325760018114611f4357611f70565b60ff19861689528489019650611f70565b60008b81526020902060005b86811015611f685781548b820152908501908301611f4f565b505084890196505b505050505050611f94611f838286611ec7565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd090830184611a14565b9695505050505050565b600060208284031215611fec57600080fd5b81516119e1816119ae565b634e487b7160e01b600052601260045260246000fd5b60008261201c5761201c611ff7565b500490565b60008282101561203357612033611e0e565b500390565b60008261204757612047611ff7565b50069056fea26469706673582212208af602e3d83fb96343e8e3e1af51e2d52811989408c6e596aa87b0f68e9e46f764736f6c634300080e0033

Deployed Bytecode Sourcemap

40924:2746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27796:372;;;;;;;;;;-1:-1:-1;27796:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27796:372:0;;;;;;;;41178:35;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;41178:35:0;592:177:1;29682:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31244:214::-;;;;;;;;;;-1:-1:-1;31244:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;31244:214:0;1732:203:1;30765:413:0;;;;;;;;;;-1:-1:-1;30765:413:0;;;;;:::i;:::-;;:::i;:::-;;41785:99;;;;;;;;;;-1:-1:-1;41785:99:0;;;;;:::i;:::-;;:::i;41260:31::-;;;;;;;;;;;;;;;;26053:100;;;;;;;;;;-1:-1:-1;26106:7:0;26133:12;26053:100;;32120:162;;;;;;;;;;-1:-1:-1;32120:162:0;;;;;:::i;:::-;;:::i;26717:1007::-;;;;;;;;;;-1:-1:-1;26717:1007:0;;;;;:::i;:::-;;:::i;42882:186::-;;;;;;;;;;-1:-1:-1;42882:186:0;;;;;:::i;:::-;;:::i;32353:177::-;;;;;;;;;;-1:-1:-1;32353:177:0;;;;;:::i;:::-;;:::i;26230:187::-;;;;;;;;;;-1:-1:-1;26230:187:0;;;;;:::i;:::-;;:::i;41681:96::-;;;;;;;;;;-1:-1:-1;41681:96:0;;;;;:::i;:::-;;:::i;43314:104::-;;;;;;;;;;-1:-1:-1;43314:104:0;;;;;:::i;:::-;;:::i;41352:29::-;;;;;;;;;;-1:-1:-1;41352:29:0;;;;;;;;29491:124;;;;;;;;;;-1:-1:-1;29491:124:0;;;;;:::i;:::-;;:::i;28232:221::-;;;;;;;;;;-1:-1:-1;28232:221:0;;;;;:::i;:::-;;:::i;2507:103::-;;;;;;;;;;;;;:::i;43516:151::-;;;;;;;;;;;;;:::i;1856:87::-;;;;;;;;;;-1:-1:-1;1929:6:0;;-1:-1:-1;;;;;1929:6:0;1856:87;;29851:104;;;;;;;;;;;;;:::i;42079:575::-;;;;;;:::i;:::-;;:::i;31530:288::-;;;;;;;;;;-1:-1:-1;31530:288:0;;;;;:::i;:::-;;:::i;41220:33::-;;;;;;;;;;;;;;;;32601:355;;;;;;;;;;-1:-1:-1;32601:355:0;;;;;:::i;:::-;;:::i;43080:226::-;;;;;;;;;;-1:-1:-1;43080:226:0;;;;;:::i;:::-;;:::i;43428:80::-;;;;;;;;;;;;;:::i;41892:179::-;;;;;;;;;;;;;:::i;31889:164::-;;;;;;;;;;-1:-1:-1;31889:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32010:25:0;;;31986:4;32010:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31889:164;2765:201;;;;;;;;;;-1:-1:-1;2765:201:0;;;;;:::i;:::-;;:::i;27796:372::-;27898:4;-1:-1:-1;;;;;;27935:40:0;;-1:-1:-1;;;27935:40:0;;:105;;-1:-1:-1;;;;;;;27992:48:0;;-1:-1:-1;;;27992:48:0;27935:105;:172;;;-1:-1:-1;;;;;;;28057:50:0;;-1:-1:-1;;;28057:50:0;27935:172;:225;;;-1:-1:-1;;;;;;;;;;24261:40:0;;;28124:36;27915:245;27796:372;-1:-1:-1;;27796:372:0:o;29682:100::-;29736:13;29769:5;29762:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29682:100;:::o;31244:214::-;31312:7;31340:16;31348:7;33268:4;33302:12;-1:-1:-1;33292:22:0;33211:111;31340:16;31332:74;;;;-1:-1:-1;;;31332:74:0;;7014:2:1;31332:74:0;;;6996:21:1;7053:2;7033:18;;;7026:30;7092:34;7072:18;;;7065:62;-1:-1:-1;;;7143:18:1;;;7136:43;7196:19;;31332:74:0;;;;;;;;;-1:-1:-1;31426:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31426:24:0;;31244:214::o;30765:413::-;30838:13;30854:24;30870:7;30854:15;:24::i;:::-;30838:40;;30903:5;-1:-1:-1;;;;;30897:11:0;:2;-1:-1:-1;;;;;30897:11:0;;30889:58;;;;-1:-1:-1;;;30889:58:0;;7428:2:1;30889:58:0;;;7410:21:1;7467:2;7447:18;;;7440:30;7506:34;7486:18;;;7479:62;-1:-1:-1;;;7557:18:1;;;7550:32;7599:19;;30889:58:0;7226:398:1;30889:58:0;743:10;-1:-1:-1;;;;;30982:21:0;;;;:62;;-1:-1:-1;31007:37:0;31024:5;743:10;31889:164;:::i;31007:37::-;30960:169;;;;-1:-1:-1;;;30960:169:0;;7831:2:1;30960:169:0;;;7813:21:1;7870:2;7850:18;;;7843:30;7909:34;7889:18;;;7882:62;7980:27;7960:18;;;7953:55;8025:19;;30960:169:0;7629:421:1;30960:169:0;31142:28;31151:2;31155:7;31164:5;31142:8;:28::i;:::-;30827:351;30765:413;;:::o;41785:99::-;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;41855:12:::1;:21:::0;41785:99::o;32120:162::-;32246:28;32256:4;32262:2;32266:7;32246:9;:28::i;26717:1007::-;26806:7;26842:16;26852:5;26842:9;:16::i;:::-;26834:5;:24;26826:71;;;;-1:-1:-1;;;26826:71:0;;8618:2:1;26826:71:0;;;8600:21:1;8657:2;8637:18;;;8630:30;8696:34;8676:18;;;8669:62;-1:-1:-1;;;8747:18:1;;;8740:32;8789:19;;26826:71:0;8416:398:1;26826:71:0;26908:22;26133:12;;;26908:22;;27171:466;27191:14;27187:1;:18;27171:466;;;27231:31;27265:14;;;:11;:14;;;;;;;;;27231:48;;;;;;;;;-1:-1:-1;;;;;27231:48:0;;;;;-1:-1:-1;;;27231:48:0;;;;;;;;;;;;27302:28;27298:111;;27375:14;;;-1:-1:-1;27298:111:0;27452:5;-1:-1:-1;;;;;27431:26:0;:17;-1:-1:-1;;;;;27431:26:0;;27427:195;;27501:5;27486:11;:20;27482:85;;-1:-1:-1;27542:1:0;-1:-1:-1;27535:8:0;;-1:-1:-1;;;27535:8:0;27482:85;27589:13;;;;;27427:195;-1:-1:-1;27207:3:0;;27171:466;;;-1:-1:-1;27660:56:0;;-1:-1:-1;;;27660:56:0;;9021:2:1;27660:56:0;;;9003:21:1;9060:2;9040:18;;;9033:30;9099:34;9079:18;;;9072:62;-1:-1:-1;;;9150:18:1;;;9143:44;9204:19;;27660:56:0;8819:410:1;42882:186:0;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;42966:9:::1;42962:97;42985:7;:14;42981:1;:18;42962:97;;;43020:27;43033:7;43041:1;43033:10;;;;;;;;:::i;:::-;;;;;;;43045:1;43020:12;:27::i;:::-;43001:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42962:97;;;;42882:186:::0;:::o;32353:177::-;32483:39;32500:4;32506:2;32510:7;32483:39;;;;;;;;;;;;:16;:39::i;26230:187::-;26297:7;26133:12;;26325:5;:21;26317:69;;;;-1:-1:-1;;;26317:69:0;;9840:2:1;26317:69:0;;;9822:21:1;9879:2;9859:18;;;9852:30;9918:34;9898:18;;;9891:62;-1:-1:-1;;;9969:18:1;;;9962:33;10012:19;;26317:69:0;9638:399:1;26317:69:0;-1:-1:-1;26404:5:0;26230:187::o;41681:96::-;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;41749:11:::1;:20:::0;41681:96::o;43314:104::-;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;43389:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;29491:124::-:0;29555:7;29582:20;29594:7;29582:11;:20::i;:::-;:25;;29491:124;-1:-1:-1;;29491:124:0:o;28232:221::-;28296:7;-1:-1:-1;;;;;28324:19:0;;28316:75;;;;-1:-1:-1;;;28316:75:0;;10244:2:1;28316:75:0;;;10226:21:1;10283:2;10263:18;;;10256:30;10322:34;10302:18;;;10295:62;-1:-1:-1;;;10373:18:1;;;10366:41;10424:19;;28316:75:0;10042:407:1;28316:75:0;-1:-1:-1;;;;;;28417:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28417:27:0;;28232:221::o;2507:103::-;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;2572:30:::1;2599:1;2572:18;:30::i;:::-;2507:103::o:0;43516:151::-;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;43625:33:::1;::::0;43585:21:::1;::::0;43633:10:::1;::::0;43625:33;::::1;;;::::0;43585:21;;43567:15:::1;43625:33:::0;43567:15;43625:33;43585:21;43633:10;43625:33;::::1;;;;;;43617:42;;;::::0;::::1;;43556:111;43516:151::o:0;29851:104::-;29907:13;29940:7;29933:14;;;;;:::i;42079:575::-;42135:14;42152:24;:14;4207;;4115:114;42152:24;42135:41;;42234:6;42210:21;:19;:21::i;:::-;:30;;;;:::i;:::-;42197:9;:43;;42189:77;;;;-1:-1:-1;;;42189:77:0;;10829:2:1;42189:77:0;;;10811:21:1;10868:2;10848:18;;;10841:30;-1:-1:-1;;;10887:18:1;;;10880:51;10948:18;;42189:77:0;10627:345:1;42189:77:0;42295:1;42285:6;:11;;42277:54;;;;-1:-1:-1;;;42277:54:0;;11179:2:1;42277:54:0;;;11161:21:1;11218:2;11198:18;;;11191:30;11257:32;11237:18;;;11230:60;11307:18;;42277:54:0;10977:354:1;42277:54:0;42369:13;;42350:15;42359:6;42350;:15;:::i;:::-;:32;;42342:67;;;;-1:-1:-1;;;42342:67:0;;11671:2:1;42342:67:0;;;11653:21:1;11710:2;11690:18;;;11683:30;-1:-1:-1;;;11729:18:1;;;11722:52;11791:18;;42342:67:0;11469:346:1;42342:67:0;42428:9;;;;42420:33;;;;-1:-1:-1;;;42420:33:0;;12022:2:1;42420:33:0;;;12004:21:1;12061:2;12041:18;;;12034:30;-1:-1:-1;;;12080:18:1;;;12073:41;12131:18;;42420:33:0;11820:335:1;42420:33:0;42511:12;;42487:10;42472:26;;;;:14;:26;;;;;;:35;;42501:6;;42472:35;:::i;:::-;:51;;42464:88;;;;-1:-1:-1;;;42464:88:0;;12362:2:1;42464:88:0;;;12344:21:1;12401:2;12381:18;;;12374:30;12440:27;12420:18;;;12413:55;12485:18;;42464:88:0;12160:349:1;42464:88:0;42580:10;42565:26;;;;:14;:26;;;;;:36;;42595:6;;42565:26;:36;;42595:6;;42565:36;:::i;:::-;;;;-1:-1:-1;42614:32:0;;-1:-1:-1;42627:10:0;42639:6;42614:12;:32::i;31530:288::-;743:10;-1:-1:-1;;;;;31625:24:0;;;31617:63;;;;-1:-1:-1;;;31617:63:0;;12716:2:1;31617:63:0;;;12698:21:1;12755:2;12735:18;;;12728:30;12794:28;12774:18;;;12767:56;12840:18;;31617:63:0;12514:350:1;31617:63:0;743:10;31693:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31693:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31693:53:0;;;;;;;;;;31762:48;;540:41:1;;;31693:42:0;;743:10;31762:48;;513:18:1;31762:48:0;;;;;;;31530:288;;:::o;32601:355::-;32760:28;32770:4;32776:2;32780:7;32760:9;:28::i;:::-;32821:48;32844:4;32850:2;32854:7;32863:5;32821:22;:48::i;:::-;32799:149;;;;-1:-1:-1;;;32799:149:0;;;;;;;:::i;:::-;32601:355;;;;:::o;43080:226::-;43198:13;43260:7;43269:18;:7;:16;:18::i;:::-;43243:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43229:69;;43080:226;;;:::o;43428:80::-;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;43491:9:::1;::::0;;-1:-1:-1;;43478:22:0;::::1;43491:9;::::0;;::::1;43490:10;43478:22;::::0;;43428:80::o;41892:179::-;41944:20;41991:11;;41975:13;26106:7;26133:12;;26053:100;41975:13;:27;41972:92;;;-1:-1:-1;42019:4:0;;;41892:179::o;41972:92::-;-1:-1:-1;42051:5:0;;;41892:179::o;2765:201::-;1929:6;;-1:-1:-1;;;;;1929:6:0;743:10;2076:23;2068:68;;;;-1:-1:-1;;;2068:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2854:22:0;::::1;2846:73;;;::::0;-1:-1:-1;;;2846:73:0;;15231:2:1;2846:73:0::1;::::0;::::1;15213:21:1::0;15270:2;15250:18;;;15243:30;15309:34;15289:18;;;15282:62;-1:-1:-1;;;15360:18:1;;;15353:36;15406:19;;2846:73:0::1;15029:402:1::0;2846:73:0::1;2930:28;2949:8;2930:18;:28::i;4237:127::-:0;4326:19;;4344:1;4326:19;;;4237:127::o;38131:196::-;38246:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38246:29:0;-1:-1:-1;;;;;38246:29:0;;;;;;;;;38291:28;;38246:24;;38291:28;;;;;;;38131:196;;;:::o;36011:2002::-;36126:35;36164:20;36176:7;36164:11;:20::i;:::-;36239:18;;36126:58;;-1:-1:-1;36197:22:0;;-1:-1:-1;;;;;36223:34:0;743:10;-1:-1:-1;;;;;36223:34:0;;:87;;;-1:-1:-1;743:10:0;36274:20;36286:7;36274:11;:20::i;:::-;-1:-1:-1;;;;;36274:36:0;;36223:87;:154;;;-1:-1:-1;36344:18:0;;36327:50;;743:10;31889:164;:::i;36327:50::-;36197:181;;36399:17;36391:80;;;;-1:-1:-1;;;36391:80:0;;15638:2:1;36391:80:0;;;15620:21:1;15677:2;15657:18;;;15650:30;15716:34;15696:18;;;15689:62;-1:-1:-1;;;15767:18:1;;;15760:48;15825:19;;36391:80:0;15436:414:1;36391:80:0;36514:4;-1:-1:-1;;;;;36492:26:0;:13;:18;;;-1:-1:-1;;;;;36492:26:0;;36484:77;;;;-1:-1:-1;;;36484:77:0;;16057:2:1;36484:77:0;;;16039:21:1;16096:2;16076:18;;;16069:30;16135:34;16115:18;;;16108:62;-1:-1:-1;;;16186:18:1;;;16179:36;16232:19;;36484:77:0;15855:402:1;36484:77:0;-1:-1:-1;;;;;36580:16:0;;36572:66;;;;-1:-1:-1;;;36572:66:0;;16464:2:1;36572:66:0;;;16446:21:1;16503:2;16483:18;;;16476:30;16542:34;16522:18;;;16515:62;-1:-1:-1;;;16593:18:1;;;16586:35;16638:19;;36572:66:0;16262:401:1;36572:66:0;36759:49;36776:1;36780:7;36789:13;:18;;;36759:8;:49::i;:::-;-1:-1:-1;;;;;37104:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;37104:31:0;;;-1:-1:-1;;;;;37104:31:0;;;-1:-1:-1;;37104:31:0;;;;;;;37150:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37150:29:0;;;;;;;;;;;;;37196:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;37241:61:0;;;;-1:-1:-1;;;37286:15:0;37241:61;;;;;;37576:11;;;37606:24;;;;;:29;37576:11;;37606:29;37602:295;;37674:20;37682:11;33268:4;33302:12;-1:-1:-1;33292:22:0;33211:111;37674:20;37670:212;;;37751:18;;;37719:24;;;:11;:24;;;;;;;;:50;;37834:28;;;;37792:70;;-1:-1:-1;;;37792:70:0;-1:-1:-1;;;;;;37792:70:0;;;-1:-1:-1;;;;;37719:50:0;;;37792:70;;;;;;;37670:212;37079:829;37944:7;37940:2;-1:-1:-1;;;;;37925:27:0;37934:4;-1:-1:-1;;;;;37925:27:0;;;;;;;;;;;37963:42;36115:1898;;36011:2002;;;:::o;42662:212::-;42738:25;42748:6;42756;42738:9;:25::i;:::-;42781:9;42776:91;42800:6;42796:1;:10;42776:91;;;42828:26;:14;4326:19;;4344:1;4326:19;;;4237:127;42828:26;42808:3;;;;:::i;:::-;;;;42776:91;;28892:537;-1:-1:-1;;;;;;;;;;;;;;;;;28995:16:0;29003:7;33268:4;33302:12;-1:-1:-1;33292:22:0;33211:111;28995:16;28987:71;;;;-1:-1:-1;;;28987:71:0;;16870:2:1;28987:71:0;;;16852:21:1;16909:2;16889:18;;;16882:30;16948:34;16928:18;;;16921:62;-1:-1:-1;;;16999:18:1;;;16992:40;17049:19;;28987:71:0;16668:406:1;28987:71:0;29116:7;29096:245;29163:31;29197:17;;;:11;:17;;;;;;;;;29163:51;;;;;;;;;-1:-1:-1;;;;;29163:51:0;;;;;-1:-1:-1;;;29163:51:0;;;;;;;;;;;;29237:28;29233:93;;29297:9;28892:537;-1:-1:-1;;;28892:537:0:o;29233:93::-;-1:-1:-1;;;29136:6:0;29096:245;;3126:191;3219:6;;;-1:-1:-1;;;;;3236:17:0;;;-1:-1:-1;;;;;;3236:17:0;;;;;;;3269:40;;3219:6;;;3236:17;3219:6;;3269:40;;3200:16;;3269:40;3189:128;3126:191;:::o;38892:804::-;39047:4;-1:-1:-1;;;;;39068:13:0;;14363:19;:23;39064:625;;39104:72;;-1:-1:-1;;;39104:72:0;;-1:-1:-1;;;;;39104:36:0;;;;;:72;;743:10;;39155:4;;39161:7;;39170:5;;39104:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39104:72:0;;;;;;;;-1:-1:-1;;39104:72:0;;;;;;;;;;;;:::i;:::-;;;39100:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39350:6;:13;39367:1;39350:18;39346:273;;39393:61;;-1:-1:-1;;;39393:61:0;;;;;;;:::i;39346:273::-;39569:6;39563:13;39554:6;39550:2;39546:15;39539:38;39100:534;-1:-1:-1;;;;;;39227:55:0;-1:-1:-1;;;39227:55:0;;-1:-1:-1;39220:62:0;;39064:625;-1:-1:-1;39673:4:0;39064:625;38892:804;;;;;;:::o;21623:723::-;21679:13;21900:5;21909:1;21900:10;21896:53;;-1:-1:-1;;21927:10:0;;;;;;;;;;;;-1:-1:-1;;;21927:10:0;;;;;21623:723::o;21896:53::-;21974:5;21959:12;22015:78;22022:9;;22015:78;;22048:8;;;;:::i;:::-;;-1:-1:-1;22071:10:0;;-1:-1:-1;22079:2:0;22071:10;;:::i;:::-;;;22015:78;;;22103:19;22135:6;22125:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22125:17:0;;22103:39;;22153:154;22160:10;;22153:154;;22187:11;22197:1;22187:11;;:::i;:::-;;-1:-1:-1;22256:10:0;22264:2;22256:5;:10;:::i;:::-;22243:24;;:2;:24;:::i;:::-;22230:39;;22213:6;22220;22213:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22213:56:0;;;;;;;;-1:-1:-1;22284:11:0;22293:2;22284:11;;:::i;:::-;;;22153:154;;33330:104;33399:27;33409:2;33413:8;33399:27;;;;;;;;;;;;33920:32;33926:2;33930:8;33940:5;33947:4;34358:20;34381:12;-1:-1:-1;;;;;34412:16:0;;34404:62;;;;-1:-1:-1;;;34404:62:0;;18960:2:1;34404:62:0;;;18942:21:1;18999:2;18979:18;;;18972:30;19038:34;19018:18;;;19011:62;-1:-1:-1;;;19089:18:1;;;19082:31;19130:19;;34404:62:0;18758:397:1;34404:62:0;34485:8;34497:1;34485:13;34477:66;;;;-1:-1:-1;;;34477:66:0;;19362:2:1;34477:66:0;;;19344:21:1;19401:2;19381:18;;;19374:30;19440:34;19420:18;;;19413:62;-1:-1:-1;;;19491:18:1;;;19484:38;19539:19;;34477:66:0;19160:404:1;34477:66:0;-1:-1:-1;;;;;34895:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;34895:45:0;;-1:-1:-1;;;;;34895:45:0;;;;;;;;;;34955:50;;;;;;;;;;;;;;35022:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;35072:66:0;;;;-1:-1:-1;;;35122:15:0;35072:66;;;;;;;35022:25;;35207:415;35227:8;35223:1;:12;35207:415;;;35266:38;;35291:12;;-1:-1:-1;;;;;35266:38:0;;;35283:1;;35266:38;;35283:1;;35266:38;35327:4;35323:249;;;35390:59;35421:1;35425:2;35429:12;35443:5;35390:22;:59::i;:::-;35356:196;;;;-1:-1:-1;;;35356:196:0;;;;;;;:::i;:::-;35592:14;;;;;35237:3;35207:415;;;-1:-1:-1;35638:12:0;:27;35689:60;32601:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2037:70;1940:173;;;:::o;2118:254::-;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:275;2913:2;2907:9;2978:2;2959:13;;-1:-1:-1;;2955:27:1;2943:40;;3013:18;2998:34;;3034:22;;;2995:62;2992:88;;;3060:18;;:::i;:::-;3096:2;3089:22;2842:275;;-1:-1:-1;2842:275:1:o;3122:952::-;3206:6;3237:2;3280;3268:9;3259:7;3255:23;3251:32;3248:52;;;3296:1;3293;3286:12;3248:52;3336:9;3323:23;3365:18;3406:2;3398:6;3395:14;3392:34;;;3422:1;3419;3412:12;3392:34;3460:6;3449:9;3445:22;3435:32;;3505:7;3498:4;3494:2;3490:13;3486:27;3476:55;;3527:1;3524;3517:12;3476:55;3563:2;3550:16;3585:2;3581;3578:10;3575:36;;;3591:18;;:::i;:::-;3637:2;3634:1;3630:10;3620:20;;3660:28;3684:2;3680;3676:11;3660:28;:::i;:::-;3722:15;;;3792:11;;;3788:20;;;3753:12;;;;3820:19;;;3817:39;;;3852:1;3849;3842:12;3817:39;3876:11;;;;3896:148;3912:6;3907:3;3904:15;3896:148;;;3978:23;3997:3;3978:23;:::i;:::-;3966:36;;3929:12;;;;4022;;;;3896:148;;;4063:5;3122:952;-1:-1:-1;;;;;;;;3122:952:1:o;4079:407::-;4144:5;4178:18;4170:6;4167:30;4164:56;;;4200:18;;:::i;:::-;4238:57;4283:2;4262:15;;-1:-1:-1;;4258:29:1;4289:4;4254:40;4238:57;:::i;:::-;4229:66;;4318:6;4311:5;4304:21;4358:3;4349:6;4344:3;4340:16;4337:25;4334:45;;;4375:1;4372;4365:12;4334:45;4424:6;4419:3;4412:4;4405:5;4401:16;4388:43;4478:1;4471:4;4462:6;4455:5;4451:18;4447:29;4440:40;4079:407;;;;;:::o;4491:451::-;4560:6;4613:2;4601:9;4592:7;4588:23;4584:32;4581:52;;;4629:1;4626;4619:12;4581:52;4669:9;4656:23;4702:18;4694:6;4691:30;4688:50;;;4734:1;4731;4724:12;4688:50;4757:22;;4810:4;4802:13;;4798:27;-1:-1:-1;4788:55:1;;4839:1;4836;4829:12;4788:55;4862:74;4928:7;4923:2;4910:16;4905:2;4901;4897:11;4862:74;:::i;4947:186::-;5006:6;5059:2;5047:9;5038:7;5034:23;5030:32;5027:52;;;5075:1;5072;5065:12;5027:52;5098:29;5117:9;5098:29;:::i;5138:347::-;5203:6;5211;5264:2;5252:9;5243:7;5239:23;5235:32;5232:52;;;5280:1;5277;5270:12;5232:52;5303:29;5322:9;5303:29;:::i;:::-;5293:39;;5382:2;5371:9;5367:18;5354:32;5429:5;5422:13;5415:21;5408:5;5405:32;5395:60;;5451:1;5448;5441:12;5395:60;5474:5;5464:15;;;5138:347;;;;;:::o;5490:667::-;5585:6;5593;5601;5609;5662:3;5650:9;5641:7;5637:23;5633:33;5630:53;;;5679:1;5676;5669:12;5630:53;5702:29;5721:9;5702:29;:::i;:::-;5692:39;;5750:38;5784:2;5773:9;5769:18;5750:38;:::i;:::-;5740:48;;5835:2;5824:9;5820:18;5807:32;5797:42;;5890:2;5879:9;5875:18;5862:32;5917:18;5909:6;5906:30;5903:50;;;5949:1;5946;5939:12;5903:50;5972:22;;6025:4;6017:13;;6013:27;-1:-1:-1;6003:55:1;;6054:1;6051;6044:12;6003:55;6077:74;6143:7;6138:2;6125:16;6120:2;6116;6112:11;6077:74;:::i;:::-;6067:84;;;5490:667;;;;;;;:::o;6162:260::-;6230:6;6238;6291:2;6279:9;6270:7;6266:23;6262:32;6259:52;;;6307:1;6304;6297:12;6259:52;6330:29;6349:9;6330:29;:::i;:::-;6320:39;;6378:38;6412:2;6401:9;6397:18;6378:38;:::i;:::-;6368:48;;6162:260;;;;;:::o;6427:380::-;6506:1;6502:12;;;;6549;;;6570:61;;6624:4;6616:6;6612:17;6602:27;;6570:61;6677:2;6669:6;6666:14;6646:18;6643:38;6640:161;;6723:10;6718:3;6714:20;6711:1;6704:31;6758:4;6755:1;6748:15;6786:4;6783:1;6776:15;6640:161;;6427:380;;;:::o;8055:356::-;8257:2;8239:21;;;8276:18;;;8269:30;8335:34;8330:2;8315:18;;8308:62;8402:2;8387:18;;8055:356::o;9234:127::-;9295:10;9290:3;9286:20;9283:1;9276:31;9326:4;9323:1;9316:15;9350:4;9347:1;9340:15;9366:127;9427:10;9422:3;9418:20;9415:1;9408:31;9458:4;9455:1;9448:15;9482:4;9479:1;9472:15;9498:135;9537:3;9558:17;;;9555:43;;9578:18;;:::i;:::-;-1:-1:-1;9625:1:1;9614:13;;9498:135::o;10454:168::-;10494:7;10560:1;10556;10552:6;10548:14;10545:1;10542:21;10537:1;10530:9;10523:17;10519:45;10516:71;;;10567:18;;:::i;:::-;-1:-1:-1;10607:9:1;;10454:168::o;11336:128::-;11376:3;11407:1;11403:6;11400:1;11397:13;11394:39;;;11413:18;;:::i;:::-;-1:-1:-1;11449:9:1;;11336:128::o;12869:415::-;13071:2;13053:21;;;13110:2;13090:18;;;13083:30;13149:34;13144:2;13129:18;;13122:62;-1:-1:-1;;;13215:2:1;13200:18;;13193:49;13274:3;13259:19;;12869:415::o;13415:185::-;13457:3;13495:5;13489:12;13510:52;13555:6;13550:3;13543:4;13536:5;13532:16;13510:52;:::i;:::-;13578:16;;;;;13415:185;-1:-1:-1;;13415:185:1:o;13723:1301::-;14000:3;14029:1;14062:6;14056:13;14092:3;14114:1;14142:9;14138:2;14134:18;14124:28;;14202:2;14191:9;14187:18;14224;14214:61;;14268:4;14260:6;14256:17;14246:27;;14214:61;14294:2;14342;14334:6;14331:14;14311:18;14308:38;14305:165;;-1:-1:-1;;;14369:33:1;;14425:4;14422:1;14415:15;14455:4;14376:3;14443:17;14305:165;14486:18;14513:104;;;;14631:1;14626:320;;;;14479:467;;14513:104;-1:-1:-1;;14546:24:1;;14534:37;;14591:16;;;;-1:-1:-1;14513:104:1;;14626:320;13362:1;13355:14;;;13399:4;13386:18;;14721:1;14735:165;14749:6;14746:1;14743:13;14735:165;;;14827:14;;14814:11;;;14807:35;14870:16;;;;14764:10;;14735:165;;;14739:3;;14929:6;14924:3;14920:16;14913:23;;14479:467;;;;;;;14962:56;14987:30;15013:3;15005:6;14987:30;:::i;:::-;-1:-1:-1;;;13665:20:1;;13710:1;13701:11;;13605:113;14962:56;14955:63;13723:1301;-1:-1:-1;;;;;13723:1301:1:o;17495:500::-;-1:-1:-1;;;;;17764:15:1;;;17746:34;;17816:15;;17811:2;17796:18;;17789:43;17863:2;17848:18;;17841:34;;;17911:3;17906:2;17891:18;;17884:31;;;17689:4;;17932:57;;17969:19;;17961:6;17932:57;:::i;:::-;17924:65;17495:500;-1:-1:-1;;;;;;17495:500:1:o;18000:249::-;18069:6;18122:2;18110:9;18101:7;18097:23;18093:32;18090:52;;;18138:1;18135;18128:12;18090:52;18170:9;18164:16;18189:30;18213:5;18189:30;:::i;18254:127::-;18315:10;18310:3;18306:20;18303:1;18296:31;18346:4;18343:1;18336:15;18370:4;18367:1;18360:15;18386:120;18426:1;18452;18442:35;;18457:18;;:::i;:::-;-1:-1:-1;18491:9:1;;18386:120::o;18511:125::-;18551:4;18579:1;18576;18573:8;18570:34;;;18584:18;;:::i;:::-;-1:-1:-1;18621:9:1;;18511:125::o;18641:112::-;18673:1;18699;18689:35;;18704:18;;:::i;:::-;-1:-1:-1;18738:9:1;;18641:112::o

Swarm Source

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