ETH Price: $2,288.06 (-5.44%)

Token

Taco Tuesday (TACO)
 

Overview

Max Total Supply

1,123 TACO

Holders

115

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jooso.eth
Balance
10 TACO
0xFdb81Ce089F4a2d76d4dE16f4BC2A647E91dE7A3
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:
TacoTuesday

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

/**
 * @dev 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 = 101;

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

    /**
     * @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(), ".json")) : '';
    }

    /**
     * @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 "ipfs://QmVoMmWmfbZn7ZpxqnxQmKW9nePXnY681ChNTtM2t3DFLe/";
    }

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

    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 TacoTuesday is ERC721A, Ownable {

    constructor() ERC721A("Taco Tuesday", "TACO") {}

    // ---------------------------------------------------------------------------------------------
    // VARIABLES
    // ---------------------------------------------------------------------------------------------

    uint256 public phaseSupply = 1111;
    uint256 public price = 0.2 ether; 
    uint256 public giveawayCounter = 1;

    // ---------------------------------------------------------------------------------------------
    // CONSTANTS
    // ---------------------------------------------------------------------------------------------

    uint32 public constant MAX_SUPPLY = 3333;    
    uint32 public constant GIVEAWAYS_SUPPLY = 100;
    uint64 public constant PHASE_SUPPLY_INCREMENT = 1111;
    uint64 public constant MAX_AMOUNT_PER_TRANSACTION = 10;
    uint64 public constant PHASE_PRICE_INCREMENT = 0.05 ether;

    // ---------------------------------------------------------------------------------------------
    // SETTERS
    // ---------------------------------------------------------------------------------------------

    function startNextPhase() external onlyOwner {
        price += PHASE_PRICE_INCREMENT;
        phaseSupply += PHASE_SUPPLY_INCREMENT;
    }

    function setPrice(uint _price) external onlyOwner {
        price = _price;
    }

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

    function ownerMint(address wallet, uint amount) external onlyOwner {
        require(giveawayCounter + amount <= GIVEAWAYS_SUPPLY + 1, "Not allowed!");
        uint pastIndex = currentIndex;
        currentIndex = giveawayCounter;
        _safeMint(wallet, amount);
        giveawayCounter += amount;
        currentIndex = pastIndex;
    }

    function saleMint(uint amount) external payable {
        require(currentIndex + amount <= MAX_SUPPLY + 1, "Not allowed!");
        require(currentIndex + amount <= phaseSupply + 1, "Sale not active!");
        require(amount <= MAX_AMOUNT_PER_TRANSACTION && amount > 0, "Incorrect amount!");
        require(msg.value == price * amount, "Incorrect value!");
        _safeMint(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GIVEAWAYS_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_AMOUNT_PER_TRANSACTION","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_PRICE_INCREMENT","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_SUPPLY_INCREMENT","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phaseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startNextPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260656000556104576008556702c68af0bb1400006009556001600a553480156200002d57600080fd5b50604080518082018252600c81526b5461636f205475657364617960a01b6020808301918252835180850190945260048452635441434f60e01b9084015281519192916200007e916001916200010d565b508051620000949060029060208401906200010d565b505050620000b1620000ab620000b760201b60201c565b620000bb565b620001f0565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011b90620001b3565b90600052602060002090601f0160209004810192826200013f57600085556200018a565b82601f106200015a57805160ff19168380011785556200018a565b828001600101855582156200018a579182015b828111156200018a5782518255916020019190600101906200016d565b50620001989291506200019c565b5090565b5b808211156200019857600081556001016200019d565b600181811c90821680620001c857607f821691505b60208210811415620001ea57634e487b7160e01b600052602260045260246000fd5b50919050565b611ef280620002006000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610547578063e985e9c514610567578063f2fde38b146105b0578063f4360ae7146105d057600080fd5b8063a22cb465146104dd578063a7b644e4146104fd578063b88d4fde14610512578063ba61810c1461053257600080fd5b80638da5cb5b116100d15780638da5cb5b1461047457806391b7f5ed1461049257806395d89b41146104b2578063a035b1fe146104c757600080fd5b8063715018a6146104205780637bb997e41461043557806383ba31371461044b5780638ca887ca1461046157600080fd5b806332cb6b0c1161017a5780634f6ccce7116101495780634f6ccce7146103925780636352211e146103b25780636a349ca0146103d257806370a082311461040057600080fd5b806332cb6b0c146103125780633ccfd60b1461033d57806342842e0e14610352578063484b973c1461037257600080fd5b806318160ddd116101b657806318160ddd146102995780631d5e9609146102bc57806323b872dd146102d25780632f745c59146102f257600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611990565b6105eb565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610658565b6040516102149190611a05565b34801561024b57600080fd5b5061025f61025a366004611a18565b6106ea565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611a4d565b610778565b005b3480156102a557600080fd5b506102ae610890565b604051908152602001610214565b3480156102c857600080fd5b506102ae600a5481565b3480156102de57600080fd5b506102976102ed366004611a77565b6108a6565b3480156102fe57600080fd5b506102ae61030d366004611a4d565b6108b1565b34801561031e57600080fd5b50610328610d0581565b60405163ffffffff9091168152602001610214565b34801561034957600080fd5b50610297610a18565b34801561035e57600080fd5b5061029761036d366004611a77565b610a71565b34801561037e57600080fd5b5061029761038d366004611a4d565b610a8c565b34801561039e57600080fd5b506102ae6103ad366004611a18565b610b45565b3480156103be57600080fd5b5061025f6103cd366004611a18565b610bad565b3480156103de57600080fd5b506103e7600a81565b60405167ffffffffffffffff9091168152602001610214565b34801561040c57600080fd5b506102ae61041b366004611ab3565b610bbf565b34801561042c57600080fd5b50610297610c50565b34801561044157600080fd5b506102ae60085481565b34801561045757600080fd5b506103e761045781565b61029761046f366004611a18565b610c86565b34801561048057600080fd5b506007546001600160a01b031661025f565b34801561049e57600080fd5b506102976104ad366004611a18565b610deb565b3480156104be57600080fd5b50610232610e1a565b3480156104d357600080fd5b506102ae60095481565b3480156104e957600080fd5b506102976104f8366004611ace565b610e29565b34801561050957600080fd5b50610328606481565b34801561051e57600080fd5b5061029761052d366004611b20565b610eee565b34801561053e57600080fd5b50610297610f27565b34801561055357600080fd5b50610232610562366004611a18565b610f97565b34801561057357600080fd5b50610208610582366004611bfc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105bc57600080fd5b506102976105cb366004611ab3565b611063565b3480156105dc57600080fd5b506103e766b1a2bc2ec5000081565b60006001600160e01b031982166380ac58cd60e01b148061061c57506001600160e01b03198216635b5e139f60e01b145b8061063757506001600160e01b0319821663780e9d6360e01b145b8061065257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461066790611c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611c2f565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f5826110fb565b61075c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061078382610bad565b9050806001600160a01b0316836001600160a01b031614156107f25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610753565b336001600160a01b038216148061080e575061080e8133610582565b6108805760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610753565b61088b83838361110e565b505050565b600060016000546108a19190611c80565b905090565b61088b83838361116a565b60006108bc83610bbf565b82106109155760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610753565b600061091f610890565b905060008060005b838110156109b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097a57805192505b876001600160a01b0316836001600160a01b031614156109af57868414156109a85750935061065292505050565b6001909301925b50600101610927565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610753565b6007546001600160a01b03163314610a425760405162461bcd60e51b815260040161075390611c97565b60405133904780156108fc02916000818181858888f19350505050158015610a6e573d6000803e3d6000fd5b50565b61088b83838360405180602001604052806000815250610eee565b6007546001600160a01b03163314610ab65760405162461bcd60e51b815260040161075390611c97565b610ac260646001611ccc565b63ffffffff1681600a54610ad69190611cf4565b1115610b135760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420616c6c6f7765642160a01b6044820152606401610753565b60008054600a54909155610b27838361144d565b81600a6000828254610b399190611cf4565b90915550506000555050565b6000610b4f610890565b8210610ba95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610753565b5090565b6000610bb88261146b565b5192915050565b60006001600160a01b038216610c2b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610753565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c7a5760405162461bcd60e51b815260040161075390611c97565b610c846000611540565b565b610c93610d056001611ccc565b63ffffffff1681600054610ca79190611cf4565b1115610ce45760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420616c6c6f7765642160a01b6044820152606401610753565b600854610cf2906001611cf4565b81600054610d009190611cf4565b1115610d415760405162461bcd60e51b815260206004820152601060248201526f53616c65206e6f74206163746976652160801b6044820152606401610753565b600a8111801590610d525750600081115b610d925760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420616d6f756e742160781b6044820152606401610753565b80600954610da09190611d0c565b3414610de15760405162461bcd60e51b815260206004820152601060248201526f496e636f72726563742076616c75652160801b6044820152606401610753565b610a6e338261144d565b6007546001600160a01b03163314610e155760405162461bcd60e51b815260040161075390611c97565b600955565b60606002805461066790611c2f565b6001600160a01b038216331415610e825760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610753565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef984848461116a565b610f0584848484611592565b610f215760405162461bcd60e51b815260040161075390611d2b565b50505050565b6007546001600160a01b03163314610f515760405162461bcd60e51b815260040161075390611c97565b66b1a2bc2ec5000067ffffffffffffffff1660096000828254610f749190611cf4565b9091555050600880546104579190600090610f90908490611cf4565b9091555050565b6060610fa2826110fb565b6110065760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610753565b6000611010611691565b9050805160001415611031576040518060200160405280600081525061105c565b8061103b846116b1565b60405160200161104c929190611d7e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461108d5760405162461bcd60e51b815260040161075390611c97565b6001600160a01b0381166110f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610753565b610a6e81611540565b6000805482108015610652575050151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111758261146b565b80519091506000906001600160a01b0316336001600160a01b031614806111ac5750336111a1846106ea565b6001600160a01b0316145b806111be575081516111be9033610582565b9050806112285760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610753565b846001600160a01b031682600001516001600160a01b03161461129c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610753565b6001600160a01b0384166113005760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610753565b611310600084846000015161110e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611403576113b6816110fb565b15611403578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6114678282604051806020016040528060008152506117af565b5050565b6040805180820190915260008082526020820152611488826110fb565b6114e75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610753565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611536579392505050565b50600019016114e9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561168557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d6903390899088908890600401611dbd565b6020604051808303816000875af1925050508015611611575060408051601f3d908101601f1916820190925261160e91810190611dfa565b60015b61166b573d80801561163f576040519150601f19603f3d011682016040523d82523d6000602084013e611644565b606091505b5080516116635760405162461bcd60e51b815260040161075390611d2b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611689565b5060015b949350505050565b6060604051806060016040528060368152602001611e8760369139905090565b6060816116d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ff57806116e981611e17565b91506116f89050600a83611e48565b91506116d9565b60008167ffffffffffffffff81111561171a5761171a611b0a565b6040519080825280601f01601f191660200182016040528015611744576020820181803683370190505b5090505b841561168957611759600183611c80565b9150611766600a86611e5c565b611771906030611cf4565b60f81b81838151811061178657611786611e70565b60200101906001600160f81b031916908160001a9053506117a8600a86611e48565b9450611748565b61088b83838360016000546001600160a01b03851661181a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610753565b836118785760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610753565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611965576119496000888488611592565b6119655760405162461bcd60e51b815260040161075390611d2b565b600191820191016118f6565b50600055611446565b6001600160e01b031981168114610a6e57600080fd5b6000602082840312156119a257600080fd5b813561105c8161197a565b60005b838110156119c85781810151838201526020016119b0565b83811115610f215750506000910152565b600081518084526119f18160208601602086016119ad565b601f01601f19169290920160200192915050565b60208152600061105c60208301846119d9565b600060208284031215611a2a57600080fd5b5035919050565b80356001600160a01b0381168114611a4857600080fd5b919050565b60008060408385031215611a6057600080fd5b611a6983611a31565b946020939093013593505050565b600080600060608486031215611a8c57600080fd5b611a9584611a31565b9250611aa360208501611a31565b9150604084013590509250925092565b600060208284031215611ac557600080fd5b61105c82611a31565b60008060408385031215611ae157600080fd5b611aea83611a31565b915060208301358015158114611aff57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b3657600080fd5b611b3f85611a31565b9350611b4d60208601611a31565b925060408501359150606085013567ffffffffffffffff80821115611b7157600080fd5b818701915087601f830112611b8557600080fd5b813581811115611b9757611b97611b0a565b604051601f8201601f19908116603f01168101908382118183101715611bbf57611bbf611b0a565b816040528281528a6020848701011115611bd857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c0f57600080fd5b611c1883611a31565b9150611c2660208401611a31565b90509250929050565b600181811c90821680611c4357607f821691505b60208210811415611c6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611c9257611c92611c6a565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600063ffffffff808316818516808303821115611ceb57611ceb611c6a565b01949350505050565b60008219821115611d0757611d07611c6a565b500190565b6000816000190483118215151615611d2657611d26611c6a565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611d908184602088016119ad565b835190830190611da48183602088016119ad565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df0908301846119d9565b9695505050505050565b600060208284031215611e0c57600080fd5b815161105c8161197a565b6000600019821415611e2b57611e2b611c6a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e5757611e57611e32565b500490565b600082611e6b57611e6b611e32565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d566f4d6d576d66625a6e375a7078716e78516d4b57396e6550586e5936383143684e54744d32743344464c652fa26469706673582212209732e7ba523b47a1cb019fd195fbcedee096f137837a9a8d80a83620877654f364736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610547578063e985e9c514610567578063f2fde38b146105b0578063f4360ae7146105d057600080fd5b8063a22cb465146104dd578063a7b644e4146104fd578063b88d4fde14610512578063ba61810c1461053257600080fd5b80638da5cb5b116100d15780638da5cb5b1461047457806391b7f5ed1461049257806395d89b41146104b2578063a035b1fe146104c757600080fd5b8063715018a6146104205780637bb997e41461043557806383ba31371461044b5780638ca887ca1461046157600080fd5b806332cb6b0c1161017a5780634f6ccce7116101495780634f6ccce7146103925780636352211e146103b25780636a349ca0146103d257806370a082311461040057600080fd5b806332cb6b0c146103125780633ccfd60b1461033d57806342842e0e14610352578063484b973c1461037257600080fd5b806318160ddd116101b657806318160ddd146102995780631d5e9609146102bc57806323b872dd146102d25780632f745c59146102f257600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004611990565b6105eb565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610658565b6040516102149190611a05565b34801561024b57600080fd5b5061025f61025a366004611a18565b6106ea565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611a4d565b610778565b005b3480156102a557600080fd5b506102ae610890565b604051908152602001610214565b3480156102c857600080fd5b506102ae600a5481565b3480156102de57600080fd5b506102976102ed366004611a77565b6108a6565b3480156102fe57600080fd5b506102ae61030d366004611a4d565b6108b1565b34801561031e57600080fd5b50610328610d0581565b60405163ffffffff9091168152602001610214565b34801561034957600080fd5b50610297610a18565b34801561035e57600080fd5b5061029761036d366004611a77565b610a71565b34801561037e57600080fd5b5061029761038d366004611a4d565b610a8c565b34801561039e57600080fd5b506102ae6103ad366004611a18565b610b45565b3480156103be57600080fd5b5061025f6103cd366004611a18565b610bad565b3480156103de57600080fd5b506103e7600a81565b60405167ffffffffffffffff9091168152602001610214565b34801561040c57600080fd5b506102ae61041b366004611ab3565b610bbf565b34801561042c57600080fd5b50610297610c50565b34801561044157600080fd5b506102ae60085481565b34801561045757600080fd5b506103e761045781565b61029761046f366004611a18565b610c86565b34801561048057600080fd5b506007546001600160a01b031661025f565b34801561049e57600080fd5b506102976104ad366004611a18565b610deb565b3480156104be57600080fd5b50610232610e1a565b3480156104d357600080fd5b506102ae60095481565b3480156104e957600080fd5b506102976104f8366004611ace565b610e29565b34801561050957600080fd5b50610328606481565b34801561051e57600080fd5b5061029761052d366004611b20565b610eee565b34801561053e57600080fd5b50610297610f27565b34801561055357600080fd5b50610232610562366004611a18565b610f97565b34801561057357600080fd5b50610208610582366004611bfc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105bc57600080fd5b506102976105cb366004611ab3565b611063565b3480156105dc57600080fd5b506103e766b1a2bc2ec5000081565b60006001600160e01b031982166380ac58cd60e01b148061061c57506001600160e01b03198216635b5e139f60e01b145b8061063757506001600160e01b0319821663780e9d6360e01b145b8061065257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461066790611c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461069390611c2f565b80156106e05780601f106106b5576101008083540402835291602001916106e0565b820191906000526020600020905b8154815290600101906020018083116106c357829003601f168201915b5050505050905090565b60006106f5826110fb565b61075c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061078382610bad565b9050806001600160a01b0316836001600160a01b031614156107f25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610753565b336001600160a01b038216148061080e575061080e8133610582565b6108805760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610753565b61088b83838361110e565b505050565b600060016000546108a19190611c80565b905090565b61088b83838361116a565b60006108bc83610bbf565b82106109155760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610753565b600061091f610890565b905060008060005b838110156109b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561097a57805192505b876001600160a01b0316836001600160a01b031614156109af57868414156109a85750935061065292505050565b6001909301925b50600101610927565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610753565b6007546001600160a01b03163314610a425760405162461bcd60e51b815260040161075390611c97565b60405133904780156108fc02916000818181858888f19350505050158015610a6e573d6000803e3d6000fd5b50565b61088b83838360405180602001604052806000815250610eee565b6007546001600160a01b03163314610ab65760405162461bcd60e51b815260040161075390611c97565b610ac260646001611ccc565b63ffffffff1681600a54610ad69190611cf4565b1115610b135760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420616c6c6f7765642160a01b6044820152606401610753565b60008054600a54909155610b27838361144d565b81600a6000828254610b399190611cf4565b90915550506000555050565b6000610b4f610890565b8210610ba95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610753565b5090565b6000610bb88261146b565b5192915050565b60006001600160a01b038216610c2b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610753565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610c7a5760405162461bcd60e51b815260040161075390611c97565b610c846000611540565b565b610c93610d056001611ccc565b63ffffffff1681600054610ca79190611cf4565b1115610ce45760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420616c6c6f7765642160a01b6044820152606401610753565b600854610cf2906001611cf4565b81600054610d009190611cf4565b1115610d415760405162461bcd60e51b815260206004820152601060248201526f53616c65206e6f74206163746976652160801b6044820152606401610753565b600a8111801590610d525750600081115b610d925760405162461bcd60e51b8152602060048201526011602482015270496e636f727265637420616d6f756e742160781b6044820152606401610753565b80600954610da09190611d0c565b3414610de15760405162461bcd60e51b815260206004820152601060248201526f496e636f72726563742076616c75652160801b6044820152606401610753565b610a6e338261144d565b6007546001600160a01b03163314610e155760405162461bcd60e51b815260040161075390611c97565b600955565b60606002805461066790611c2f565b6001600160a01b038216331415610e825760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610753565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ef984848461116a565b610f0584848484611592565b610f215760405162461bcd60e51b815260040161075390611d2b565b50505050565b6007546001600160a01b03163314610f515760405162461bcd60e51b815260040161075390611c97565b66b1a2bc2ec5000067ffffffffffffffff1660096000828254610f749190611cf4565b9091555050600880546104579190600090610f90908490611cf4565b9091555050565b6060610fa2826110fb565b6110065760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610753565b6000611010611691565b9050805160001415611031576040518060200160405280600081525061105c565b8061103b846116b1565b60405160200161104c929190611d7e565b6040516020818303038152906040525b9392505050565b6007546001600160a01b0316331461108d5760405162461bcd60e51b815260040161075390611c97565b6001600160a01b0381166110f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610753565b610a6e81611540565b6000805482108015610652575050151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111758261146b565b80519091506000906001600160a01b0316336001600160a01b031614806111ac5750336111a1846106ea565b6001600160a01b0316145b806111be575081516111be9033610582565b9050806112285760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610753565b846001600160a01b031682600001516001600160a01b03161461129c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610753565b6001600160a01b0384166113005760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610753565b611310600084846000015161110e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611403576113b6816110fb565b15611403578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6114678282604051806020016040528060008152506117af565b5050565b6040805180820190915260008082526020820152611488826110fb565b6114e75760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610753565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611536579392505050565b50600019016114e9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561168557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d6903390899088908890600401611dbd565b6020604051808303816000875af1925050508015611611575060408051601f3d908101601f1916820190925261160e91810190611dfa565b60015b61166b573d80801561163f576040519150601f19603f3d011682016040523d82523d6000602084013e611644565b606091505b5080516116635760405162461bcd60e51b815260040161075390611d2b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611689565b5060015b949350505050565b6060604051806060016040528060368152602001611e8760369139905090565b6060816116d55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ff57806116e981611e17565b91506116f89050600a83611e48565b91506116d9565b60008167ffffffffffffffff81111561171a5761171a611b0a565b6040519080825280601f01601f191660200182016040528015611744576020820181803683370190505b5090505b841561168957611759600183611c80565b9150611766600a86611e5c565b611771906030611cf4565b60f81b81838151811061178657611786611e70565b60200101906001600160f81b031916908160001a9053506117a8600a86611e48565b9450611748565b61088b83838360016000546001600160a01b03851661181a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610753565b836118785760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610753565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156119715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611965576119496000888488611592565b6119655760405162461bcd60e51b815260040161075390611d2b565b600191820191016118f6565b50600055611446565b6001600160e01b031981168114610a6e57600080fd5b6000602082840312156119a257600080fd5b813561105c8161197a565b60005b838110156119c85781810151838201526020016119b0565b83811115610f215750506000910152565b600081518084526119f18160208601602086016119ad565b601f01601f19169290920160200192915050565b60208152600061105c60208301846119d9565b600060208284031215611a2a57600080fd5b5035919050565b80356001600160a01b0381168114611a4857600080fd5b919050565b60008060408385031215611a6057600080fd5b611a6983611a31565b946020939093013593505050565b600080600060608486031215611a8c57600080fd5b611a9584611a31565b9250611aa360208501611a31565b9150604084013590509250925092565b600060208284031215611ac557600080fd5b61105c82611a31565b60008060408385031215611ae157600080fd5b611aea83611a31565b915060208301358015158114611aff57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b3657600080fd5b611b3f85611a31565b9350611b4d60208601611a31565b925060408501359150606085013567ffffffffffffffff80821115611b7157600080fd5b818701915087601f830112611b8557600080fd5b813581811115611b9757611b97611b0a565b604051601f8201601f19908116603f01168101908382118183101715611bbf57611bbf611b0a565b816040528281528a6020848701011115611bd857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c0f57600080fd5b611c1883611a31565b9150611c2660208401611a31565b90509250929050565b600181811c90821680611c4357607f821691505b60208210811415611c6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611c9257611c92611c6a565b500390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600063ffffffff808316818516808303821115611ceb57611ceb611c6a565b01949350505050565b60008219821115611d0757611d07611c6a565b500190565b6000816000190483118215151615611d2657611d26611c6a565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611d908184602088016119ad565b835190830190611da48183602088016119ad565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df0908301846119d9565b9695505050505050565b600060208284031215611e0c57600080fd5b815161105c8161197a565b6000600019821415611e2b57611e2b611c6a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e5757611e57611e32565b500490565b600082611e6b57611e6b611e32565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d566f4d6d576d66625a6e375a7078716e78516d4b57396e6550586e5936383143684e54744d32743344464c652fa26469706673582212209732e7ba523b47a1cb019fd195fbcedee096f137837a9a8d80a83620877654f364736f6c634300080c0033

Deployed Bytecode Sourcemap

38348:2313:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25146:372;;;;;;;;;;-1:-1:-1;25146:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25146:372:0;;;;;;;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28657:214::-;;;;;;;;;;-1:-1:-1;28657:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28657:214:0;1528:203:1;28178:413:0;;;;;;;;;;-1:-1:-1;28178:413:0;;;;;:::i;:::-;;:::i;:::-;;23399:104;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;23399:104:0;2173:177:1;38758:34:0;;;;;;;;;;;;;;;;29533:162;;;;;;;;;;-1:-1:-1;29533:162:0;;;;;:::i;:::-;;:::i;24067:1007::-;;;;;;;;;;-1:-1:-1;24067:1007:0;;;;;:::i;:::-;;:::i;39025:40::-;;;;;;;;;;;;39061:4;39025:40;;;;;2862:10:1;2850:23;;;2832:42;;2820:2;2805:18;39025:40:0;2688:192:1;39777:109:0;;;;;;;;;;;;;:::i;29766:177::-;;;;;;;;;;-1:-1:-1;29766:177:0;;;;;:::i;:::-;;:::i;39894:347::-;;;;;;;;;;-1:-1:-1;39894:347:0;;;;;:::i;:::-;;:::i;23580:187::-;;;;;;;;;;-1:-1:-1;23580:187:0;;;;;:::i;:::-;;:::i;26841:124::-;;;;;;;;;;-1:-1:-1;26841:124:0;;;;;:::i;:::-;;:::i;39187:54::-;;;;;;;;;;;;39239:2;39187:54;;;;;3059:18:1;3047:31;;;3029:50;;3017:2;3002:18;39187:54:0;2885:200:1;25582:221:0;;;;;;;;;;-1:-1:-1;25582:221:0;;;;;:::i;:::-;;:::i;4365:94::-;;;;;;;;;;;;;:::i;38678:33::-;;;;;;;;;;;;;;;;39128:52;;;;;;;;;;;;39176:4;39128:52;;40249:409;;;;;;:::i;:::-;;:::i;3714:87::-;;;;;;;;;;-1:-1:-1;3787:6:0;;-1:-1:-1;;;;;3787:6:0;3714:87;;39686:83;;;;;;;;;;-1:-1:-1;39686:83:0;;;;;:::i;:::-;;:::i;27201:104::-;;;;;;;;;;;;;:::i;38718:32::-;;;;;;;;;;;;;;;;28943:288;;;;;;;;;;-1:-1:-1;28943:288:0;;;;;:::i;:::-;;:::i;39076:45::-;;;;;;;;;;;;39118:3;39076:45;;30014:355;;;;;;;;;;-1:-1:-1;30014:355:0;;;;;:::i;:::-;;:::i;39536:142::-;;;;;;;;;;;;;:::i;27376:344::-;;;;;;;;;;-1:-1:-1;27376:344:0;;;;;:::i;:::-;;:::i;29302:164::-;;;;;;;;;;-1:-1:-1;29302:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29423:25:0;;;29399:4;29423:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29302:164;4614:192;;;;;;;;;;-1:-1:-1;4614:192:0;;;;;:::i;:::-;;:::i;39248:57::-;;;;;;;;;;;;39295:10;39248:57;;25146:372;25248:4;-1:-1:-1;;;;;;25285:40:0;;-1:-1:-1;;;25285:40:0;;:105;;-1:-1:-1;;;;;;;25342:48:0;;-1:-1:-1;;;25342:48:0;25285:105;:172;;;-1:-1:-1;;;;;;;25407:50:0;;-1:-1:-1;;;25407:50:0;25285:172;:225;;;-1:-1:-1;;;;;;;;;;15425:40:0;;;25474:36;25265:245;25146:372;-1:-1:-1;;25146:372:0:o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;28657:214::-;28725:7;28753:16;28761:7;28753;:16::i;:::-;28745:74;;;;-1:-1:-1;;;28745:74:0;;5760:2:1;28745:74:0;;;5742:21:1;5799:2;5779:18;;;5772:30;5838:34;5818:18;;;5811:62;-1:-1:-1;;;5889:18:1;;;5882:43;5942:19;;28745:74:0;;;;;;;;;-1:-1:-1;28839:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28839:24:0;;28657:214::o;28178:413::-;28251:13;28267:24;28283:7;28267:15;:24::i;:::-;28251:40;;28316:5;-1:-1:-1;;;;;28310:11:0;:2;-1:-1:-1;;;;;28310:11:0;;;28302:58;;;;-1:-1:-1;;;28302:58:0;;6174:2:1;28302:58:0;;;6156:21:1;6213:2;6193:18;;;6186:30;6252:34;6232:18;;;6225:62;-1:-1:-1;;;6303:18:1;;;6296:32;6345:19;;28302:58:0;5972:398:1;28302:58:0;2670:10;-1:-1:-1;;;;;28395:21:0;;;;:62;;-1:-1:-1;28420:37:0;28437:5;2670:10;29302:164;:::i;28420:37::-;28373:169;;;;-1:-1:-1;;;28373:169:0;;6577:2:1;28373:169:0;;;6559:21:1;6616:2;6596:18;;;6589:30;6655:34;6635:18;;;6628:62;6726:27;6706:18;;;6699:55;6771:19;;28373:169:0;6375:421:1;28373:169:0;28555:28;28564:2;28568:7;28577:5;28555:8;:28::i;:::-;28240:351;28178:413;;:::o;23399:104::-;23452:7;23494:1;23479:12;;:16;;;;:::i;:::-;23472:23;;23399:104;:::o;29533:162::-;29659:28;29669:4;29675:2;29679:7;29659:9;:28::i;24067:1007::-;24156:7;24192:16;24202:5;24192:9;:16::i;:::-;24184:5;:24;24176:71;;;;-1:-1:-1;;;24176:71:0;;7265:2:1;24176:71:0;;;7247:21:1;7304:2;7284:18;;;7277:30;7343:34;7323:18;;;7316:62;-1:-1:-1;;;7394:18:1;;;7387:32;7436:19;;24176:71:0;7063:398:1;24176:71:0;24258:22;24283:13;:11;:13::i;:::-;24258:38;;24307:19;24337:25;24526:9;24521:466;24541:14;24537:1;:18;24521:466;;;24581:31;24615:14;;;:11;:14;;;;;;;;;24581:48;;;;;;;;;-1:-1:-1;;;;;24581:48:0;;;;;-1:-1:-1;;;24581:48:0;;;;;;;;;;;;24652:28;24648:111;;24725:14;;;-1:-1:-1;24648:111:0;24802:5;-1:-1:-1;;;;;24781:26:0;:17;-1:-1:-1;;;;;24781:26:0;;24777:195;;;24851:5;24836:11;:20;24832:85;;;-1:-1:-1;24892:1:0;-1:-1:-1;24885:8:0;;-1:-1:-1;;;24885:8:0;24832:85;24939:13;;;;;24777:195;-1:-1:-1;24557:3:0;;24521:466;;;-1:-1:-1;25010:56:0;;-1:-1:-1;;;25010:56:0;;7668:2:1;25010:56:0;;;7650:21:1;7707:2;7687:18;;;7680:30;7746:34;7726:18;;;7719:62;-1:-1:-1;;;7797:18:1;;;7790:44;7851:19;;25010:56:0;7466:410:1;39777:109:0;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39827:51:::1;::::0;39835:10:::1;::::0;39856:21:::1;39827:51:::0;::::1;;;::::0;::::1;::::0;;;39856:21;39835:10;39827:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39777:109::o:0;29766:177::-;29896:39;29913:4;29919:2;29923:7;29896:39;;;;;;;;;;;;:16;:39::i;39894:347::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;40008:20:::1;39118:3;40027:1;40008:20;:::i;:::-;39980:48;;39998:6;39980:15;;:24;;;;:::i;:::-;:48;;39972:73;;;::::0;-1:-1:-1;;;39972:73:0;;8810:2:1;39972:73:0::1;::::0;::::1;8792:21:1::0;8849:2;8829:18;;;8822:30;-1:-1:-1;;;8868:18:1;;;8861:42;8920:18;;39972:73:0::1;8608:336:1::0;39972:73:0::1;40056:14;40073:12:::0;;40111:15:::1;::::0;40096:30;;;40137:25:::1;40147:6:::0;40155;40137:9:::1;:25::i;:::-;40192:6;40173:15;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;40209:12:0::1;:24:::0;-1:-1:-1;;39894:347:0:o;23580:187::-;23647:7;23683:13;:11;:13::i;:::-;23675:5;:21;23667:69;;;;-1:-1:-1;;;23667:69:0;;9151:2:1;23667:69:0;;;9133:21:1;9190:2;9170:18;;;9163:30;9229:34;9209:18;;;9202:62;-1:-1:-1;;;9280:18:1;;;9273:33;9323:19;;23667:69:0;8949:399:1;23667:69:0;-1:-1:-1;23754:5:0;23580:187::o;26841:124::-;26905:7;26932:20;26944:7;26932:11;:20::i;:::-;:25;;26841:124;-1:-1:-1;;26841:124:0:o;25582:221::-;25646:7;-1:-1:-1;;;;;25674:19:0;;25666:75;;;;-1:-1:-1;;;25666:75:0;;9555:2:1;25666:75:0;;;9537:21:1;9594:2;9574:18;;;9567:30;9633:34;9613:18;;;9606:62;-1:-1:-1;;;9684:18:1;;;9677:41;9735:19;;25666:75:0;9353:407:1;25666:75:0;-1:-1:-1;;;;;;25767:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25767:27:0;;25582:221::o;4365:94::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;40249:409::-;40341:14;39061:4;40354:1;40341:14;:::i;:::-;40316:39;;40331:6;40316:12;;:21;;;;:::i;:::-;:39;;40308:64;;;;-1:-1:-1;;;40308:64:0;;8810:2:1;40308:64:0;;;8792:21:1;8849:2;8829:18;;;8822:30;-1:-1:-1;;;8868:18:1;;;8861:42;8920:18;;40308:64:0;8608:336:1;40308:64:0;40416:11;;:15;;40430:1;40416:15;:::i;:::-;40406:6;40391:12;;:21;;;;:::i;:::-;:40;;40383:69;;;;-1:-1:-1;;;40383:69:0;;9967:2:1;40383:69:0;;;9949:21:1;10006:2;9986:18;;;9979:30;-1:-1:-1;;;10025:18:1;;;10018:46;10081:18;;40383:69:0;9765:340:1;40383:69:0;39239:2;40471:36;;;;;:50;;;40520:1;40511:6;:10;40471:50;40463:80;;;;-1:-1:-1;;;40463:80:0;;10312:2:1;40463:80:0;;;10294:21:1;10351:2;10331:18;;;10324:30;-1:-1:-1;;;10370:18:1;;;10363:47;10427:18;;40463:80:0;10110:341:1;40463:80:0;40583:6;40575:5;;:14;;;;:::i;:::-;40562:9;:27;40554:56;;;;-1:-1:-1;;;40554:56:0;;10831:2:1;40554:56:0;;;10813:21:1;10870:2;10850:18;;;10843:30;-1:-1:-1;;;10889:18:1;;;10882:46;10945:18;;40554:56:0;10629:340:1;40554:56:0;40621:29;40631:10;40643:6;40621:9;:29::i;39686:83::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39747:5:::1;:14:::0;39686:83::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;28943:288::-;-1:-1:-1;;;;;29038:24:0;;2670:10;29038:24;;29030:63;;;;-1:-1:-1;;;29030:63:0;;11176:2:1;29030:63:0;;;11158:21:1;11215:2;11195:18;;;11188:30;11254:28;11234:18;;;11227:56;11300:18;;29030:63:0;10974:350:1;29030:63:0;2670:10;29106:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29106:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29106:53:0;;;;;;;;;;29175:48;;540:41:1;;;29106:42:0;;2670:10;29175:48;;513:18:1;29175:48:0;;;;;;;28943:288;;:::o;30014:355::-;30173:28;30183:4;30189:2;30193:7;30173:9;:28::i;:::-;30234:48;30257:4;30263:2;30267:7;30276:5;30234:22;:48::i;:::-;30212:149;;;;-1:-1:-1;;;30212:149:0;;;;;;;:::i;:::-;30014:355;;;;:::o;39536:142::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;39295:10:::1;39592:30;;:5;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;39633:11:0::1;:37:::0;;39176:4:::1;::::0;39633:11;::::1;::::0;:37:::1;::::0;39176:4;;39633:37:::1;:::i;:::-;::::0;;;-1:-1:-1;;39536:142:0:o;27376:344::-;27449:13;27483:16;27491:7;27483;:16::i;:::-;27475:76;;;;-1:-1:-1;;;27475:76:0;;11951:2:1;27475:76:0;;;11933:21:1;11990:2;11970:18;;;11963:30;12029:34;12009:18;;;12002:62;-1:-1:-1;;;12080:18:1;;;12073:45;12135:19;;27475:76:0;11749:411:1;27475:76:0;27564:21;27588:10;:8;:10::i;:::-;27564:34;;27622:7;27616:21;27641:1;27616:26;;:96;;;;;;;;;;;;;;;;;27669:7;27678:18;:7;:16;:18::i;:::-;27652:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27616:96;27609:103;27376:344;-1:-1:-1;;;27376:344:0:o;4614:192::-;3787:6;;-1:-1:-1;;;;;3787:6:0;2670:10;3934:23;3926:68;;;;-1:-1:-1;;;3926:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4703:22:0;::::1;4695:73;;;::::0;-1:-1:-1;;;4695:73:0;;13009:2:1;4695:73:0::1;::::0;::::1;12991:21:1::0;13048:2;13028:18;;;13021:30;13087:34;13067:18;;;13060:62;-1:-1:-1;;;13138:18:1;;;13131:36;13184:19;;4695:73:0::1;12807:402:1::0;4695:73:0::1;4779:19;4789:8;4779:9;:19::i;30624:126::-:0;30681:4;30715:12;;30705:7;:22;:37;;;;-1:-1:-1;;30731:11:0;;;30624:126::o;35559:196::-;35674:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35674:29:0;-1:-1:-1;;;;;35674:29:0;;;;;;;;;35719:28;;35674:24;;35719:28;;;;;;;35559:196;;;:::o;33439:2002::-;33554:35;33592:20;33604:7;33592:11;:20::i;:::-;33667:18;;33554:58;;-1:-1:-1;33625:22:0;;-1:-1:-1;;;;;33651:34:0;2670:10;-1:-1:-1;;;;;33651:34:0;;:87;;;-1:-1:-1;2670:10:0;33702:20;33714:7;33702:11;:20::i;:::-;-1:-1:-1;;;;;33702:36:0;;33651:87;:154;;;-1:-1:-1;33772:18:0;;33755:50;;2670:10;29302:164;:::i;33755:50::-;33625:181;;33827:17;33819:80;;;;-1:-1:-1;;;33819:80:0;;13416:2:1;33819:80:0;;;13398:21:1;13455:2;13435:18;;;13428:30;13494:34;13474:18;;;13467:62;-1:-1:-1;;;13545:18:1;;;13538:48;13603:19;;33819:80:0;13214:414:1;33819:80:0;33942:4;-1:-1:-1;;;;;33920:26:0;:13;:18;;;-1:-1:-1;;;;;33920:26:0;;33912:77;;;;-1:-1:-1;;;33912:77:0;;13835:2:1;33912:77:0;;;13817:21:1;13874:2;13854:18;;;13847:30;13913:34;13893:18;;;13886:62;-1:-1:-1;;;13964:18:1;;;13957:36;14010:19;;33912:77:0;13633:402:1;33912:77:0;-1:-1:-1;;;;;34008:16:0;;34000:66;;;;-1:-1:-1;;;34000:66:0;;14242:2:1;34000:66:0;;;14224:21:1;14281:2;14261:18;;;14254:30;14320:34;14300:18;;;14293:62;-1:-1:-1;;;14371:18:1;;;14364:35;14416:19;;34000:66:0;14040:401:1;34000:66:0;34187:49;34204:1;34208:7;34217:13;:18;;;34187:8;:49::i;:::-;-1:-1:-1;;;;;34532:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;34532:31:0;;;-1:-1:-1;;;;;34532:31:0;;;-1:-1:-1;;34532:31:0;;;;;;;34578:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34578:29:0;;;;;;;;;;;;;34624:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;34669:61:0;;;;-1:-1:-1;;;34714:15:0;34669:61;;;;;;35004:11;;;35034:24;;;;;:29;35004:11;;35034:29;35030:295;;35102:20;35110:11;35102:7;:20::i;:::-;35098:212;;;35179:18;;;35147:24;;;:11;:24;;;;;;;;:50;;35262:28;;;;35220:70;;-1:-1:-1;;;35220:70:0;-1:-1:-1;;;;;;35220:70:0;;;-1:-1:-1;;;;;35147:50:0;;;35220:70;;;;;;;35098:212;34507:829;35372:7;35368:2;-1:-1:-1;;;;;35353:27:0;35362:4;-1:-1:-1;;;;;35353:27:0;;;;;;;;;;;35391:42;33543:1898;;33439:2002;;;:::o;30758:104::-;30827:27;30837:2;30841:8;30827:27;;;;;;;;;;;;:9;:27::i;:::-;30758:104;;:::o;26242:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;26345:16:0;26353:7;26345;:16::i;:::-;26337:71;;;;-1:-1:-1;;;26337:71:0;;14648:2:1;26337:71:0;;;14630:21:1;14687:2;14667:18;;;14660:30;14726:34;14706:18;;;14699:62;-1:-1:-1;;;14777:18:1;;;14770:40;14827:19;;26337:71:0;14446:406:1;26337:71:0;26466:7;26446:245;26513:31;26547:17;;;:11;:17;;;;;;;;;26513:51;;;;;;;;;-1:-1:-1;;;;;26513:51:0;;;;;-1:-1:-1;;;26513:51:0;;;;;;;;;;;;26587:28;26583:93;;26647:9;26242:537;-1:-1:-1;;;26242:537:0:o;26583:93::-;-1:-1:-1;;;26486:6:0;26446:245;;4814:173;4889:6;;;-1:-1:-1;;;;;4906:17:0;;;-1:-1:-1;;;;;;4906:17:0;;;;;;;4939:40;;4889:6;;;4906:17;4889:6;;4939:40;;4870:16;;4939:40;4859:128;4814:173;:::o;36320:804::-;36475:4;-1:-1:-1;;;;;36496:13:0;;5998:20;6046:8;36492:625;;36532:72;;-1:-1:-1;;;36532:72:0;;-1:-1:-1;;;;;36532:36:0;;;;;:72;;2670:10;;36583:4;;36589:7;;36598:5;;36532:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36532:72:0;;;;;;;;-1:-1:-1;;36532:72:0;;;;;;;;;;;;:::i;:::-;;;36528:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36778:13:0;;36774:273;;36821:61;;-1:-1:-1;;;36821:61:0;;;;;;;:::i;36774:273::-;36997:6;36991:13;36982:6;36978:2;36974:15;36967:38;36528:534;-1:-1:-1;;;;;;36655:55:0;-1:-1:-1;;;36655:55:0;;-1:-1:-1;36648:62:0;;36492:625;-1:-1:-1;37101:4:0;36492:625;36320:804;;;;;;:::o;27968:148::-;28019:13;28045:63;;;;;;;;;;;;;;;;;;;27968:148;:::o;289:723::-;345:13;566:10;562:53;;-1:-1:-1;;593:10:0;;;;;;;;;;;;-1:-1:-1;;;593:10:0;;;;;289:723::o;562:53::-;640:5;625:12;681:78;688:9;;681:78;;714:8;;;;:::i;:::-;;-1:-1:-1;737:10:0;;-1:-1:-1;745:2:0;737:10;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;791:17:0;;769:39;;819:154;826:10;;819:154;;853:11;863:1;853:11;;:::i;:::-;;-1:-1:-1;922:10:0;930:2;922:5;:10;:::i;:::-;909:24;;:2;:24;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;879:56:0;;;;;;;;-1:-1:-1;950:11:0;959:2;950:11;;:::i;:::-;;;819:154;;31225:163;31348:32;31354:2;31358:8;31368:5;31375:4;31786:20;31809:12;-1:-1:-1;;;;;31840:16:0;;31832:62;;;;-1:-1:-1;;;31832:62:0;;16869:2:1;31832:62:0;;;16851:21:1;16908:2;16888:18;;;16881:30;16947:34;16927:18;;;16920:62;-1:-1:-1;;;16998:18:1;;;16991:31;17039:19;;31832:62:0;16667:397:1;31832:62:0;31913:13;31905:66;;;;-1:-1:-1;;;31905:66:0;;17271:2:1;31905:66:0;;;17253:21:1;17310:2;17290:18;;;17283:30;17349:34;17329:18;;;17322:62;-1:-1:-1;;;17400:18:1;;;17393:38;17448:19;;31905:66:0;17069:404:1;31905:66:0;-1:-1:-1;;;;;32323:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;32323:45:0;;-1:-1:-1;;;;;32323:45:0;;;;;;;;;;32383:50;;;;;;;;;;;;;;32450:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;32500:66:0;;;;-1:-1:-1;;;32550:15:0;32500:66;;;;;;;32450:25;;32635:415;32655:8;32651:1;:12;32635:415;;;32694:38;;32719:12;;-1:-1:-1;;;;;32694:38:0;;;32711:1;;32694:38;;32711:1;;32694:38;32755:4;32751:249;;;32818:59;32849:1;32853:2;32857:12;32871:5;32818:22;:59::i;:::-;32784:196;;;;-1:-1:-1;;;32784:196:0;;;;;;;:::i;:::-;33020:14;;;;;32665:3;32635:415;;;-1:-1:-1;33066:12:0;:27;33117:60;30014:355;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;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;3090:186::-;3149:6;3202:2;3190:9;3181:7;3177:23;3173:32;3170:52;;;3218:1;3215;3208:12;3170:52;3241:29;3260:9;3241:29;:::i;3281:347::-;3346:6;3354;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3446:29;3465:9;3446:29;:::i;:::-;3436:39;;3525:2;3514:9;3510:18;3497:32;3572:5;3565:13;3558:21;3551:5;3548:32;3538:60;;3594:1;3591;3584:12;3538:60;3617:5;3607:15;;;3281:347;;;;;:::o;3633:127::-;3694:10;3689:3;3685:20;3682:1;3675:31;3725:4;3722:1;3715:15;3749:4;3746:1;3739:15;3765:1138;3860:6;3868;3876;3884;3937:3;3925:9;3916:7;3912:23;3908:33;3905:53;;;3954:1;3951;3944:12;3905:53;3977:29;3996:9;3977:29;:::i;:::-;3967:39;;4025:38;4059:2;4048:9;4044:18;4025:38;:::i;:::-;4015:48;;4110:2;4099:9;4095:18;4082:32;4072:42;;4165:2;4154:9;4150:18;4137:32;4188:18;4229:2;4221:6;4218:14;4215:34;;;4245:1;4242;4235:12;4215:34;4283:6;4272:9;4268:22;4258:32;;4328:7;4321:4;4317:2;4313:13;4309:27;4299:55;;4350:1;4347;4340:12;4299:55;4386:2;4373:16;4408:2;4404;4401:10;4398:36;;;4414:18;;:::i;:::-;4489:2;4483:9;4457:2;4543:13;;-1:-1:-1;;4539:22:1;;;4563:2;4535:31;4531:40;4519:53;;;4587:18;;;4607:22;;;4584:46;4581:72;;;4633:18;;:::i;:::-;4673:10;4669:2;4662:22;4708:2;4700:6;4693:18;4748:7;4743:2;4738;4734;4730:11;4726:20;4723:33;4720:53;;;4769:1;4766;4759:12;4720:53;4825:2;4820;4816;4812:11;4807:2;4799:6;4795:15;4782:46;4870:1;4865:2;4860;4852:6;4848:15;4844:24;4837:35;4891:6;4881:16;;;;;;;3765:1138;;;;;;;:::o;4908:260::-;4976:6;4984;5037:2;5025:9;5016:7;5012:23;5008:32;5005:52;;;5053:1;5050;5043:12;5005:52;5076:29;5095:9;5076:29;:::i;:::-;5066:39;;5124:38;5158:2;5147:9;5143:18;5124:38;:::i;:::-;5114:48;;4908:260;;;;;:::o;5173:380::-;5252:1;5248:12;;;;5295;;;5316:61;;5370:4;5362:6;5358:17;5348:27;;5316:61;5423:2;5415:6;5412:14;5392:18;5389:38;5386:161;;;5469:10;5464:3;5460:20;5457:1;5450:31;5504:4;5501:1;5494:15;5532:4;5529:1;5522:15;5386:161;;5173:380;;;:::o;6801:127::-;6862:10;6857:3;6853:20;6850:1;6843:31;6893:4;6890:1;6883:15;6917:4;6914:1;6907:15;6933:125;6973:4;7001:1;6998;6995:8;6992:34;;;7006:18;;:::i;:::-;-1:-1:-1;7043:9:1;;6933:125::o;7881:356::-;8083:2;8065:21;;;8102:18;;;8095:30;8161:34;8156:2;8141:18;;8134:62;8228:2;8213:18;;7881:356::o;8242:228::-;8281:3;8309:10;8346:2;8343:1;8339:10;8376:2;8373:1;8369:10;8407:3;8403:2;8399:12;8394:3;8391:21;8388:47;;;8415:18;;:::i;:::-;8451:13;;8242:228;-1:-1:-1;;;;8242:228:1:o;8475:128::-;8515:3;8546:1;8542:6;8539:1;8536:13;8533:39;;;8552:18;;:::i;:::-;-1:-1:-1;8588:9:1;;8475:128::o;10456:168::-;10496:7;10562:1;10558;10554:6;10550:14;10547:1;10544:21;10539:1;10532:9;10525:17;10521:45;10518:71;;;10569:18;;:::i;:::-;-1:-1:-1;10609:9:1;;10456:168::o;11329:415::-;11531:2;11513:21;;;11570:2;11550:18;;;11543:30;11609:34;11604:2;11589:18;;11582:62;-1:-1:-1;;;11675:2:1;11660:18;;11653:49;11734:3;11719:19;;11329:415::o;12165:637::-;12445:3;12483:6;12477:13;12499:53;12545:6;12540:3;12533:4;12525:6;12521:17;12499:53;:::i;:::-;12615:13;;12574:16;;;;12637:57;12615:13;12574:16;12671:4;12659:17;;12637:57;:::i;:::-;-1:-1:-1;;;12716:20:1;;12745:22;;;12794:1;12783:13;;12165:637;-1:-1:-1;;;;12165:637:1:o;15273:489::-;-1:-1:-1;;;;;15542:15:1;;;15524:34;;15594:15;;15589:2;15574:18;;15567:43;15641:2;15626:18;;15619:34;;;15689:3;15684:2;15669:18;;15662:31;;;15467:4;;15710:46;;15736:19;;15728:6;15710:46;:::i;:::-;15702:54;15273:489;-1:-1:-1;;;;;;15273:489:1:o;15767:249::-;15836:6;15889:2;15877:9;15868:7;15864:23;15860:32;15857:52;;;15905:1;15902;15895:12;15857:52;15937:9;15931:16;15956:30;15980:5;15956:30;:::i;16021:135::-;16060:3;-1:-1:-1;;16081:17:1;;16078:43;;;16101:18;;:::i;:::-;-1:-1:-1;16148:1:1;16137:13;;16021:135::o;16161:127::-;16222:10;16217:3;16213:20;16210:1;16203:31;16253:4;16250:1;16243:15;16277:4;16274:1;16267:15;16293:120;16333:1;16359;16349:35;;16364:18;;:::i;:::-;-1:-1:-1;16398:9:1;;16293:120::o;16418:112::-;16450:1;16476;16466:35;;16481:18;;:::i;:::-;-1:-1:-1;16515:9:1;;16418:112::o;16535:127::-;16596:10;16591:3;16587:20;16584:1;16577:31;16627:4;16624:1;16617:15;16651:4;16648:1;16641:15

Swarm Source

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