ETH Price: $2,695.90 (+4.98%)
Gas: 2 Gwei

Token

GRUNTZ Commemorative Edition (GRUNTZce)
 

Overview

Max Total Supply

333 GRUNTZce

Holders

88

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 GRUNTZce
0x9489aa21b9997a5e1ea2d1d62ce1a0564df31e6c
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:
GRUNTZCommemorative

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// File: @openzeppelin/contracts/utils/Counters.sol
// SPDX-License-Identifier: GPL-3.0
/*                                                                                 
Website:    https://www.gruntz.io                                                                                                                       
 */                                                                                                                    

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".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 "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


pragma solidity 0.8.7;

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}


contract GRUNTZCommemorative is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string _baseUri;
    uint public constant MaximumSupply = 333;
    uint public maxPerWallet = 5;
    bool public paused = true;
    bool public isMetadataLocked = false;

    address public proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

        mapping(address => bool) public projectProxy;

    mapping(address => uint) public addressToFreeMinted;

    constructor() ERC721("GRUNTZ Commemorative Edition", "GRUNTZce") {
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseUri;
    }
    
    function mint(uint quantity) external payable {
        require(!paused, "the contract is paused");
        require(addressToFreeMinted[msg.sender] < maxPerWallet, "You've already minted 5 per wallet");
        require(totalSupply() + quantity <= MaximumSupply, "Sold Out");
        
        for (uint i = 0; i < quantity; i++) {
            addressToFreeMinted[msg.sender]++;
            safeMint(msg.sender);
        }
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }
    
    function totalSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }

    
     function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
     function lockMetadata() external onlyOwner {
        isMetadataLocked = true;
    }
    function setBaseURI(string memory newBaseURI) external onlyOwner {
        require(!isMetadataLocked, "metadata is finalized");
        _baseUri = newBaseURI;
    }

    function setProxyRegistry(address preg) external onlyOwner {
        proxyRegistryAddress = preg;
    }
    function pause() external onlyOwner {
        paused = !paused;
      }

}

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":"MaximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"preg","type":"address"}],"name":"setProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005600955600a80546001600160b01b03191675a5409ec958c83c3f309868babaca7c86dcb077c100011790553480156200003e57600080fd5b50604080518082018252601c81527f4752554e545a20436f6d6d656d6f7261746976652045646974696f6e000000006020808301918252835180850190945260088452674752554e545a636560c01b908401528151919291620000a49160009162000133565b508051620000ba90600190602084019062000133565b505050620000d7620000d1620000dd60201b60201c565b620000e1565b62000216565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014190620001d9565b90600052602060002090601f016020900481019282620001655760008555620001b0565b82601f106200018057805160ff1916838001178555620001b0565b82800160010185558215620001b0579182015b82811115620001b057825182559160200191906001019062000193565b50620001be929150620001c2565b5090565b5b80821115620001be5760008155600101620001c3565b600181811c90821680620001ee57607f821691505b602082108114156200021057634e487b7160e01b600052602260045260246000fd5b50919050565b611d2180620002266000396000f3fe6080604052600436106101c25760003560e01c80637fc46189116100f7578063adfdeef911610095578063d04854e011610064578063d04854e0146104f3578063d7e45cd714610509578063e985e9c514610528578063f2fde38b1461054857600080fd5b8063adfdeef91461046d578063b88d4fde1461048d578063c87b56dd146104ad578063cd7c0326146104cd57600080fd5b806395d89b41116100d157806395d89b4114610410578063989bdbb614610425578063a0712d681461043a578063a22cb4651461044d57600080fd5b80637fc46189146103b05780638456cb59146103dd5780638da5cb5b146103f257600080fd5b8063453c2310116101645780635c975abb1161013e5780635c975abb146103415780636352211e1461035b57806370a082311461037b578063715018a61461039b57600080fd5b8063453c2310146102db57806355f804b3146102f15780635bab26e21461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806342842e0e146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611943565b610568565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ba565b6040516101f39190611aa4565b34801561022a57600080fd5b5061023e6102393660046119e3565b61064c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611917565b6106e6565b005b34801561028457600080fd5b5061028d6107fc565b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611823565b61080c565b3480156102c757600080fd5b506102766102d6366004611823565b61083d565b3480156102e757600080fd5b5061028d60095481565b3480156102fd57600080fd5b5061027661030c36600461199a565b610858565b34801561031d57600080fd5b506101e761032c3660046117cd565b600b6020526000908152604090205460ff1681565b34801561034d57600080fd5b50600a546101e79060ff1681565b34801561036757600080fd5b5061023e6103763660046119e3565b6108e9565b34801561038757600080fd5b5061028d6103963660046117cd565b610960565b3480156103a757600080fd5b506102766109e7565b3480156103bc57600080fd5b5061028d6103cb3660046117cd565b600c6020526000908152604090205481565b3480156103e957600080fd5b50610276610a1d565b3480156103fe57600080fd5b506006546001600160a01b031661023e565b34801561041c57600080fd5b50610211610a5b565b34801561043157600080fd5b50610276610a6a565b6102766104483660046119e3565b610aa5565b34801561045957600080fd5b506102766104683660046118e4565b610bf1565b34801561047957600080fd5b506102766104883660046117cd565b610cb6565b34801561049957600080fd5b506102766104a8366004611864565b610d0a565b3480156104b957600080fd5b506102116104c83660046119e3565b610d42565b3480156104d957600080fd5b50600a5461023e906201000090046001600160a01b031681565b3480156104ff57600080fd5b5061028d61014d81565b34801561051557600080fd5b50600a546101e790610100900460ff1681565b34801561053457600080fd5b506101e76105433660046117ea565b610e1d565b34801561055457600080fd5b506102766105633660046117cd565b610ef3565b60006001600160e01b031982166380ac58cd60e01b148061059957506001600160e01b03198216635b5e139f60e01b145b806105b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105c990611bfe565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590611bfe565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f1826108e9565b9050806001600160a01b0316836001600160a01b0316141561075f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c1565b336001600160a01b038216148061077b575061077b8133610e1d565b6107ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c1565b6107f78383610f8e565b505050565b600061080760075490565b905090565b6108163382610ffc565b6108325760405162461bcd60e51b81526004016106c190611b3e565b6107f78383836110cb565b6107f783838360405180602001604052806000815250610d0a565b6006546001600160a01b031633146108825760405162461bcd60e51b81526004016106c190611b09565b600a54610100900460ff16156108d25760405162461bcd60e51b81526020600482015260156024820152741b595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016106c1565b80516108e59060089060208401906116be565b5050565b6000818152600260205260408120546001600160a01b0316806105b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c1565b60006001600160a01b0382166109cb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c1565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a115760405162461bcd60e51b81526004016106c190611b09565b610a1b600061126b565b565b6006546001600160a01b03163314610a475760405162461bcd60e51b81526004016106c190611b09565b600a805460ff19811660ff90911615179055565b6060600180546105c990611bfe565b6006546001600160a01b03163314610a945760405162461bcd60e51b81526004016106c190611b09565b600a805461ff001916610100179055565b600a5460ff1615610af15760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106c1565b600954336000908152600c602052604090205410610b5c5760405162461bcd60e51b815260206004820152602260248201527f596f7527766520616c7265616479206d696e7465642035207065722077616c6c604482015261195d60f21b60648201526084016106c1565b61014d81610b686107fc565b610b729190611b8f565b1115610bab5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106c1565b60005b818110156108e557336000908152600c60205260408120805491610bd183611c39565b9190505550610bdf336112bd565b80610be981611c39565b915050610bae565b6001600160a01b038216331415610c4a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610ce05760405162461bcd60e51b81526004016106c190611b09565b600a80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b610d143383610ffc565b610d305760405162461bcd60e51b81526004016106c190611b3e565b610d3c848484846112e2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dc15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c1565b6000610dcb611315565b90506000815111610deb5760405180602001604052806000815250610e16565b80610df584611324565b604051602001610e06929190611a28565b6040516020818303038152906040525b9392505050565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009262010000900481169190841690829063c45527919060240160206040518083038186803b158015610e7057600080fd5b505afa158015610e84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea8919061197d565b6001600160a01b03161415610ec15760019150506105b4565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b03163314610f1d5760405162461bcd60e51b81526004016106c190611b09565b6001600160a01b038116610f825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610f8b8161126b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fc3826108e9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b6000611080836108e9565b9050806001600160a01b0316846001600160a01b031614806110bb5750836001600160a01b03166110b08461064c565b6001600160a01b0316145b80610eeb5750610eeb8185610e1d565b826001600160a01b03166110de826108e9565b6001600160a01b0316146111465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c1565b6001600160a01b0382166111a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b6111b3600082610f8e565b6001600160a01b03831660009081526003602052604081208054600192906111dc908490611bbb565b90915550506001600160a01b038216600090815260036020526040812080546001929061120a908490611b8f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112c860075490565b90506112d8600780546001019055565b6108e58282611422565b6112ed8484846110cb565b6112f98484848461143c565b610d3c5760405162461bcd60e51b81526004016106c190611ab7565b6060600880546105c990611bfe565b6060816113485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611372578061135c81611c39565b915061136b9050600a83611ba7565b915061134c565b60008167ffffffffffffffff81111561138d5761138d611caa565b6040519080825280601f01601f1916602001820160405280156113b7576020820181803683370190505b5090505b8415610eeb576113cc600183611bbb565b91506113d9600a86611c54565b6113e4906030611b8f565b60f81b8183815181106113f9576113f9611c94565b60200101906001600160f81b031916908160001a90535061141b600a86611ba7565b94506113bb565b6108e5828260405180602001604052806000815250611549565b60006001600160a01b0384163b1561153e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611480903390899088908890600401611a67565b602060405180830381600087803b15801561149a57600080fd5b505af19250505080156114ca575060408051601f3d908101601f191682019092526114c791810190611960565b60015b611524573d8080156114f8576040519150601f19603f3d011682016040523d82523d6000602084013e6114fd565b606091505b50805161151c5760405162461bcd60e51b81526004016106c190611ab7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eeb565b506001949350505050565b611553838361157c565b611560600084848461143c565b6107f75760405162461bcd60e51b81526004016106c190611ab7565b6001600160a01b0382166115d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c1565b6000818152600260205260409020546001600160a01b0316156116375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c1565b6001600160a01b0382166000908152600360205260408120805460019290611660908490611b8f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116ca90611bfe565b90600052602060002090601f0160209004810192826116ec5760008555611732565b82601f1061170557805160ff1916838001178555611732565b82800160010185558215611732579182015b82811115611732578251825591602001919060010190611717565b5061173e929150611742565b5090565b5b8082111561173e5760008155600101611743565b600067ffffffffffffffff8084111561177257611772611caa565b604051601f8501601f19908116603f0116810190828211818310171561179a5761179a611caa565b816040528093508581528686860111156117b357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117df57600080fd5b8135610e1681611cc0565b600080604083850312156117fd57600080fd5b823561180881611cc0565b9150602083013561181881611cc0565b809150509250929050565b60008060006060848603121561183857600080fd5b833561184381611cc0565b9250602084013561185381611cc0565b929592945050506040919091013590565b6000806000806080858703121561187a57600080fd5b843561188581611cc0565b9350602085013561189581611cc0565b925060408501359150606085013567ffffffffffffffff8111156118b857600080fd5b8501601f810187136118c957600080fd5b6118d887823560208401611757565b91505092959194509250565b600080604083850312156118f757600080fd5b823561190281611cc0565b91506020830135801515811461181857600080fd5b6000806040838503121561192a57600080fd5b823561193581611cc0565b946020939093013593505050565b60006020828403121561195557600080fd5b8135610e1681611cd5565b60006020828403121561197257600080fd5b8151610e1681611cd5565b60006020828403121561198f57600080fd5b8151610e1681611cc0565b6000602082840312156119ac57600080fd5b813567ffffffffffffffff8111156119c357600080fd5b8201601f810184136119d457600080fd5b610eeb84823560208401611757565b6000602082840312156119f557600080fd5b5035919050565b60008151808452611a14816020860160208601611bd2565b601f01601f19169290920160200192915050565b60008351611a3a818460208801611bd2565b835190830190611a4e818360208801611bd2565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a9a908301846119fc565b9695505050505050565b602081526000610e1660208301846119fc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ba257611ba2611c68565b500190565b600082611bb657611bb6611c7e565b500490565b600082821015611bcd57611bcd611c68565b500390565b60005b83811015611bed578181015183820152602001611bd5565b83811115610d3c5750506000910152565b600181811c90821680611c1257607f821691505b60208210811415611c3357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c4d57611c4d611c68565b5060010190565b600082611c6357611c63611c7e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8b57600080fd5b6001600160e01b031981168114610f8b57600080fdfea26469706673582212201aa2081a2a8b6d0b45a2ee2fb48fe0924faa0b16c4da8a6e9a11a55d6fce043f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80637fc46189116100f7578063adfdeef911610095578063d04854e011610064578063d04854e0146104f3578063d7e45cd714610509578063e985e9c514610528578063f2fde38b1461054857600080fd5b8063adfdeef91461046d578063b88d4fde1461048d578063c87b56dd146104ad578063cd7c0326146104cd57600080fd5b806395d89b41116100d157806395d89b4114610410578063989bdbb614610425578063a0712d681461043a578063a22cb4651461044d57600080fd5b80637fc46189146103b05780638456cb59146103dd5780638da5cb5b146103f257600080fd5b8063453c2310116101645780635c975abb1161013e5780635c975abb146103415780636352211e1461035b57806370a082311461037b578063715018a61461039b57600080fd5b8063453c2310146102db57806355f804b3146102f15780635bab26e21461031157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806342842e0e146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611943565b610568565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ba565b6040516101f39190611aa4565b34801561022a57600080fd5b5061023e6102393660046119e3565b61064c565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611917565b6106e6565b005b34801561028457600080fd5b5061028d6107fc565b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611823565b61080c565b3480156102c757600080fd5b506102766102d6366004611823565b61083d565b3480156102e757600080fd5b5061028d60095481565b3480156102fd57600080fd5b5061027661030c36600461199a565b610858565b34801561031d57600080fd5b506101e761032c3660046117cd565b600b6020526000908152604090205460ff1681565b34801561034d57600080fd5b50600a546101e79060ff1681565b34801561036757600080fd5b5061023e6103763660046119e3565b6108e9565b34801561038757600080fd5b5061028d6103963660046117cd565b610960565b3480156103a757600080fd5b506102766109e7565b3480156103bc57600080fd5b5061028d6103cb3660046117cd565b600c6020526000908152604090205481565b3480156103e957600080fd5b50610276610a1d565b3480156103fe57600080fd5b506006546001600160a01b031661023e565b34801561041c57600080fd5b50610211610a5b565b34801561043157600080fd5b50610276610a6a565b6102766104483660046119e3565b610aa5565b34801561045957600080fd5b506102766104683660046118e4565b610bf1565b34801561047957600080fd5b506102766104883660046117cd565b610cb6565b34801561049957600080fd5b506102766104a8366004611864565b610d0a565b3480156104b957600080fd5b506102116104c83660046119e3565b610d42565b3480156104d957600080fd5b50600a5461023e906201000090046001600160a01b031681565b3480156104ff57600080fd5b5061028d61014d81565b34801561051557600080fd5b50600a546101e790610100900460ff1681565b34801561053457600080fd5b506101e76105433660046117ea565b610e1d565b34801561055457600080fd5b506102766105633660046117cd565b610ef3565b60006001600160e01b031982166380ac58cd60e01b148061059957506001600160e01b03198216635b5e139f60e01b145b806105b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105c990611bfe565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590611bfe565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ca5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f1826108e9565b9050806001600160a01b0316836001600160a01b0316141561075f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c1565b336001600160a01b038216148061077b575061077b8133610e1d565b6107ed5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c1565b6107f78383610f8e565b505050565b600061080760075490565b905090565b6108163382610ffc565b6108325760405162461bcd60e51b81526004016106c190611b3e565b6107f78383836110cb565b6107f783838360405180602001604052806000815250610d0a565b6006546001600160a01b031633146108825760405162461bcd60e51b81526004016106c190611b09565b600a54610100900460ff16156108d25760405162461bcd60e51b81526020600482015260156024820152741b595d1859185d18481a5cc8199a5b985b1a5e9959605a1b60448201526064016106c1565b80516108e59060089060208401906116be565b5050565b6000818152600260205260408120546001600160a01b0316806105b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c1565b60006001600160a01b0382166109cb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c1565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a115760405162461bcd60e51b81526004016106c190611b09565b610a1b600061126b565b565b6006546001600160a01b03163314610a475760405162461bcd60e51b81526004016106c190611b09565b600a805460ff19811660ff90911615179055565b6060600180546105c990611bfe565b6006546001600160a01b03163314610a945760405162461bcd60e51b81526004016106c190611b09565b600a805461ff001916610100179055565b600a5460ff1615610af15760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106c1565b600954336000908152600c602052604090205410610b5c5760405162461bcd60e51b815260206004820152602260248201527f596f7527766520616c7265616479206d696e7465642035207065722077616c6c604482015261195d60f21b60648201526084016106c1565b61014d81610b686107fc565b610b729190611b8f565b1115610bab5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016106c1565b60005b818110156108e557336000908152600c60205260408120805491610bd183611c39565b9190505550610bdf336112bd565b80610be981611c39565b915050610bae565b6001600160a01b038216331415610c4a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610ce05760405162461bcd60e51b81526004016106c190611b09565b600a80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b610d143383610ffc565b610d305760405162461bcd60e51b81526004016106c190611b3e565b610d3c848484846112e2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dc15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c1565b6000610dcb611315565b90506000815111610deb5760405180602001604052806000815250610e16565b80610df584611324565b604051602001610e06929190611a28565b6040516020818303038152906040525b9392505050565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009262010000900481169190841690829063c45527919060240160206040518083038186803b158015610e7057600080fd5b505afa158015610e84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea8919061197d565b6001600160a01b03161415610ec15760019150506105b4565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6006546001600160a01b03163314610f1d5760405162461bcd60e51b81526004016106c190611b09565b6001600160a01b038116610f825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b610f8b8161126b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fc3826108e9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106c1565b6000611080836108e9565b9050806001600160a01b0316846001600160a01b031614806110bb5750836001600160a01b03166110b08461064c565b6001600160a01b0316145b80610eeb5750610eeb8185610e1d565b826001600160a01b03166110de826108e9565b6001600160a01b0316146111465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c1565b6001600160a01b0382166111a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b6111b3600082610f8e565b6001600160a01b03831660009081526003602052604081208054600192906111dc908490611bbb565b90915550506001600160a01b038216600090815260036020526040812080546001929061120a908490611b8f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006112c860075490565b90506112d8600780546001019055565b6108e58282611422565b6112ed8484846110cb565b6112f98484848461143c565b610d3c5760405162461bcd60e51b81526004016106c190611ab7565b6060600880546105c990611bfe565b6060816113485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611372578061135c81611c39565b915061136b9050600a83611ba7565b915061134c565b60008167ffffffffffffffff81111561138d5761138d611caa565b6040519080825280601f01601f1916602001820160405280156113b7576020820181803683370190505b5090505b8415610eeb576113cc600183611bbb565b91506113d9600a86611c54565b6113e4906030611b8f565b60f81b8183815181106113f9576113f9611c94565b60200101906001600160f81b031916908160001a90535061141b600a86611ba7565b94506113bb565b6108e5828260405180602001604052806000815250611549565b60006001600160a01b0384163b1561153e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611480903390899088908890600401611a67565b602060405180830381600087803b15801561149a57600080fd5b505af19250505080156114ca575060408051601f3d908101601f191682019092526114c791810190611960565b60015b611524573d8080156114f8576040519150601f19603f3d011682016040523d82523d6000602084013e6114fd565b606091505b50805161151c5760405162461bcd60e51b81526004016106c190611ab7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610eeb565b506001949350505050565b611553838361157c565b611560600084848461143c565b6107f75760405162461bcd60e51b81526004016106c190611ab7565b6001600160a01b0382166115d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c1565b6000818152600260205260409020546001600160a01b0316156116375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c1565b6001600160a01b0382166000908152600360205260408120805460019290611660908490611b8f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116ca90611bfe565b90600052602060002090601f0160209004810192826116ec5760008555611732565b82601f1061170557805160ff1916838001178555611732565b82800160010185558215611732579182015b82811115611732578251825591602001919060010190611717565b5061173e929150611742565b5090565b5b8082111561173e5760008155600101611743565b600067ffffffffffffffff8084111561177257611772611caa565b604051601f8501601f19908116603f0116810190828211818310171561179a5761179a611caa565b816040528093508581528686860111156117b357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117df57600080fd5b8135610e1681611cc0565b600080604083850312156117fd57600080fd5b823561180881611cc0565b9150602083013561181881611cc0565b809150509250929050565b60008060006060848603121561183857600080fd5b833561184381611cc0565b9250602084013561185381611cc0565b929592945050506040919091013590565b6000806000806080858703121561187a57600080fd5b843561188581611cc0565b9350602085013561189581611cc0565b925060408501359150606085013567ffffffffffffffff8111156118b857600080fd5b8501601f810187136118c957600080fd5b6118d887823560208401611757565b91505092959194509250565b600080604083850312156118f757600080fd5b823561190281611cc0565b91506020830135801515811461181857600080fd5b6000806040838503121561192a57600080fd5b823561193581611cc0565b946020939093013593505050565b60006020828403121561195557600080fd5b8135610e1681611cd5565b60006020828403121561197257600080fd5b8151610e1681611cd5565b60006020828403121561198f57600080fd5b8151610e1681611cc0565b6000602082840312156119ac57600080fd5b813567ffffffffffffffff8111156119c357600080fd5b8201601f810184136119d457600080fd5b610eeb84823560208401611757565b6000602082840312156119f557600080fd5b5035919050565b60008151808452611a14816020860160208601611bd2565b601f01601f19169290920160200192915050565b60008351611a3a818460208801611bd2565b835190830190611a4e818360208801611bd2565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a9a908301846119fc565b9695505050505050565b602081526000610e1660208301846119fc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611ba257611ba2611c68565b500190565b600082611bb657611bb6611c7e565b500490565b600082821015611bcd57611bcd611c68565b500390565b60005b83811015611bed578181015183820152602001611bd5565b83811115610d3c5750506000910152565b600181811c90821680611c1257607f821691505b60208210811415611c3357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c4d57611c4d611c68565b5060010190565b600082611c6357611c63611c7e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8b57600080fd5b6001600160e01b031981168114610f8b57600080fdfea26469706673582212201aa2081a2a8b6d0b45a2ee2fb48fe0924faa0b16c4da8a6e9a11a55d6fce043f64736f6c63430008070033

Deployed Bytecode Sourcemap

37092:2314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24797:305;;;;;;;;;;-1:-1:-1;24797:305:0;;;;;:::i;:::-;;:::i;:::-;;;6495:14:1;;6488:22;6470:41;;6458:2;6443:18;24797:305:0;;;;;;;;25742:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27314:221::-;;;;;;;;;;-1:-1:-1;27314:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5793:32:1;;;5775:51;;5763:2;5748:18;27314:221:0;5629:203:1;26837:411:0;;;;;;;;;;-1:-1:-1;26837:411:0;;;;;:::i;:::-;;:::i;:::-;;38446:101;;;;;;;;;;;;;:::i;:::-;;;14714:25:1;;;14702:2;14687:18;38446:101:0;14568:177:1;28204:339:0;;;;;;;;;;-1:-1:-1;28204:339:0;;;;;:::i;:::-;;:::i;28614:185::-;;;;;;;;;;-1:-1:-1;28614:185:0;;;;;:::i;:::-;;:::i;37307:28::-;;;;;;;;;;;;;;;;39042:167;;;;;;;;;;-1:-1:-1;39042:167:0;;;;;:::i;:::-;;:::i;37512:44::-;;;;;;;;;;-1:-1:-1;37512:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37342:25;;;;;;;;;;-1:-1:-1;37342:25:0;;;;;;;;25436:239;;;;;;;;;;-1:-1:-1;25436:239:0;;;;;:::i;:::-;;:::i;25166:208::-;;;;;;;;;;-1:-1:-1;25166:208:0;;;;;:::i;:::-;;:::i;6432:94::-;;;;;;;;;;;;;:::i;37565:51::-;;;;;;;;;;-1:-1:-1;37565:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;39328:73;;;;;;;;;;;;;:::i;5781:87::-;;;;;;;;;;-1:-1:-1;5854:6:0;;-1:-1:-1;;;;;5854:6:0;5781:87;;25911:104;;;;;;;;;;;;;:::i;38951:85::-;;;;;;;;;;;;;:::i;37819:435::-;;;;;;:::i;:::-;;:::i;27607:295::-;;;;;;;;;;-1:-1:-1;27607:295:0;;;;;:::i;:::-;;:::i;39217:105::-;;;;;;;;;;-1:-1:-1;39217:105:0;;;;;:::i;:::-;;:::i;28870:328::-;;;;;;;;;;-1:-1:-1;28870:328:0;;;;;:::i;:::-;;:::i;26087:344::-;;;;;;;;;;-1:-1:-1;26087:344:0;;;;;:::i;:::-;;:::i;37419:80::-;;;;;;;;;;-1:-1:-1;37419:80:0;;;;;;;-1:-1:-1;;;;;37419:80:0;;;37260:40;;;;;;;;;;;;37297:3;37260:40;;37374:36;;;;;;;;;;-1:-1:-1;37374:36:0;;;;;;;;;;;38562:382;;;;;;;;;;-1:-1:-1;38562:382:0;;;;;:::i;:::-;;:::i;6681:192::-;;;;;;;;;;-1:-1:-1;6681:192:0;;;;;:::i;:::-;;:::i;24797:305::-;24899:4;-1:-1:-1;;;;;;24936:40:0;;-1:-1:-1;;;24936:40:0;;:105;;-1:-1:-1;;;;;;;24993:48:0;;-1:-1:-1;;;24993:48:0;24936:105;:158;;;-1:-1:-1;;;;;;;;;;17876:40:0;;;25058:36;24916:178;24797:305;-1:-1:-1;;24797:305:0:o;25742:100::-;25796:13;25829:5;25822:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25742:100;:::o;27314:221::-;27390:7;30797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30797:16:0;27410:73;;;;-1:-1:-1;;;27410:73:0;;11596:2:1;27410:73:0;;;11578:21:1;11635:2;11615:18;;;11608:30;11674:34;11654:18;;;11647:62;-1:-1:-1;;;11725:18:1;;;11718:42;11777:19;;27410:73:0;;;;;;;;;-1:-1:-1;27503:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27503:24:0;;27314:221::o;26837:411::-;26918:13;26934:23;26949:7;26934:14;:23::i;:::-;26918:39;;26982:5;-1:-1:-1;;;;;26976:11:0;:2;-1:-1:-1;;;;;26976:11:0;;;26968:57;;;;-1:-1:-1;;;26968:57:0;;13950:2:1;26968:57:0;;;13932:21:1;13989:2;13969:18;;;13962:30;14028:34;14008:18;;;14001:62;-1:-1:-1;;;14079:18:1;;;14072:31;14120:19;;26968:57:0;13748:397:1;26968:57:0;4649:10;-1:-1:-1;;;;;27060:21:0;;;;:62;;-1:-1:-1;27085:37:0;27102:5;4649:10;38562:382;:::i;27085:37::-;27038:168;;;;-1:-1:-1;;;27038:168:0;;9639:2:1;27038:168:0;;;9621:21:1;9678:2;9658:18;;;9651:30;9717:34;9697:18;;;9690:62;9788:26;9768:18;;;9761:54;9832:19;;27038:168:0;9437:420:1;27038:168:0;27219:21;27228:2;27232:7;27219:8;:21::i;:::-;26907:341;26837:411;;:::o;38446:101::-;38490:4;38514:25;:15;1373:14;;1281:114;38514:25;38507:32;;38446:101;:::o;28204:339::-;28399:41;4649:10;28432:7;28399:18;:41::i;:::-;28391:103;;;;-1:-1:-1;;;28391:103:0;;;;;;;:::i;:::-;28507:28;28517:4;28523:2;28527:7;28507:9;:28::i;28614:185::-;28752:39;28769:4;28775:2;28779:7;28752:39;;;;;;;;;;;;:16;:39::i;39042:167::-;5854:6;;-1:-1:-1;;;;;5854:6:0;4649:10;6001:23;5993:68;;;;-1:-1:-1;;;5993:68:0;;;;;;;:::i;:::-;39127:16:::1;::::0;::::1;::::0;::::1;;;39126:17;39118:51;;;::::0;-1:-1:-1;;;39118:51:0;;11246:2:1;39118:51:0::1;::::0;::::1;11228:21:1::0;11285:2;11265:18;;;11258:30;-1:-1:-1;;;11304:18:1;;;11297:51;11365:18;;39118:51:0::1;11044:345:1::0;39118:51:0::1;39180:21:::0;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39042:167:::0;:::o;25436:239::-;25508:7;25544:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25544:16:0;25579:19;25571:73;;;;-1:-1:-1;;;25571:73:0;;10475:2:1;25571:73:0;;;10457:21:1;10514:2;10494:18;;;10487:30;10553:34;10533:18;;;10526:62;-1:-1:-1;;;10604:18:1;;;10597:39;10653:19;;25571:73:0;10273:405:1;25166:208:0;25238:7;-1:-1:-1;;;;;25266:19:0;;25258:74;;;;-1:-1:-1;;;25258:74:0;;10064:2:1;25258:74:0;;;10046:21:1;10103:2;10083:18;;;10076:30;10142:34;10122:18;;;10115:62;-1:-1:-1;;;10193:18:1;;;10186:40;10243:19;;25258:74:0;9862:406:1;25258:74:0;-1:-1:-1;;;;;;25350:16:0;;;;;:9;:16;;;;;;;25166:208::o;6432:94::-;5854:6;;-1:-1:-1;;;;;5854:6:0;4649:10;6001:23;5993:68;;;;-1:-1:-1;;;5993:68:0;;;;;;;:::i;:::-;6497:21:::1;6515:1;6497:9;:21::i;:::-;6432:94::o:0;39328:73::-;5854:6;;-1:-1:-1;;;;;5854:6:0;4649:10;6001:23;5993:68;;;;-1:-1:-1;;;5993:68:0;;;;;;;:::i;:::-;39385:6:::1;::::0;;-1:-1:-1;;39375:16:0;::::1;39385:6;::::0;;::::1;39384:7;39375:16;::::0;;39328:73::o;25911:104::-;25967:13;26000:7;25993:14;;;;;:::i;38951:85::-;5854:6;;-1:-1:-1;;;;;5854:6:0;4649:10;6001:23;5993:68;;;;-1:-1:-1;;;5993:68:0;;;;;;;:::i;:::-;39005:16:::1;:23:::0;;-1:-1:-1;;39005:23:0::1;;;::::0;;38951:85::o;37819:435::-;37885:6;;;;37884:7;37876:42;;;;-1:-1:-1;;;37876:42:0;;12773:2:1;37876:42:0;;;12755:21:1;12812:2;12792:18;;;12785:30;-1:-1:-1;;;12831:18:1;;;12824:52;12893:18;;37876:42:0;12571:346:1;37876:42:0;37971:12;;37957:10;37937:31;;;;:19;:31;;;;;;:46;37929:93;;;;-1:-1:-1;;;37929:93:0;;12370:2:1;37929:93:0;;;12352:21:1;12409:2;12389:18;;;12382:30;12448:34;12428:18;;;12421:62;-1:-1:-1;;;12499:18:1;;;12492:32;12541:19;;37929:93:0;12168:398:1;37929:93:0;37297:3;38057:8;38041:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;38033:62;;;;-1:-1:-1;;;38033:62:0;;7367:2:1;38033:62:0;;;7349:21:1;7406:1;7386:18;;;7379:29;-1:-1:-1;;;7424:18:1;;;7417:38;7472:18;;38033:62:0;7165:331:1;38033:62:0;38121:6;38116:131;38137:8;38133:1;:12;38116:131;;;38187:10;38167:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;;;38215:20;38224:10;38215:8;:20::i;:::-;38147:3;;;;:::i;:::-;;;;38116:131;;27607:295;-1:-1:-1;;;;;27710:24:0;;4649:10;27710:24;;27702:62;;;;-1:-1:-1;;;27702:62:0;;8872:2:1;27702:62:0;;;8854:21:1;8911:2;8891:18;;;8884:30;8950:27;8930:18;;;8923:55;8995:18;;27702:62:0;8670:349:1;27702:62:0;4649:10;27777:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27777:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27777:53:0;;;;;;;;;;27846:48;;6470:41:1;;;27777:42:0;;4649:10;27846:48;;6443:18:1;27846:48:0;;;;;;;27607:295;;:::o;39217:105::-;5854:6;;-1:-1:-1;;;;;5854:6:0;4649:10;6001:23;5993:68;;;;-1:-1:-1;;;5993:68:0;;;;;;;:::i;:::-;39287:20:::1;:27:::0;;-1:-1:-1;;;;;39287:27:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;39287:27:0;;::::1;::::0;;;::::1;::::0;;39217:105::o;28870:328::-;29045:41;4649:10;29078:7;29045:18;:41::i;:::-;29037:103;;;;-1:-1:-1;;;29037:103:0;;;;;;;:::i;:::-;29151:39;29165:4;29171:2;29175:7;29184:5;29151:13;:39::i;:::-;28870:328;;;;:::o;26087:344::-;30773:4;30797:16;;;:7;:16;;;;;;26160:13;;-1:-1:-1;;;;;30797:16:0;26186:76;;;;-1:-1:-1;;;26186:76:0;;13534:2:1;26186:76:0;;;13516:21:1;13573:2;13553:18;;;13546:30;13612:34;13592:18;;;13585:62;-1:-1:-1;;;13663:18:1;;;13656:45;13718:19;;26186:76:0;13332:411:1;26186:76:0;26275:21;26299:10;:8;:10::i;:::-;26275:34;;26351:1;26333:7;26327:21;:25;:94;;;;;;;;;;;;;;;;;26379:7;26388:18;:7;:16;:18::i;:::-;26362:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26327:94;26320:101;26087:344;-1:-1:-1;;;26087:344:0:o;38562:382::-;38753:20;;38797:28;;-1:-1:-1;;;38797:28:0;;-1:-1:-1;;;;;5793:32:1;;;38797:28:0;;;5775:51:1;38687:4:0;;38753:20;;;;;;38789:49;;;;38753:20;;38797:21;;5748:18:1;;38797:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38789:49:0;;38785:93;;;38862:4;38855:11;;;;;38785:93;-1:-1:-1;;;;;28094:25:0;;;28070:4;28094:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38897:39;38890:46;38562:382;-1:-1:-1;;;;38562:382:0:o;6681:192::-;5854:6;;-1:-1:-1;;;;;5854:6:0;4649:10;6001:23;5993:68;;;;-1:-1:-1;;;5993:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6770:22:0;::::1;6762:73;;;::::0;-1:-1:-1;;;6762:73:0;;7703:2:1;6762:73:0::1;::::0;::::1;7685:21:1::0;7742:2;7722:18;;;7715:30;7781:34;7761:18;;;7754:62;-1:-1:-1;;;7832:18:1;;;7825:36;7878:19;;6762:73:0::1;7501:402:1::0;6762:73:0::1;6846:19;6856:8;6846:9;:19::i;:::-;6681:192:::0;:::o;34690:174::-;34765:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34765:29:0;-1:-1:-1;;;;;34765:29:0;;;;;;;;:24;;34819:23;34765:24;34819:14;:23::i;:::-;-1:-1:-1;;;;;34810:46:0;;;;;;;;;;;34690:174;;:::o;31002:348::-;31095:4;30797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30797:16:0;31112:73;;;;-1:-1:-1;;;31112:73:0;;9226:2:1;31112:73:0;;;9208:21:1;9265:2;9245:18;;;9238:30;9304:34;9284:18;;;9277:62;-1:-1:-1;;;9355:18:1;;;9348:42;9407:19;;31112:73:0;9024:408:1;31112:73:0;31196:13;31212:23;31227:7;31212:14;:23::i;:::-;31196:39;;31265:5;-1:-1:-1;;;;;31254:16:0;:7;-1:-1:-1;;;;;31254:16:0;;:51;;;;31298:7;-1:-1:-1;;;;;31274:31:0;:20;31286:7;31274:11;:20::i;:::-;-1:-1:-1;;;;;31274:31:0;;31254:51;:87;;;;31309:32;31326:5;31333:7;31309:16;:32::i;33994:578::-;34153:4;-1:-1:-1;;;;;34126:31:0;:23;34141:7;34126:14;:23::i;:::-;-1:-1:-1;;;;;34126:31:0;;34118:85;;;;-1:-1:-1;;;34118:85:0;;13124:2:1;34118:85:0;;;13106:21:1;13163:2;13143:18;;;13136:30;13202:34;13182:18;;;13175:62;-1:-1:-1;;;13253:18:1;;;13246:39;13302:19;;34118:85:0;12922:405:1;34118:85:0;-1:-1:-1;;;;;34222:16:0;;34214:65;;;;-1:-1:-1;;;34214:65:0;;8467:2:1;34214:65:0;;;8449:21:1;8506:2;8486:18;;;8479:30;8545:34;8525:18;;;8518:62;-1:-1:-1;;;8596:18:1;;;8589:34;8640:19;;34214:65:0;8265:400:1;34214:65:0;34396:29;34413:1;34417:7;34396:8;:29::i;:::-;-1:-1:-1;;;;;34438:15:0;;;;;;:9;:15;;;;;:20;;34457:1;;34438:15;:20;;34457:1;;34438:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34469:13:0;;;;;;:9;:13;;;;;:18;;34486:1;;34469:13;:18;;34486:1;;34469:18;:::i;:::-;;;;-1:-1:-1;;34498:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34498:21:0;-1:-1:-1;;;;;34498:21:0;;;;;;;;;34537:27;;34498:16;;34537:27;;;;;;;33994:578;;;:::o;6881:173::-;6956:6;;;-1:-1:-1;;;;;6973:17:0;;;-1:-1:-1;;;;;;6973:17:0;;;;;;;7006:40;;6956:6;;;6973:17;6956:6;;7006:40;;6937:16;;7006:40;6926:128;6881:173;:::o;38262:172::-;38312:15;38330:25;:15;1373:14;;1281:114;38330:25;38312:43;;38366:27;:15;1492:19;;1510:1;1492:19;;;1403:127;38366:27;38404:22;38414:2;38418:7;38404:9;:22::i;30080:315::-;30237:28;30247:4;30253:2;30257:7;30237:9;:28::i;:::-;30284:48;30307:4;30313:2;30317:7;30326:5;30284:22;:48::i;:::-;30276:111;;;;-1:-1:-1;;;30276:111:0;;;;;;;:::i;37706:101::-;37758:13;37791:8;37784:15;;;;;:::i;2185:723::-;2241:13;2462:10;2458:53;;-1:-1:-1;;2489:10:0;;;;;;;;;;;;-1:-1:-1;;;2489:10:0;;;;;2185:723::o;2458:53::-;2536:5;2521:12;2577:78;2584:9;;2577:78;;2610:8;;;;:::i;:::-;;-1:-1:-1;2633:10:0;;-1:-1:-1;2641:2:0;2633:10;;:::i;:::-;;;2577:78;;;2665:19;2697:6;2687:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2687:17:0;;2665:39;;2715:154;2722:10;;2715:154;;2749:11;2759:1;2749:11;;:::i;:::-;;-1:-1:-1;2818:10:0;2826:2;2818:5;:10;:::i;:::-;2805:24;;:2;:24;:::i;:::-;2792:39;;2775:6;2782;2775:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2775:56:0;;;;;;;;-1:-1:-1;2846:11:0;2855:2;2846:11;;:::i;:::-;;;2715:154;;31692:110;31768:26;31778:2;31782:7;31768:26;;;;;;;;;;;;:9;:26::i;35429:799::-;35584:4;-1:-1:-1;;;;;35605:13:0;;8150:20;8198:8;35601:620;;35641:72;;-1:-1:-1;;;35641:72:0;;-1:-1:-1;;;;;35641:36:0;;;;;:72;;4649:10;;35692:4;;35698:7;;35707:5;;35641:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35641:72:0;;;;;;;;-1:-1:-1;;35641:72:0;;;;;;;;;;;;:::i;:::-;;;35637:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35883:13:0;;35879:272;;35926:60;;-1:-1:-1;;;35926:60:0;;;;;;;:::i;35879:272::-;36101:6;36095:13;36086:6;36082:2;36078:15;36071:38;35637:529;-1:-1:-1;;;;;;35764:51:0;-1:-1:-1;;;35764:51:0;;-1:-1:-1;35757:58:0;;35601:620;-1:-1:-1;36205:4:0;35429:799;;;;;;:::o;32029:321::-;32159:18;32165:2;32169:7;32159:5;:18::i;:::-;32210:54;32241:1;32245:2;32249:7;32258:5;32210:22;:54::i;:::-;32188:154;;;;-1:-1:-1;;;32188:154:0;;;;;;;:::i;32686:382::-;-1:-1:-1;;;;;32766:16:0;;32758:61;;;;-1:-1:-1;;;32758:61:0;;10885:2:1;32758:61:0;;;10867:21:1;;;10904:18;;;10897:30;10963:34;10943:18;;;10936:62;11015:18;;32758:61:0;10683:356:1;32758:61:0;30773:4;30797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30797:16:0;:30;32830:58;;;;-1:-1:-1;;;32830:58:0;;8110:2:1;32830:58:0;;;8092:21:1;8149:2;8129:18;;;8122:30;8188;8168:18;;;8161:58;8236:18;;32830:58:0;7908:352:1;32830:58:0;-1:-1:-1;;;;;32959:13:0;;;;;;:9;:13;;;;;:18;;32976:1;;32959:13;:18;;32976:1;;32959:18;:::i;:::-;;;;-1:-1:-1;;32988:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32988:21:0;-1:-1:-1;;;;;32988:21:0;;;;;;;;33027:33;;32988:16;;;33027:33;;32988:16;;33027:33;32686:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:245::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:30;3505:5;3481:30;:::i;3546:249::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3716:9;3710:16;3735:30;3759:5;3735:30;:::i;3800:280::-;3899:6;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;4000:9;3994:16;4019:31;4044:5;4019:31;:::i;4085:450::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4263:9;4250:23;4296:18;4288:6;4285:30;4282:50;;;4328:1;4325;4318:12;4282:50;4351:22;;4404:4;4396:13;;4392:27;-1:-1:-1;4382:55:1;;4433:1;4430;4423:12;4382:55;4456:73;4521:7;4516:2;4503:16;4498:2;4494;4490:11;4456:73;:::i;4540:180::-;4599:6;4652:2;4640:9;4631:7;4627:23;4623:32;4620:52;;;4668:1;4665;4658:12;4620:52;-1:-1:-1;4691:23:1;;4540:180;-1:-1:-1;4540:180:1:o;4725:257::-;4766:3;4804:5;4798:12;4831:6;4826:3;4819:19;4847:63;4903:6;4896:4;4891:3;4887:14;4880:4;4873:5;4869:16;4847:63;:::i;:::-;4964:2;4943:15;-1:-1:-1;;4939:29:1;4930:39;;;;4971:4;4926:50;;4725:257;-1:-1:-1;;4725:257:1:o;4987:637::-;5267:3;5305:6;5299:13;5321:53;5367:6;5362:3;5355:4;5347:6;5343:17;5321:53;:::i;:::-;5437:13;;5396:16;;;;5459:57;5437:13;5396:16;5493:4;5481:17;;5459:57;:::i;:::-;-1:-1:-1;;;5538:20:1;;5567:22;;;5616:1;5605:13;;4987:637;-1:-1:-1;;;;4987:637:1:o;5837:488::-;-1:-1:-1;;;;;6106:15:1;;;6088:34;;6158:15;;6153:2;6138:18;;6131:43;6205:2;6190:18;;6183:34;;;6253:3;6248:2;6233:18;;6226:31;;;6031:4;;6274:45;;6299:19;;6291:6;6274:45;:::i;:::-;6266:53;5837:488;-1:-1:-1;;;;;;5837:488:1:o;6522:219::-;6671:2;6660:9;6653:21;6634:4;6691:44;6731:2;6720:9;6716:18;6708:6;6691:44;:::i;6746:414::-;6948:2;6930:21;;;6987:2;6967:18;;;6960:30;7026:34;7021:2;7006:18;;6999:62;-1:-1:-1;;;7092:2:1;7077:18;;7070:48;7150:3;7135:19;;6746:414::o;11807:356::-;12009:2;11991:21;;;12028:18;;;12021:30;12087:34;12082:2;12067:18;;12060:62;12154:2;12139:18;;11807:356::o;14150:413::-;14352:2;14334:21;;;14391:2;14371:18;;;14364:30;14430:34;14425:2;14410:18;;14403:62;-1:-1:-1;;;14496:2:1;14481:18;;14474:47;14553:3;14538:19;;14150:413::o;14750:128::-;14790:3;14821:1;14817:6;14814:1;14811:13;14808:39;;;14827:18;;:::i;:::-;-1:-1:-1;14863:9:1;;14750:128::o;14883:120::-;14923:1;14949;14939:35;;14954:18;;:::i;:::-;-1:-1:-1;14988:9:1;;14883:120::o;15008:125::-;15048:4;15076:1;15073;15070:8;15067:34;;;15081:18;;:::i;:::-;-1:-1:-1;15118:9:1;;15008:125::o;15138:258::-;15210:1;15220:113;15234:6;15231:1;15228:13;15220:113;;;15310:11;;;15304:18;15291:11;;;15284:39;15256:2;15249:10;15220:113;;;15351:6;15348:1;15345:13;15342:48;;;-1:-1:-1;;15386:1:1;15368:16;;15361:27;15138:258::o;15401:380::-;15480:1;15476:12;;;;15523;;;15544:61;;15598:4;15590:6;15586:17;15576:27;;15544:61;15651:2;15643:6;15640:14;15620:18;15617:38;15614:161;;;15697:10;15692:3;15688:20;15685:1;15678:31;15732:4;15729:1;15722:15;15760:4;15757:1;15750:15;15614:161;;15401:380;;;:::o;15786:135::-;15825:3;-1:-1:-1;;15846:17:1;;15843:43;;;15866:18;;:::i;:::-;-1:-1:-1;15913:1:1;15902:13;;15786:135::o;15926:112::-;15958:1;15984;15974:35;;15989:18;;:::i;:::-;-1:-1:-1;16023:9:1;;15926:112::o;16043:127::-;16104:10;16099:3;16095:20;16092:1;16085:31;16135:4;16132:1;16125:15;16159:4;16156:1;16149:15;16175:127;16236:10;16231:3;16227:20;16224:1;16217:31;16267:4;16264:1;16257:15;16291:4;16288:1;16281:15;16307:127;16368:10;16363:3;16359:20;16356:1;16349:31;16399:4;16396:1;16389:15;16423:4;16420:1;16413:15;16439:127;16500:10;16495:3;16491:20;16488:1;16481:31;16531:4;16528:1;16521:15;16555:4;16552:1;16545:15;16571:131;-1:-1:-1;;;;;16646:31:1;;16636:42;;16626:70;;16692:1;16689;16682:12;16707:131;-1:-1:-1;;;;;;16781:32:1;;16771:43;;16761:71;;16828:1;16825;16818:12

Swarm Source

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