ETH Price: $2,640.74 (-0.08%)

Token

GRUNTZ Ukraine Edition (GRUNTZua)
 

Overview

Max Total Supply

150 GRUNTZua

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 GRUNTZua
0xa868c2f3bbe46d3b03ee8d5c054d9025db3a8066
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:
GRUNTZUkraine

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-03-24
*/

// File: @openzeppelin/contracts/utils/Counters.sol
// SPDX-License-Identifier: GPL-3.0

/*


                                                                                                                                
                                                                                                                                
        GGGGGGGGGGGGGRRRRRRRRRRRRRRRRR   UUUUUUUU     UUUUUUUUNNNNNNNN        NNNNNNNNTTTTTTTTTTTTTTTTTTTTTTTZZZZZZZZZZZZZZZZZZZ
     GGG::::::::::::GR::::::::::::::::R  U::::::U     U::::::UN:::::::N       N::::::NT:::::::::::::::::::::TZ:::::::::::::::::Z
   GG:::::::::::::::GR::::::RRRRRR:::::R U::::::U     U::::::UN::::::::N      N::::::NT:::::::::::::::::::::TZ:::::::::::::::::Z
  G:::::GGGGGGGG::::GRR:::::R     R:::::RUU:::::U     U:::::UUN:::::::::N     N::::::NT:::::TT:::::::TT:::::TZ:::ZZZZZZZZ:::::Z 
 G:::::G       GGGGGG  R::::R     R:::::R U:::::U     U:::::U N::::::::::N    N::::::NTTTTTT  T:::::T  TTTTTTZZZZZ     Z:::::Z  
G:::::G                R::::R     R:::::R U:::::D     D:::::U N:::::::::::N   N::::::N        T:::::T                Z:::::Z    
G:::::G                R::::RRRRRR:::::R  U:::::D     D:::::U N:::::::N::::N  N::::::N        T:::::T               Z:::::Z     
G:::::G    GGGGGGGGGG  R:::::::::::::RR   U:::::D     D:::::U N::::::N N::::N N::::::N        T:::::T              Z:::::Z      
G:::::G    G::::::::G  R::::RRRRRR:::::R  U:::::D     D:::::U N::::::N  N::::N:::::::N        T:::::T             Z:::::Z       
G:::::G    GGGGG::::G  R::::R     R:::::R U:::::D     D:::::U N::::::N   N:::::::::::N        T:::::T            Z:::::Z        
G:::::G        G::::G  R::::R     R:::::R U:::::D     D:::::U N::::::N    N::::::::::N        T:::::T           Z:::::Z         
 G:::::G       G::::G  R::::R     R:::::R U::::::U   U::::::U N::::::N     N:::::::::N        T:::::T        ZZZ:::::Z     ZZZZZ
  G:::::GGGGGGGG::::GRR:::::R     R:::::R U:::::::UUU:::::::U N::::::N      N::::::::N      TT:::::::TT      Z::::::ZZZZZZZZ:::Z
   GG:::::::::::::::GR::::::R     R:::::R  UU:::::::::::::UU  N::::::N       N:::::::N      T:::::::::T      Z:::::::::::::::::Z
     GGG::::::GGG:::GR::::::R     R:::::R    UU:::::::::UU    N::::::N        N::::::N      T:::::::::T      Z:::::::::::::::::Z
        GGGGGG   GGGGRRRRRRRR     RRRRRRR      UUUUUUUUU      NNNNNNNN         NNNNNNN      TTTTTTTTTTT      ZZZZZZZZZZZZZZZZZZZ
                                                                                                                                
                                                                                                                                
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.2;


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

    Counters.Counter private _tokenIdCounter;
    string _baseUri;
    uint public constant MaximumSupply = 150;
    uint public maxPerWallet = 2;
    bool public paused = true;

    
    mapping(address => uint) public addressToFreeMinted;

    constructor() ERC721("GRUNTZ Ukraine Edition", "GRUNTZua") {
    }

    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 2 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 setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }

   /* function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
    */
    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":"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":[],"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":"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"}]

60806040526002600955600a805460ff191660011790553480156200002357600080fd5b50604080518082018252601681527f4752554e545a20556b7261696e652045646974696f6e000000000000000000006020808301918252835180850190945260088452674752554e545a756160c01b908401528151919291620000899160009162000118565b5080516200009f90600190602084019062000118565b505050620000bc620000b6620000c260201b60201c565b620000c6565b620001fb565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012690620001be565b90600052602060002090601f0160209004810192826200014a576000855562000195565b82601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b50620001a3929150620001a7565b5090565b5b80821115620001a35760008155600101620001a8565b600181811c90821680620001d357607f821691505b60208210811415620001f557634e487b7160e01b600052602260045260246000fd5b50919050565b611a7a806200020b6000396000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb46514610391578063b88d4fde146103b1578063c87b56dd146103d1578063d04854e0146103f1578063e985e9c514610406578063f2fde38b1461044f57600080fd5b8063715018a6146102f45780637fc46189146103095780638456cb59146103365780638da5cb5b1461034b57806395d89b4114610369578063a0712d681461037e57600080fd5b806342842e0e1161010857806342842e0e14610244578063453c23101461026457806355f804b31461027a5780635c975abb1461029a5780636352211e146102b457806370a08231146102d457600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610224575b600080fd5b34801561015c57600080fd5b5061017061016b3660046116ce565b61046f565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104c1565b60405161017c9190611812565b3480156101b357600080fd5b506101c76101c2366004611751565b610553565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046116a4565b6105ed565b005b34801561020d57600080fd5b50610216610703565b60405190815260200161017c565b34801561023057600080fd5b506101ff61023f3660046115b0565b610713565b34801561025057600080fd5b506101ff61025f3660046115b0565b610744565b34801561027057600080fd5b5061021660095481565b34801561028657600080fd5b506101ff610295366004611708565b61075f565b3480156102a657600080fd5b50600a546101709060ff1681565b3480156102c057600080fd5b506101c76102cf366004611751565b6107a0565b3480156102e057600080fd5b506102166102ef366004611562565b610817565b34801561030057600080fd5b506101ff61089e565b34801561031557600080fd5b50610216610324366004611562565b600b6020526000908152604090205481565b34801561034257600080fd5b506101ff6108d4565b34801561035757600080fd5b506006546001600160a01b03166101c7565b34801561037557600080fd5b5061019a610912565b6101ff61038c366004611751565b610921565b34801561039d57600080fd5b506101ff6103ac366004611668565b610a6c565b3480156103bd57600080fd5b506101ff6103cc3660046115ec565b610b31565b3480156103dd57600080fd5b5061019a6103ec366004611751565b610b69565b3480156103fd57600080fd5b50610216609681565b34801561041257600080fd5b5061017061042136600461157d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561045b57600080fd5b506101ff61046a366004611562565b610c44565b60006001600160e01b031982166380ac58cd60e01b14806104a057506001600160e01b03198216635b5e139f60e01b145b806104bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104d09061196c565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc9061196c565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f8826107a0565b9050806001600160a01b0316836001600160a01b031614156106665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c8565b336001600160a01b038216148061068257506106828133610421565b6106f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c8565b6106fe8383610cdf565b505050565b600061070e60075490565b905090565b61071d3382610d4d565b6107395760405162461bcd60e51b81526004016105c8906118ac565b6106fe838383610e44565b6106fe83838360405180602001604052806000815250610b31565b6006546001600160a01b031633146107895760405162461bcd60e51b81526004016105c890611877565b805161079c906008906020840190611437565b5050565b6000818152600260205260408120546001600160a01b0316806104bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c8565b60006001600160a01b0382166108825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108c85760405162461bcd60e51b81526004016105c890611877565b6108d26000610fe4565b565b6006546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105c890611877565b600a805460ff19811660ff90911615179055565b6060600180546104d09061196c565b600a5460ff161561096d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016105c8565b600954336000908152600b6020526040902054106109d85760405162461bcd60e51b815260206004820152602260248201527f596f7527766520616c7265616479206d696e7465642032207065722077616c6c604482015261195d60f21b60648201526084016105c8565b6096816109e3610703565b6109ed91906118fd565b1115610a265760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016105c8565b60005b8181101561079c57336000908152600b60205260408120805491610a4c836119a7565b9190505550610a5a33611036565b80610a64816119a7565b915050610a29565b6001600160a01b038216331415610ac55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b3b3383610d4d565b610b575760405162461bcd60e51b81526004016105c8906118ac565b610b638484848461105b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610be85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c8565b6000610bf261108e565b90506000815111610c125760405180602001604052806000815250610c3d565b80610c1c8461109d565b604051602001610c2d929190611796565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610c6e5760405162461bcd60e51b81526004016105c890611877565b6001600160a01b038116610cd35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c8565b610cdc81610fe4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d14826107a0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dc65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c8565b6000610dd1836107a0565b9050806001600160a01b0316846001600160a01b03161480610e0c5750836001600160a01b0316610e0184610553565b6001600160a01b0316145b80610e3c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e57826107a0565b6001600160a01b031614610ebf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c8565b6001600160a01b038216610f215760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c8565b610f2c600082610cdf565b6001600160a01b0383166000908152600360205260408120805460019290610f55908490611929565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f839084906118fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061104160075490565b9050611051600780546001019055565b61079c828261119b565b611066848484610e44565b611072848484846111b5565b610b635760405162461bcd60e51b81526004016105c890611825565b6060600880546104d09061196c565b6060816110c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110eb57806110d5816119a7565b91506110e49050600a83611915565b91506110c5565b60008167ffffffffffffffff81111561110657611106611a18565b6040519080825280601f01601f191660200182016040528015611130576020820181803683370190505b5090505b8415610e3c57611145600183611929565b9150611152600a866119c2565b61115d9060306118fd565b60f81b81838151811061117257611172611a02565b60200101906001600160f81b031916908160001a905350611194600a86611915565b9450611134565b61079c8282604051806020016040528060008152506112c2565b60006001600160a01b0384163b156112b757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111f99033908990889088906004016117d5565b602060405180830381600087803b15801561121357600080fd5b505af1925050508015611243575060408051601f3d908101601f19168201909252611240918101906116eb565b60015b61129d573d808015611271576040519150601f19603f3d011682016040523d82523d6000602084013e611276565b606091505b5080516112955760405162461bcd60e51b81526004016105c890611825565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e3c565b506001949350505050565b6112cc83836112f5565b6112d960008484846111b5565b6106fe5760405162461bcd60e51b81526004016105c890611825565b6001600160a01b03821661134b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c8565b6000818152600260205260409020546001600160a01b0316156113b05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c8565b6001600160a01b03821660009081526003602052604081208054600192906113d99084906118fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114439061196c565b90600052602060002090601f01602090048101928261146557600085556114ab565b82601f1061147e57805160ff19168380011785556114ab565b828001600101855582156114ab579182015b828111156114ab578251825591602001919060010190611490565b506114b79291506114bb565b5090565b5b808211156114b757600081556001016114bc565b600067ffffffffffffffff808411156114eb576114eb611a18565b604051601f8501601f19908116603f0116810190828211818310171561151357611513611a18565b8160405280935085815286868601111561152c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461155d57600080fd5b919050565b60006020828403121561157457600080fd5b610c3d82611546565b6000806040838503121561159057600080fd5b61159983611546565b91506115a760208401611546565b90509250929050565b6000806000606084860312156115c557600080fd5b6115ce84611546565b92506115dc60208501611546565b9150604084013590509250925092565b6000806000806080858703121561160257600080fd5b61160b85611546565b935061161960208601611546565b925060408501359150606085013567ffffffffffffffff81111561163c57600080fd5b8501601f8101871361164d57600080fd5b61165c878235602084016114d0565b91505092959194509250565b6000806040838503121561167b57600080fd5b61168483611546565b91506020830135801515811461169957600080fd5b809150509250929050565b600080604083850312156116b757600080fd5b6116c083611546565b946020939093013593505050565b6000602082840312156116e057600080fd5b8135610c3d81611a2e565b6000602082840312156116fd57600080fd5b8151610c3d81611a2e565b60006020828403121561171a57600080fd5b813567ffffffffffffffff81111561173157600080fd5b8201601f8101841361174257600080fd5b610e3c848235602084016114d0565b60006020828403121561176357600080fd5b5035919050565b60008151808452611782816020860160208601611940565b601f01601f19169290920160200192915050565b600083516117a8818460208801611940565b8351908301906117bc818360208801611940565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118089083018461176a565b9695505050505050565b602081526000610c3d602083018461176a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611910576119106119d6565b500190565b600082611924576119246119ec565b500490565b60008282101561193b5761193b6119d6565b500390565b60005b8381101561195b578181015183820152602001611943565b83811115610b635750506000910152565b600181811c9082168061198057607f821691505b602082108114156119a157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119bb576119bb6119d6565b5060010190565b6000826119d1576119d16119ec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cdc57600080fdfea264697066735822122012aeb9357f9859402e1da4313d1ec348ae50133506b0f0df756881d14ce9ca7564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb46514610391578063b88d4fde146103b1578063c87b56dd146103d1578063d04854e0146103f1578063e985e9c514610406578063f2fde38b1461044f57600080fd5b8063715018a6146102f45780637fc46189146103095780638456cb59146103365780638da5cb5b1461034b57806395d89b4114610369578063a0712d681461037e57600080fd5b806342842e0e1161010857806342842e0e14610244578063453c23101461026457806355f804b31461027a5780635c975abb1461029a5780636352211e146102b457806370a08231146102d457600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806323b872dd14610224575b600080fd5b34801561015c57600080fd5b5061017061016b3660046116ce565b61046f565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104c1565b60405161017c9190611812565b3480156101b357600080fd5b506101c76101c2366004611751565b610553565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046116a4565b6105ed565b005b34801561020d57600080fd5b50610216610703565b60405190815260200161017c565b34801561023057600080fd5b506101ff61023f3660046115b0565b610713565b34801561025057600080fd5b506101ff61025f3660046115b0565b610744565b34801561027057600080fd5b5061021660095481565b34801561028657600080fd5b506101ff610295366004611708565b61075f565b3480156102a657600080fd5b50600a546101709060ff1681565b3480156102c057600080fd5b506101c76102cf366004611751565b6107a0565b3480156102e057600080fd5b506102166102ef366004611562565b610817565b34801561030057600080fd5b506101ff61089e565b34801561031557600080fd5b50610216610324366004611562565b600b6020526000908152604090205481565b34801561034257600080fd5b506101ff6108d4565b34801561035757600080fd5b506006546001600160a01b03166101c7565b34801561037557600080fd5b5061019a610912565b6101ff61038c366004611751565b610921565b34801561039d57600080fd5b506101ff6103ac366004611668565b610a6c565b3480156103bd57600080fd5b506101ff6103cc3660046115ec565b610b31565b3480156103dd57600080fd5b5061019a6103ec366004611751565b610b69565b3480156103fd57600080fd5b50610216609681565b34801561041257600080fd5b5061017061042136600461157d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561045b57600080fd5b506101ff61046a366004611562565b610c44565b60006001600160e01b031982166380ac58cd60e01b14806104a057506001600160e01b03198216635b5e139f60e01b145b806104bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104d09061196c565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc9061196c565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105f8826107a0565b9050806001600160a01b0316836001600160a01b031614156106665760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c8565b336001600160a01b038216148061068257506106828133610421565b6106f45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c8565b6106fe8383610cdf565b505050565b600061070e60075490565b905090565b61071d3382610d4d565b6107395760405162461bcd60e51b81526004016105c8906118ac565b6106fe838383610e44565b6106fe83838360405180602001604052806000815250610b31565b6006546001600160a01b031633146107895760405162461bcd60e51b81526004016105c890611877565b805161079c906008906020840190611437565b5050565b6000818152600260205260408120546001600160a01b0316806104bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c8565b60006001600160a01b0382166108825760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108c85760405162461bcd60e51b81526004016105c890611877565b6108d26000610fe4565b565b6006546001600160a01b031633146108fe5760405162461bcd60e51b81526004016105c890611877565b600a805460ff19811660ff90911615179055565b6060600180546104d09061196c565b600a5460ff161561096d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016105c8565b600954336000908152600b6020526040902054106109d85760405162461bcd60e51b815260206004820152602260248201527f596f7527766520616c7265616479206d696e7465642032207065722077616c6c604482015261195d60f21b60648201526084016105c8565b6096816109e3610703565b6109ed91906118fd565b1115610a265760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016105c8565b60005b8181101561079c57336000908152600b60205260408120805491610a4c836119a7565b9190505550610a5a33611036565b80610a64816119a7565b915050610a29565b6001600160a01b038216331415610ac55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b3b3383610d4d565b610b575760405162461bcd60e51b81526004016105c8906118ac565b610b638484848461105b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610be85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105c8565b6000610bf261108e565b90506000815111610c125760405180602001604052806000815250610c3d565b80610c1c8461109d565b604051602001610c2d929190611796565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610c6e5760405162461bcd60e51b81526004016105c890611877565b6001600160a01b038116610cd35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c8565b610cdc81610fe4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d14826107a0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dc65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c8565b6000610dd1836107a0565b9050806001600160a01b0316846001600160a01b03161480610e0c5750836001600160a01b0316610e0184610553565b6001600160a01b0316145b80610e3c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e57826107a0565b6001600160a01b031614610ebf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105c8565b6001600160a01b038216610f215760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c8565b610f2c600082610cdf565b6001600160a01b0383166000908152600360205260408120805460019290610f55908490611929565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f839084906118fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061104160075490565b9050611051600780546001019055565b61079c828261119b565b611066848484610e44565b611072848484846111b5565b610b635760405162461bcd60e51b81526004016105c890611825565b6060600880546104d09061196c565b6060816110c15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110eb57806110d5816119a7565b91506110e49050600a83611915565b91506110c5565b60008167ffffffffffffffff81111561110657611106611a18565b6040519080825280601f01601f191660200182016040528015611130576020820181803683370190505b5090505b8415610e3c57611145600183611929565b9150611152600a866119c2565b61115d9060306118fd565b60f81b81838151811061117257611172611a02565b60200101906001600160f81b031916908160001a905350611194600a86611915565b9450611134565b61079c8282604051806020016040528060008152506112c2565b60006001600160a01b0384163b156112b757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111f99033908990889088906004016117d5565b602060405180830381600087803b15801561121357600080fd5b505af1925050508015611243575060408051601f3d908101601f19168201909252611240918101906116eb565b60015b61129d573d808015611271576040519150601f19603f3d011682016040523d82523d6000602084013e611276565b606091505b5080516112955760405162461bcd60e51b81526004016105c890611825565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e3c565b506001949350505050565b6112cc83836112f5565b6112d960008484846111b5565b6106fe5760405162461bcd60e51b81526004016105c890611825565b6001600160a01b03821661134b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c8565b6000818152600260205260409020546001600160a01b0316156113b05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c8565b6001600160a01b03821660009081526003602052604081208054600192906113d99084906118fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546114439061196c565b90600052602060002090601f01602090048101928261146557600085556114ab565b82601f1061147e57805160ff19168380011785556114ab565b828001600101855582156114ab579182015b828111156114ab578251825591602001919060010190611490565b506114b79291506114bb565b5090565b5b808211156114b757600081556001016114bc565b600067ffffffffffffffff808411156114eb576114eb611a18565b604051601f8501601f19908116603f0116810190828211818310171561151357611513611a18565b8160405280935085815286868601111561152c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461155d57600080fd5b919050565b60006020828403121561157457600080fd5b610c3d82611546565b6000806040838503121561159057600080fd5b61159983611546565b91506115a760208401611546565b90509250929050565b6000806000606084860312156115c557600080fd5b6115ce84611546565b92506115dc60208501611546565b9150604084013590509250925092565b6000806000806080858703121561160257600080fd5b61160b85611546565b935061161960208601611546565b925060408501359150606085013567ffffffffffffffff81111561163c57600080fd5b8501601f8101871361164d57600080fd5b61165c878235602084016114d0565b91505092959194509250565b6000806040838503121561167b57600080fd5b61168483611546565b91506020830135801515811461169957600080fd5b809150509250929050565b600080604083850312156116b757600080fd5b6116c083611546565b946020939093013593505050565b6000602082840312156116e057600080fd5b8135610c3d81611a2e565b6000602082840312156116fd57600080fd5b8151610c3d81611a2e565b60006020828403121561171a57600080fd5b813567ffffffffffffffff81111561173157600080fd5b8201601f8101841361174257600080fd5b610e3c848235602084016114d0565b60006020828403121561176357600080fd5b5035919050565b60008151808452611782816020860160208601611940565b601f01601f19169290920160200192915050565b600083516117a8818460208801611940565b8351908301906117bc818360208801611940565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118089083018461176a565b9695505050505050565b602081526000610c3d602083018461176a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611910576119106119d6565b500190565b600082611924576119246119ec565b500490565b60008282101561193b5761193b6119d6565b500390565b60005b8381101561195b578181015183820152602001611943565b83811115610b635750506000910152565b600181811c9082168061198057607f821691505b602082108114156119a157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119bb576119bb6119d6565b5060010190565b6000826119d1576119d16119ec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cdc57600080fdfea264697066735822122012aeb9357f9859402e1da4313d1ec348ae50133506b0f0df756881d14ce9ca7564736f6c63430008070033

Deployed Bytecode Sourcemap

39418:1594:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27251:305;;;;;;;;;;-1:-1:-1;27251:305:0;;;;;:::i;:::-;;:::i;:::-;;;5813:14:1;;5806:22;5788:41;;5776:2;5761:18;27251:305:0;;;;;;;;28196:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29768:221::-;;;;;;;;;;-1:-1:-1;29768:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5111:32:1;;;5093:51;;5081:2;5066:18;29768:221:0;4947:203:1;29291:411:0;;;;;;;;;;-1:-1:-1;29291:411:0;;;;;:::i;:::-;;:::i;:::-;;40577:101;;;;;;;;;;;;;:::i;:::-;;;13682:25:1;;;13670:2;13655:18;40577:101:0;13536:177:1;30658:339:0;;;;;;;;;;-1:-1:-1;30658:339:0;;;;;:::i;:::-;;:::i;31068:185::-;;;;;;;;;;-1:-1:-1;31068:185:0;;;;;:::i;:::-;;:::i;39627:28::-;;;;;;;;;;;;;;;;40690:105;;;;;;;;;;-1:-1:-1;40690:105:0;;;;;:::i;:::-;;:::i;39662:25::-;;;;;;;;;;-1:-1:-1;39662:25:0;;;;;;;;27890:239;;;;;;;;;;-1:-1:-1;27890:239:0;;;;;:::i;:::-;;:::i;27620:208::-;;;;;;;;;;-1:-1:-1;27620:208:0;;;;;:::i;:::-;;:::i;8886:94::-;;;;;;;;;;;;;:::i;39702:51::-;;;;;;;;;;-1:-1:-1;39702:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;40936:73;;;;;;;;;;;;;:::i;8235:87::-;;;;;;;;;;-1:-1:-1;8308:6:0;;-1:-1:-1;;;;;8308:6:0;8235:87;;28365:104;;;;;;;;;;;;;:::i;39950:435::-;;;;;;:::i;:::-;;:::i;30061:295::-;;;;;;;;;;-1:-1:-1;30061:295:0;;;;;:::i;:::-;;:::i;31324:328::-;;;;;;;;;;-1:-1:-1;31324:328:0;;;;;:::i;:::-;;:::i;28541:344::-;;;;;;;;;;-1:-1:-1;28541:344:0;;;;;:::i;:::-;;:::i;39580:40::-;;;;;;;;;;;;39617:3;39580:40;;30427:164;;;;;;;;;;-1:-1:-1;30427:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30548:25:0;;;30524:4;30548:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30427:164;9135:192;;;;;;;;;;-1:-1:-1;9135:192:0;;;;;:::i;:::-;;:::i;27251:305::-;27353:4;-1:-1:-1;;;;;;27390:40:0;;-1:-1:-1;;;27390:40:0;;:105;;-1:-1:-1;;;;;;;27447:48:0;;-1:-1:-1;;;27447:48:0;27390:105;:158;;;-1:-1:-1;;;;;;;;;;20330:40:0;;;27512:36;27370:178;27251:305;-1:-1:-1;;27251:305:0:o;28196:100::-;28250:13;28283:5;28276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28196:100;:::o;29768:221::-;29844:7;33251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33251:16:0;29864:73;;;;-1:-1:-1;;;29864:73:0;;10967:2:1;29864:73:0;;;10949:21:1;11006:2;10986:18;;;10979:30;11045:34;11025:18;;;11018:62;-1:-1:-1;;;11096:18:1;;;11089:42;11148:19;;29864:73:0;;;;;;;;;-1:-1:-1;29957:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29957:24:0;;29768:221::o;29291:411::-;29372:13;29388:23;29403:7;29388:14;:23::i;:::-;29372:39;;29436:5;-1:-1:-1;;;;;29430:11:0;:2;-1:-1:-1;;;;;29430:11:0;;;29422:57;;;;-1:-1:-1;;;29422:57:0;;12918:2:1;29422:57:0;;;12900:21:1;12957:2;12937:18;;;12930:30;12996:34;12976:18;;;12969:62;-1:-1:-1;;;13047:18:1;;;13040:31;13088:19;;29422:57:0;12716:397:1;29422:57:0;7103:10;-1:-1:-1;;;;;29514:21:0;;;;:62;;-1:-1:-1;29539:37:0;29556:5;7103:10;30427:164;:::i;29539:37::-;29492:168;;;;-1:-1:-1;;;29492:168:0;;8957:2:1;29492:168:0;;;8939:21:1;8996:2;8976:18;;;8969:30;9035:34;9015:18;;;9008:62;9106:26;9086:18;;;9079:54;9150:19;;29492:168:0;8755:420:1;29492:168:0;29673:21;29682:2;29686:7;29673:8;:21::i;:::-;29361:341;29291:411;;:::o;40577:101::-;40621:4;40645:25;:15;3827:14;;3735:114;40645:25;40638:32;;40577:101;:::o;30658:339::-;30853:41;7103:10;30886:7;30853:18;:41::i;:::-;30845:103;;;;-1:-1:-1;;;30845:103:0;;;;;;;:::i;:::-;30961:28;30971:4;30977:2;30981:7;30961:9;:28::i;31068:185::-;31206:39;31223:4;31229:2;31233:7;31206:39;;;;;;;;;;;;:16;:39::i;40690:105::-;8308:6;;-1:-1:-1;;;;;8308:6:0;7103:10;8455:23;8447:68;;;;-1:-1:-1;;;8447:68:0;;;;;;;:::i;:::-;40766:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40690:105:::0;:::o;27890:239::-;27962:7;27998:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27998:16:0;28033:19;28025:73;;;;-1:-1:-1;;;28025:73:0;;10196:2:1;28025:73:0;;;10178:21:1;10235:2;10215:18;;;10208:30;10274:34;10254:18;;;10247:62;-1:-1:-1;;;10325:18:1;;;10318:39;10374:19;;28025:73:0;9994:405:1;27620:208:0;27692:7;-1:-1:-1;;;;;27720:19:0;;27712:74;;;;-1:-1:-1;;;27712:74:0;;9785:2:1;27712:74:0;;;9767:21:1;9824:2;9804:18;;;9797:30;9863:34;9843:18;;;9836:62;-1:-1:-1;;;9914:18:1;;;9907:40;9964:19;;27712:74:0;9583:406:1;27712:74:0;-1:-1:-1;;;;;;27804:16:0;;;;;:9;:16;;;;;;;27620:208::o;8886:94::-;8308:6;;-1:-1:-1;;;;;8308:6:0;7103:10;8455:23;8447:68;;;;-1:-1:-1;;;8447:68:0;;;;;;;:::i;:::-;8951:21:::1;8969:1;8951:9;:21::i;:::-;8886:94::o:0;40936:73::-;8308:6;;-1:-1:-1;;;;;8308:6:0;7103:10;8455:23;8447:68;;;;-1:-1:-1;;;8447:68:0;;;;;;;:::i;:::-;40993:6:::1;::::0;;-1:-1:-1;;40983:16:0;::::1;40993:6;::::0;;::::1;40992:7;40983:16;::::0;;40936:73::o;28365:104::-;28421:13;28454:7;28447:14;;;;;:::i;39950:435::-;40016:6;;;;40015:7;40007:42;;;;-1:-1:-1;;;40007:42:0;;11741:2:1;40007:42:0;;;11723:21:1;11780:2;11760:18;;;11753:30;-1:-1:-1;;;11799:18:1;;;11792:52;11861:18;;40007:42:0;11539:346:1;40007:42:0;40102:12;;40088:10;40068:31;;;;:19;:31;;;;;;:46;40060:93;;;;-1:-1:-1;;;40060:93:0;;9382:2:1;40060:93:0;;;9364:21:1;9421:2;9401:18;;;9394:30;9460:34;9440:18;;;9433:62;-1:-1:-1;;;9511:18:1;;;9504:32;9553:19;;40060:93:0;9180:398:1;40060:93:0;39617:3;40188:8;40172:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;40164:62;;;;-1:-1:-1;;;40164:62:0;;6685:2:1;40164:62:0;;;6667:21:1;6724:1;6704:18;;;6697:29;-1:-1:-1;;;6742:18:1;;;6735:38;6790:18;;40164:62:0;6483:331:1;40164:62:0;40252:6;40247:131;40268:8;40264:1;:12;40247:131;;;40318:10;40298:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;;;40346:20;40355:10;40346:8;:20::i;:::-;40278:3;;;;:::i;:::-;;;;40247:131;;30061:295;-1:-1:-1;;;;;30164:24:0;;7103:10;30164:24;;30156:62;;;;-1:-1:-1;;;30156:62:0;;8190:2:1;30156:62:0;;;8172:21:1;8229:2;8209:18;;;8202:30;8268:27;8248:18;;;8241:55;8313:18;;30156:62:0;7988:349:1;30156:62:0;7103:10;30231:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30231:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30231:53:0;;;;;;;;;;30300:48;;5788:41:1;;;30231:42:0;;7103:10;30300:48;;5761:18:1;30300:48:0;;;;;;;30061:295;;:::o;31324:328::-;31499:41;7103:10;31532:7;31499:18;:41::i;:::-;31491:103;;;;-1:-1:-1;;;31491:103:0;;;;;;;:::i;:::-;31605:39;31619:4;31625:2;31629:7;31638:5;31605:13;:39::i;:::-;31324:328;;;;:::o;28541:344::-;33227:4;33251:16;;;:7;:16;;;;;;28614:13;;-1:-1:-1;;;;;33251:16:0;28640:76;;;;-1:-1:-1;;;28640:76:0;;12502:2:1;28640:76:0;;;12484:21:1;12541:2;12521:18;;;12514:30;12580:34;12560:18;;;12553:62;-1:-1:-1;;;12631:18:1;;;12624:45;12686:19;;28640:76:0;12300:411:1;28640:76:0;28729:21;28753:10;:8;:10::i;:::-;28729:34;;28805:1;28787:7;28781:21;:25;:94;;;;;;;;;;;;;;;;;28833:7;28842:18;:7;:16;:18::i;:::-;28816:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28781:94;28774:101;28541:344;-1:-1:-1;;;28541:344:0:o;9135:192::-;8308:6;;-1:-1:-1;;;;;8308:6:0;7103:10;8455:23;8447:68;;;;-1:-1:-1;;;8447:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9224:22:0;::::1;9216:73;;;::::0;-1:-1:-1;;;9216:73:0;;7021:2:1;9216:73:0::1;::::0;::::1;7003:21:1::0;7060:2;7040:18;;;7033:30;7099:34;7079:18;;;7072:62;-1:-1:-1;;;7150:18:1;;;7143:36;7196:19;;9216:73:0::1;6819:402:1::0;9216:73:0::1;9300:19;9310:8;9300:9;:19::i;:::-;9135:192:::0;:::o;37144:174::-;37219:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37219:29:0;-1:-1:-1;;;;;37219:29:0;;;;;;;;:24;;37273:23;37219:24;37273:14;:23::i;:::-;-1:-1:-1;;;;;37264:46:0;;;;;;;;;;;37144:174;;:::o;33456:348::-;33549:4;33251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33251:16:0;33566:73;;;;-1:-1:-1;;;33566:73:0;;8544:2:1;33566:73:0;;;8526:21:1;8583:2;8563:18;;;8556:30;8622:34;8602:18;;;8595:62;-1:-1:-1;;;8673:18:1;;;8666:42;8725:19;;33566:73:0;8342:408:1;33566:73:0;33650:13;33666:23;33681:7;33666:14;:23::i;:::-;33650:39;;33719:5;-1:-1:-1;;;;;33708:16:0;:7;-1:-1:-1;;;;;33708:16:0;;:51;;;;33752:7;-1:-1:-1;;;;;33728:31:0;:20;33740:7;33728:11;:20::i;:::-;-1:-1:-1;;;;;33728:31:0;;33708:51;:87;;;-1:-1:-1;;;;;;30548:25:0;;;30524:4;30548:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33763:32;33700:96;33456:348;-1:-1:-1;;;;33456:348:0:o;36448:578::-;36607:4;-1:-1:-1;;;;;36580:31:0;:23;36595:7;36580:14;:23::i;:::-;-1:-1:-1;;;;;36580:31:0;;36572:85;;;;-1:-1:-1;;;36572:85:0;;12092:2:1;36572:85:0;;;12074:21:1;12131:2;12111:18;;;12104:30;12170:34;12150:18;;;12143:62;-1:-1:-1;;;12221:18:1;;;12214:39;12270:19;;36572:85:0;11890:405:1;36572:85:0;-1:-1:-1;;;;;36676:16:0;;36668:65;;;;-1:-1:-1;;;36668:65:0;;7785:2:1;36668:65:0;;;7767:21:1;7824:2;7804:18;;;7797:30;7863:34;7843:18;;;7836:62;-1:-1:-1;;;7914:18:1;;;7907:34;7958:19;;36668:65:0;7583:400:1;36668:65:0;36850:29;36867:1;36871:7;36850:8;:29::i;:::-;-1:-1:-1;;;;;36892:15:0;;;;;;:9;:15;;;;;:20;;36911:1;;36892:15;:20;;36911:1;;36892:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36923:13:0;;;;;;:9;:13;;;;;:18;;36940:1;;36923:13;:18;;36940:1;;36923:18;:::i;:::-;;;;-1:-1:-1;;36952:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36952:21:0;-1:-1:-1;;;;;36952:21:0;;;;;;;;;36991:27;;36952:16;;36991:27;;;;;;;36448:578;;;:::o;9335:173::-;9410:6;;;-1:-1:-1;;;;;9427:17:0;;;-1:-1:-1;;;;;;9427:17:0;;;;;;;9460:40;;9410:6;;;9427:17;9410:6;;9460:40;;9391:16;;9460:40;9380:128;9335:173;:::o;40393:172::-;40443:15;40461:25;:15;3827:14;;3735:114;40461:25;40443:43;;40497:27;:15;3946:19;;3964:1;3946:19;;;3857:127;40497:27;40535:22;40545:2;40549:7;40535:9;:22::i;32534:315::-;32691:28;32701:4;32707:2;32711:7;32691:9;:28::i;:::-;32738:48;32761:4;32767:2;32771:7;32780:5;32738:22;:48::i;:::-;32730:111;;;;-1:-1:-1;;;32730:111:0;;;;;;;:::i;39837:101::-;39889:13;39922:8;39915:15;;;;;:::i;4639:723::-;4695:13;4916:10;4912:53;;-1:-1:-1;;4943:10:0;;;;;;;;;;;;-1:-1:-1;;;4943:10:0;;;;;4639:723::o;4912:53::-;4990:5;4975:12;5031:78;5038:9;;5031:78;;5064:8;;;;:::i;:::-;;-1:-1:-1;5087:10:0;;-1:-1:-1;5095:2:0;5087:10;;:::i;:::-;;;5031:78;;;5119:19;5151:6;5141:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5141:17:0;;5119:39;;5169:154;5176:10;;5169:154;;5203:11;5213:1;5203:11;;:::i;:::-;;-1:-1:-1;5272:10:0;5280:2;5272:5;:10;:::i;:::-;5259:24;;:2;:24;:::i;:::-;5246:39;;5229:6;5236;5229:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5229:56:0;;;;;;;;-1:-1:-1;5300:11:0;5309:2;5300:11;;:::i;:::-;;;5169:154;;34146:110;34222:26;34232:2;34236:7;34222:26;;;;;;;;;;;;:9;:26::i;37883:799::-;38038:4;-1:-1:-1;;;;;38059:13:0;;10604:20;10652:8;38055:620;;38095:72;;-1:-1:-1;;;38095:72:0;;-1:-1:-1;;;;;38095:36:0;;;;;:72;;7103:10;;38146:4;;38152:7;;38161:5;;38095:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38095:72:0;;;;;;;;-1:-1:-1;;38095:72:0;;;;;;;;;;;;:::i;:::-;;;38091:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38337:13:0;;38333:272;;38380:60;;-1:-1:-1;;;38380:60:0;;;;;;;:::i;38333:272::-;38555:6;38549:13;38540:6;38536:2;38532:15;38525:38;38091:529;-1:-1:-1;;;;;;38218:51:0;-1:-1:-1;;;38218:51:0;;-1:-1:-1;38211:58:0;;38055:620;-1:-1:-1;38659:4:0;37883:799;;;;;;:::o;34483:321::-;34613:18;34619:2;34623:7;34613:5;:18::i;:::-;34664:54;34695:1;34699:2;34703:7;34712:5;34664:22;:54::i;:::-;34642:154;;;;-1:-1:-1;;;34642:154:0;;;;;;;:::i;35140:382::-;-1:-1:-1;;;;;35220:16:0;;35212:61;;;;-1:-1:-1;;;35212:61:0;;10606:2:1;35212:61:0;;;10588:21:1;;;10625:18;;;10618:30;10684:34;10664:18;;;10657:62;10736:18;;35212:61:0;10404:356:1;35212:61:0;33227:4;33251:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33251:16:0;:30;35284:58;;;;-1:-1:-1;;;35284:58:0;;7428:2:1;35284:58:0;;;7410:21:1;7467:2;7447:18;;;7440:30;7506;7486:18;;;7479:58;7554:18;;35284:58:0;7226:352:1;35284:58:0;-1:-1:-1;;;;;35413:13:0;;;;;;:9;:13;;;;;:18;;35430:1;;35413:13;:18;;35430:1;;35413:18;:::i;:::-;;;;-1:-1:-1;;35442:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35442:21:0;-1:-1:-1;;;;;35442:21:0;;;;;;;;35481:33;;35442:16;;;35481:33;;35442:16;;35481:33;35140: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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:637::-;4585:3;4623:6;4617:13;4639:53;4685:6;4680:3;4673:4;4665:6;4661:17;4639:53;:::i;:::-;4755:13;;4714:16;;;;4777:57;4755:13;4714:16;4811:4;4799:17;;4777:57;:::i;:::-;-1:-1:-1;;;4856:20:1;;4885:22;;;4934:1;4923:13;;4305:637;-1:-1:-1;;;;4305:637:1:o;5155:488::-;-1:-1:-1;;;;;5424:15:1;;;5406:34;;5476:15;;5471:2;5456:18;;5449:43;5523:2;5508:18;;5501:34;;;5571:3;5566:2;5551:18;;5544:31;;;5349:4;;5592:45;;5617:19;;5609:6;5592:45;:::i;:::-;5584:53;5155:488;-1:-1:-1;;;;;;5155:488:1:o;5840:219::-;5989:2;5978:9;5971:21;5952:4;6009:44;6049:2;6038:9;6034:18;6026:6;6009:44;:::i;6064:414::-;6266:2;6248:21;;;6305:2;6285:18;;;6278:30;6344:34;6339:2;6324:18;;6317:62;-1:-1:-1;;;6410:2:1;6395:18;;6388:48;6468:3;6453:19;;6064:414::o;11178:356::-;11380:2;11362:21;;;11399:18;;;11392:30;11458:34;11453:2;11438:18;;11431:62;11525:2;11510:18;;11178:356::o;13118:413::-;13320:2;13302:21;;;13359:2;13339:18;;;13332:30;13398:34;13393:2;13378:18;;13371:62;-1:-1:-1;;;13464:2:1;13449:18;;13442:47;13521:3;13506:19;;13118:413::o;13718:128::-;13758:3;13789:1;13785:6;13782:1;13779:13;13776:39;;;13795:18;;:::i;:::-;-1:-1:-1;13831:9:1;;13718:128::o;13851:120::-;13891:1;13917;13907:35;;13922:18;;:::i;:::-;-1:-1:-1;13956:9:1;;13851:120::o;13976:125::-;14016:4;14044:1;14041;14038:8;14035:34;;;14049:18;;:::i;:::-;-1:-1:-1;14086:9:1;;13976:125::o;14106:258::-;14178:1;14188:113;14202:6;14199:1;14196:13;14188:113;;;14278:11;;;14272:18;14259:11;;;14252:39;14224:2;14217:10;14188:113;;;14319:6;14316:1;14313:13;14310:48;;;-1:-1:-1;;14354:1:1;14336:16;;14329:27;14106:258::o;14369:380::-;14448:1;14444:12;;;;14491;;;14512:61;;14566:4;14558:6;14554:17;14544:27;;14512:61;14619:2;14611:6;14608:14;14588:18;14585:38;14582:161;;;14665:10;14660:3;14656:20;14653:1;14646:31;14700:4;14697:1;14690:15;14728:4;14725:1;14718:15;14582:161;;14369:380;;;:::o;14754:135::-;14793:3;-1:-1:-1;;14814:17:1;;14811:43;;;14834:18;;:::i;:::-;-1:-1:-1;14881:1:1;14870:13;;14754:135::o;14894:112::-;14926:1;14952;14942:35;;14957:18;;:::i;:::-;-1:-1:-1;14991:9:1;;14894:112::o;15011:127::-;15072:10;15067:3;15063:20;15060:1;15053:31;15103:4;15100:1;15093:15;15127:4;15124:1;15117:15;15143:127;15204:10;15199:3;15195:20;15192:1;15185:31;15235:4;15232:1;15225:15;15259:4;15256:1;15249:15;15275:127;15336:10;15331:3;15327:20;15324:1;15317:31;15367:4;15364:1;15357:15;15391:4;15388:1;15381:15;15407:127;15468:10;15463:3;15459:20;15456:1;15449:31;15499:4;15496:1;15489:15;15523:4;15520:1;15513:15;15539:131;-1:-1:-1;;;;;;15613:32:1;;15603:43;;15593:71;;15660:1;15657;15650:12

Swarm Source

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