Token ChunkMunkz

Overview ERC721

Total Supply:
300 CKMZ

Holders:
83 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ChunkMunkz

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 2023-01-03
*/

// SPDX-License-Identifier: MIT
// ChunkMunkz by xrpant - Modified from Campfire's Leopard Queens contract

// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.7.0) (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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.6.0) (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())) : "";
    }

    /**
     * @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 overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: contracts/Rillaz.sol

pragma solidity ^0.8.1;

contract KindaRandom {
  uint256 private _index = 0;
  uint256 private _supply;
  mapping(uint256 => uint256) _ids;

  constructor(uint256 supply_) {
    _supply = supply_;
  }

  function generateKindaRandomID(uint256 randomIndex) internal virtual returns (uint256) {
    uint256 remainder = _supply - _index;
    uint256 available;
    uint256 result;

    if (_ids[remainder - 1] == 0) {
      available = remainder - 1;
    } else {
      available = _ids[remainder - 1];
    }

    if (_ids[randomIndex] == 0) {
      result = randomIndex;
      _ids[randomIndex] = available;
    } else {
      result = _ids[randomIndex];
      _ids[randomIndex] = available;
    }

    _index++;

    return result;
  }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

contract ChunkMunkz is ERC721, Ownable, ReentrancyGuard, KindaRandom {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private _tokenIds;

    string private _customBaseURI;
    string private _customURIExtension;
    uint256 private _maxMintable;
    uint256 private _royaltyAmount;
    uint256 private _maxMintPerTx;
    uint256 private _maxMintPerAddress;
    uint256 private _price;

    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    bool private _mintActive;

    mapping (address => uint8) addressMinted;
    
    constructor() ERC721("ChunkMunkz", "CKMZ") KindaRandom(300) {
        _customBaseURI = "ipfs://bafybeiao2zflrnz62avfsmvsoefhb5vh5rpw3j2lbp3qtmrx63d36lfddm/";
        _customURIExtension = ".json";
        _maxMintable = 300; 
        _royaltyAmount = 500;
        _mintActive = false;
        _maxMintPerTx = 5;
        _maxMintPerAddress = 5;
        _price = 0.1 ether;

        _privateMint(msg.sender);
    }

    function setBaseURI(string memory customBaseURI_) public onlyOwner {
        _customBaseURI = customBaseURI_;
    }

    function setBaseExtension(string memory customURIExtension_) public onlyOwner {
        _customURIExtension = customURIExtension_;
    }

    function flipMintActive() public onlyOwner {
        _mintActive = !_mintActive;
    }

    function setRoyaltyAmount(uint256 royaltyAmount_) public onlyOwner {
        _royaltyAmount = royaltyAmount_;
    }

    function mint(uint256 quantity) public payable nonReentrant {
        require(_mintActive, "Minting is not active.");
        require(quantity <= _maxMintPerTx &&
                (addressMinted[msg.sender] + quantity) <= _maxMintPerAddress, "Cannot mint that many.");
        require(msg.value == (quantity * _price), "Incorrect amount of AVAX sent.");

        payable(owner()).transfer(msg.value);

        for(uint i = 0; i < quantity; i++) {
            _privateMint(msg.sender);
        }

        addressMinted[msg.sender] += uint8(quantity);
    }


    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function _privateMint(address recipient) private {
        uint256 randomish = uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp))) % (_maxMintable - _tokenIds.current());

        _tokenIds.increment();
        require(_tokenIds.current() <= _maxMintable, "Project is finished minting.");

        uint256 newItemId = generateKindaRandomID(randomish) + 1; // metadata is 1 indexed

        _mint(recipient, newItemId);
    }

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

    function tokenURI(uint256 _tokenId) public view override returns(string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string( abi.encodePacked(_baseURI(), _tokenId.toString(), _customURIExtension) );
    }

    function royaltyInfo(
        uint256 , 
        uint256 _salePrice
    ) external view returns (address receiver, uint256 royaltyAmount) {
        return (owner(), ((_salePrice * _royaltyAmount) / 10000));
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) {
        if (interfaceId == _INTERFACE_ID_ERC2981) {
            return true;
        }
        return super.supportsInterface(interfaceId);
    } 

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"customURIExtension_","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"royaltyAmount_","type":"uint256"}],"name":"setRoyaltyAmount","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"}]

608060405260006008553480156200001657600080fd5b50604080518082018252600a81526921b43ab735a6bab735bd60b11b60208083019182528351808501909452600484526321a5a6ad60e11b90840152815161012c9391620000689160009190620004dd565b5080516200007e906001906020840190620004dd565b5050506200009b620000956200013f60201b60201c565b62000143565b600160075560095560408051608081019091526043808252620023f960208301398051620000d291600c91602090910190620004dd565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200010191600d91620004dd565b5061012c600e556101f4600f556013805460ff191690556005601081905560115567016345785d8a0000601255620001393362000195565b6200064c565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001ae600b620002ab60201b62000c901760201c565b600e54620001bd91906200059e565b6040805144602082015242918101919091526060016040516020818303038152906040528051906020012060001c620001f7919062000613565b905062000210600b620002af60201b62000c941760201c565b600e546200022a600b620002ab60201b62000c901760201c565b11156200027e5760405162461bcd60e51b815260206004820152601c60248201527f50726f6a6563742069732066696e6973686564206d696e74696e672e0000000060448201526064015b60405180910390fd5b60006200028b82620002b8565b6200029890600162000583565b9050620002a6838262000395565b505050565b5490565b80546001019055565b600080600854600954620002cd91906200059e565b9050600080600a81620002e26001866200059e565b815260200190815260200160002054600014156200030f57620003076001846200059e565b915062000332565b600a6000620003206001866200059e565b81526020019081526020016000205491505b6000858152600a60205260409020546200035f57506000848152600a602052604090208190558362000375565b506000848152600a602052604090208054908290555b600880549060006200038783620005f5565b909155509095945050505050565b6001600160a01b038216620003ed5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000275565b6000818152600260205260409020546001600160a01b031615620004545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000275565b6001600160a01b03821660009081526003602052604081208054600192906200047f90849062000583565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620004eb90620005b8565b90600052602060002090601f0160209004810192826200050f57600085556200055a565b82601f106200052a57805160ff19168380011785556200055a565b828001600101855582156200055a579182015b828111156200055a5782518255916020019190600101906200053d565b50620005689291506200056c565b5090565b5b808211156200056857600081556001016200056d565b6000821982111562000599576200059962000636565b500190565b600082821015620005b357620005b362000636565b500390565b600181811c90821680620005cd57607f821691505b60208210811415620005ef57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200060c576200060c62000636565b5060010190565b6000826200063157634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b611d9d806200065c6000396000f3fe6080604052600436106101405760003560e01c806370a08231116100b6578063b5bfcfa81161006f578063b5bfcfa814610393578063b88d4fde146103a8578063c87b56dd146103c8578063da3ef23f146103e8578063e985e9c514610408578063f2fde38b1461045157600080fd5b806370a08231146102f8578063715018a6146103185780638da5cb5b1461032d57806395d89b411461034b578063a0712d6814610360578063a22cb4651461037357600080fd5b806323b872dd1161010857806323b872dd146102195780632a55205a1461023957806342842e0e146102785780634f07de091461029857806355f804b3146102b85780636352211e146102d857600080fd5b806301ffc9a71461014557806306fdde031461017a578063081812fc1461019c578063095ea7b3146101d457806318160ddd146101f6575b600080fd5b34801561015157600080fd5b5061016561016036600461193b565b610471565b60405190151581526020015b60405180910390f35b34801561018657600080fd5b5061018f6104a3565b6040516101719190611b26565b3480156101a857600080fd5b506101bc6101b73660046119be565b610535565b6040516001600160a01b039091168152602001610171565b3480156101e057600080fd5b506101f46101ef366004611911565b6105cf565b005b34801561020257600080fd5b5061020b6106e5565b604051908152602001610171565b34801561022557600080fd5b506101f461023436600461181d565b6106f5565b34801561024557600080fd5b506102596102543660046119d7565b610726565b604080516001600160a01b039093168352602083019190915201610171565b34801561028457600080fd5b506101f461029336600461181d565b610761565b3480156102a457600080fd5b506101f46102b33660046119be565b61077c565b3480156102c457600080fd5b506101f46102d3366004611975565b610789565b3480156102e457600080fd5b506101bc6102f33660046119be565b6107a8565b34801561030457600080fd5b5061020b6103133660046117c8565b61081f565b34801561032457600080fd5b506101f46108a6565b34801561033957600080fd5b506006546001600160a01b03166101bc565b34801561035757600080fd5b5061018f6108ba565b6101f461036e3660046119be565b6108c9565b34801561037f57600080fd5b506101f461038e3660046118d5565b610ae3565b34801561039f57600080fd5b506101f4610aee565b3480156103b457600080fd5b506101f46103c3366004611859565b610b0a565b3480156103d457600080fd5b5061018f6103e33660046119be565b610b42565b3480156103f457600080fd5b506101f4610403366004611975565b610bfc565b34801561041457600080fd5b506101656104233660046117ea565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561045d57600080fd5b506101f461046c3660046117c8565b610c17565b60006001600160e01b0319821663152a902d60e11b141561049457506001919050565b61049d82610c9d565b92915050565b6060600080546104b290611c8f565b80601f01602080910402602001604051908101604052809291908181526020018280546104de90611c8f565b801561052b5780601f106105005761010080835404028352916020019161052b565b820191906000526020600020905b81548152906001019060200180831161050e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105da826107a8565b9050806001600160a01b0316836001600160a01b031614156106485760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105aa565b336001600160a01b038216148061066457506106648133610423565b6106d65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105aa565b6106e08383610ced565b505050565b60006106f0600b5490565b905090565b6106ff3382610d5b565b61071b5760405162461bcd60e51b81526004016105aa90611b8b565b6106e0838383610e52565b60008061073b6006546001600160a01b031690565b612710600f548561074c9190611c2d565b6107569190611c19565b915091509250929050565b6106e083838360405180602001604052806000815250610b0a565b610784610fee565b600f55565b610791610fee565b80516107a490600c90602084019061169d565b5050565b6000818152600260205260408120546001600160a01b03168061049d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105aa565b60006001600160a01b03821661088a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105aa565b506001600160a01b031660009081526003602052604090205490565b6108ae610fee565b6108b86000611048565b565b6060600180546104b290611c8f565b6002600754141561091c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105aa565b600260075560135460ff1661096c5760405162461bcd60e51b815260206004820152601660248201527526b4b73a34b7339034b9903737ba1030b1ba34bb329760511b60448201526064016105aa565b601054811115801561099d57506011543360009081526014602052604090205461099a90839060ff16611bdc565b11155b6109e25760405162461bcd60e51b815260206004820152601660248201527521b0b73737ba1036b4b73a103a3430ba1036b0b73c9760511b60448201526064016105aa565b6012546109ef9082611c2d565b3414610a3d5760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f6620415641582073656e742e000060448201526064016105aa565b6006546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610a76573d6000803e3d6000fd5b5060005b81811015610a9d57610a8b3361109a565b80610a9581611cca565b915050610a7a565b503360009081526014602052604081208054839290610ac090849060ff16611bf4565b92506101000a81548160ff021916908360ff160217905550600160078190555050565b6107a4338383611170565b610af6610fee565b6013805460ff19811660ff90911615179055565b610b143383610d5b565b610b305760405162461bcd60e51b81526004016105aa90611b8b565b610b3c8484848461123f565b50505050565b6000818152600260205260409020546060906001600160a01b0316610bc15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105aa565b610bc9611272565b610bd283611281565b600d604051602001610be693929190611a25565b6040516020818303038152906040529050919050565b610c04610fee565b80516107a490600d90602084019061169d565b610c1f610fee565b6001600160a01b038116610c845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105aa565b610c8d81611048565b50565b5490565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b1480610cce57506001600160e01b03198216635b5e139f60e01b145b8061049d57506301ffc9a760e01b6001600160e01b031983161461049d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d22826107a8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dd45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105aa565b6000610ddf836107a8565b9050806001600160a01b0316846001600160a01b03161480610e2657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e4a5750836001600160a01b0316610e3f84610535565b6001600160a01b0316145b949350505050565b826001600160a01b0316610e65826107a8565b6001600160a01b031614610ec95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105aa565b6001600160a01b038216610f2b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105aa565b610f36600082610ced565b6001600160a01b0383166000908152600360205260408120805460019290610f5f908490611c4c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f8d908490611bdc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146108b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105aa565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110a5600b5490565b600e546110b29190611c4c565b6040805144602082015242918101919091526060016040516020818303038152906040528051906020012060001c6110ea9190611ce5565b90506110fa600b80546001019055565b600e54600b54111561114e5760405162461bcd60e51b815260206004820152601c60248201527f50726f6a6563742069732066696e6973686564206d696e74696e672e0000000060448201526064016105aa565b60006111598261137f565b611164906001611bdc565b90506106e0838261144e565b816001600160a01b0316836001600160a01b031614156111d25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105aa565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61124a848484610e52565b61125684848484611590565b610b3c5760405162461bcd60e51b81526004016105aa90611b39565b6060600c80546104b290611c8f565b6060816112a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112cf57806112b981611cca565b91506112c89050600a83611c19565b91506112a9565b60008167ffffffffffffffff8111156112ea576112ea611d3b565b6040519080825280601f01601f191660200182016040528015611314576020820181803683370190505b5090505b8415610e4a57611329600183611c4c565b9150611336600a86611ce5565b611341906030611bdc565b60f81b81838151811061135657611356611d25565b60200101906001600160f81b031916908160001a905350611378600a86611c19565b9450611318565b6000806008546009546113929190611c4c565b9050600080600a816113a5600186611c4c565b815260200190815260200160002054600014156113ce576113c7600184611c4c565b91506113ef565b600a60006113dd600186611c4c565b81526020019081526020016000205491505b6000858152600a602052604090205461141a57506000848152600a6020526040902081905583611430565b506000848152600a602052604090208054908290555b6008805490600061144083611cca565b909155509095945050505050565b6001600160a01b0382166114a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105aa565b6000818152600260205260409020546001600160a01b0316156115095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105aa565b6001600160a01b0382166000908152600360205260408120805460019290611532908490611bdc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561169257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115d4903390899088908890600401611ae9565b602060405180830381600087803b1580156115ee57600080fd5b505af192505050801561161e575060408051601f3d908101601f1916820190925261161b91810190611958565b60015b611678573d80801561164c576040519150601f19603f3d011682016040523d82523d6000602084013e611651565b606091505b5080516116705760405162461bcd60e51b81526004016105aa90611b39565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e4a565b506001949350505050565b8280546116a990611c8f565b90600052602060002090601f0160209004810192826116cb5760008555611711565b82601f106116e457805160ff1916838001178555611711565b82800160010185558215611711579182015b828111156117115782518255916020019190600101906116f6565b5061171d929150611721565b5090565b5b8082111561171d5760008155600101611722565b600067ffffffffffffffff8084111561175157611751611d3b565b604051601f8501601f19908116603f0116810190828211818310171561177957611779611d3b565b8160405280935085815286868601111561179257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146117c357600080fd5b919050565b6000602082840312156117da57600080fd5b6117e3826117ac565b9392505050565b600080604083850312156117fd57600080fd5b611806836117ac565b9150611814602084016117ac565b90509250929050565b60008060006060848603121561183257600080fd5b61183b846117ac565b9250611849602085016117ac565b9150604084013590509250925092565b6000806000806080858703121561186f57600080fd5b611878856117ac565b9350611886602086016117ac565b925060408501359150606085013567ffffffffffffffff8111156118a957600080fd5b8501601f810187136118ba57600080fd5b6118c987823560208401611736565b91505092959194509250565b600080604083850312156118e857600080fd5b6118f1836117ac565b91506020830135801515811461190657600080fd5b809150509250929050565b6000806040838503121561192457600080fd5b61192d836117ac565b946020939093013593505050565b60006020828403121561194d57600080fd5b81356117e381611d51565b60006020828403121561196a57600080fd5b81516117e381611d51565b60006020828403121561198757600080fd5b813567ffffffffffffffff81111561199e57600080fd5b8201601f810184136119af57600080fd5b610e4a84823560208401611736565b6000602082840312156119d057600080fd5b5035919050565b600080604083850312156119ea57600080fd5b50508035926020909101359150565b60008151808452611a11816020860160208601611c63565b601f01601f19169290920160200192915050565b600084516020611a388285838a01611c63565b855191840191611a4b8184848a01611c63565b8554920191600090600181811c9080831680611a6857607f831692505b858310811415611a8657634e487b7160e01b85526022600452602485fd5b808015611a9a5760018114611aab57611ad8565b60ff19851688528388019550611ad8565b60008b81526020902060005b85811015611ad05781548a820152908401908801611ab7565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b1c908301846119f9565b9695505050505050565b6020815260006117e360208301846119f9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611bef57611bef611cf9565b500190565b600060ff821660ff84168060ff03821115611c1157611c11611cf9565b019392505050565b600082611c2857611c28611d0f565b500490565b6000816000190483118215151615611c4757611c47611cf9565b500290565b600082821015611c5e57611c5e611cf9565b500390565b60005b83811015611c7e578181015183820152602001611c66565b83811115610b3c5750506000910152565b600181811c90821680611ca357607f821691505b60208210811415611cc457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cde57611cde611cf9565b5060010190565b600082611cf457611cf4611d0f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8d57600080fdfea2646970667358221220a480b43cac19a52de5bc2fb9d02d277eacac2122a3290f382fcc92102c32109464736f6c63430008070033697066733a2f2f62616679626569616f327a666c726e7a3632617666736d76736f6566686235766835727077336a326c62703371746d727836336433366c6664646d2f

Deployed ByteCode Sourcemap

45446:3559:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48748:251;;;;;;;;;;-1:-1:-1;48748:251:0;;;;;:::i;:::-;;:::i;:::-;;;7487:14:1;;7480:22;7462:41;;7450:2;7435:18;48748:251:0;;;;;;;;26834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28394:221::-;;;;;;;;;;-1:-1:-1;28394:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6506:32:1;;;6488:51;;6476:2;6461:18;28394:221:0;6342:203:1;27917:411:0;;;;;;;;;;-1:-1:-1;27917:411:0;;;;;:::i;:::-;;:::i;:::-;;47551:98;;;;;;;;;;;;;:::i;:::-;;;16040:25:1;;;16028:2;16013:18;47551:98:0;15894:177:1;29144:339:0;;;;;;;;;;-1:-1:-1;29144:339:0;;;;;:::i;:::-;;:::i;48523:217::-;;;;;;;;;;-1:-1:-1;48523:217:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7235:32:1;;;7217:51;;7299:2;7284:18;;7277:34;;;;7190:18;48523:217:0;7043:274:1;29554:185:0;;;;;;;;;;-1:-1:-1;29554:185:0;;;;;:::i;:::-;;:::i;46849:117::-;;;;;;;;;;-1:-1:-1;46849:117:0;;;;;:::i;:::-;;:::i;46482:::-;;;;;;;;;;-1:-1:-1;46482:117:0;;;;;:::i;:::-;;:::i;26528:239::-;;;;;;;;;;-1:-1:-1;26528:239:0;;;;;:::i;:::-;;:::i;26258:208::-;;;;;;;;;;-1:-1:-1;26258:208:0;;;;;:::i;:::-;;:::i;6472:103::-;;;;;;;;;;;;;:::i;5824:87::-;;;;;;;;;;-1:-1:-1;5897:6:0;;-1:-1:-1;;;;;5897:6:0;5824:87;;27003:104;;;;;;;;;;;;;:::i;46974:567::-;;;;;;:::i;:::-;;:::i;28687:155::-;;;;;;;;;;-1:-1:-1;28687:155:0;;;;;:::i;:::-;;:::i;46753:88::-;;;;;;;;;;;;;:::i;29810:328::-;;;;;;;;;;-1:-1:-1;29810:328:0;;;;;:::i;:::-;;:::i;48241:274::-;;;;;;;;;;-1:-1:-1;48241:274:0;;;;;:::i;:::-;;:::i;46607:138::-;;;;;;;;;;-1:-1:-1;46607:138:0;;;;;:::i;:::-;;:::i;28913:164::-;;;;;;;;;;-1:-1:-1;28913:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29034:25:0;;;29010:4;29034:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28913:164;6730:201;;;;;;;;;;-1:-1:-1;6730:201:0;;;;;:::i;:::-;;:::i;48748:251::-;48841:4;-1:-1:-1;;;;;;48862:36:0;;-1:-1:-1;;;48862:36:0;48858:80;;;-1:-1:-1;48922:4:0;;48748:251;-1:-1:-1;48748:251:0:o;48858:80::-;48955:36;48979:11;48955:23;:36::i;:::-;48948:43;48748:251;-1:-1:-1;;48748:251:0:o;26834:100::-;26888:13;26921:5;26914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26834:100;:::o;28394:221::-;28470:7;31737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31737:16:0;28490:73;;;;-1:-1:-1;;;28490:73:0;;12665:2:1;28490:73:0;;;12647:21:1;12704:2;12684:18;;;12677:30;12743:34;12723:18;;;12716:62;-1:-1:-1;;;12794:18:1;;;12787:42;12846:19;;28490:73:0;;;;;;;;;-1:-1:-1;28583:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28583:24:0;;28394:221::o;27917:411::-;27998:13;28014:23;28029:7;28014:14;:23::i;:::-;27998:39;;28062:5;-1:-1:-1;;;;;28056:11:0;:2;-1:-1:-1;;;;;28056:11:0;;;28048:57;;;;-1:-1:-1;;;28048:57:0;;13855:2:1;28048:57:0;;;13837:21:1;13894:2;13874:18;;;13867:30;13933:34;13913:18;;;13906:62;-1:-1:-1;;;13984:18:1;;;13977:31;14025:19;;28048:57:0;13653:397:1;28048:57:0;4455:10;-1:-1:-1;;;;;28140:21:0;;;;:62;;-1:-1:-1;28165:37:0;28182:5;4455:10;28913:164;:::i;28165:37::-;28118:168;;;;-1:-1:-1;;;28118:168:0;;10701:2:1;28118:168:0;;;10683:21:1;10740:2;10720:18;;;10713:30;10779:34;10759:18;;;10752:62;10850:26;10830:18;;;10823:54;10894:19;;28118:168:0;10499:420:1;28118:168:0;28299:21;28308:2;28312:7;28299:8;:21::i;:::-;27987:341;27917:411;;:::o;47551:98::-;47595:7;47622:19;:9;1071:14;;979:114;47622:19;47615:26;;47551:98;:::o;29144:339::-;29339:41;4455:10;29372:7;29339:18;:41::i;:::-;29331:103;;;;-1:-1:-1;;;29331:103:0;;;;;;;:::i;:::-;29447:28;29457:4;29463:2;29467:7;29447:9;:28::i;48523:217::-;48623:16;48641:21;48683:7;5897:6;;-1:-1:-1;;;;;5897:6:0;;5824:87;48683:7;48725:5;48707:14;;48694:10;:27;;;;:::i;:::-;48693:37;;;;:::i;:::-;48675:57;;;;48523:217;;;;;:::o;29554:185::-;29692:39;29709:4;29715:2;29719:7;29692:39;;;;;;;;;;;;:16;:39::i;46849:117::-;5710:13;:11;:13::i;:::-;46927:14:::1;:31:::0;46849:117::o;46482:::-;5710:13;:11;:13::i;:::-;46560:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46482:117:::0;:::o;26528:239::-;26600:7;26636:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26636:16:0;26671:19;26663:73;;;;-1:-1:-1;;;26663:73:0;;11537:2:1;26663:73:0;;;11519:21:1;11576:2;11556:18;;;11549:30;11615:34;11595:18;;;11588:62;-1:-1:-1;;;11666:18:1;;;11659:39;11715:19;;26663:73:0;11335:405:1;26258:208:0;26330:7;-1:-1:-1;;;;;26358:19:0;;26350:74;;;;-1:-1:-1;;;26350:74:0;;11126:2:1;26350:74:0;;;11108:21:1;11165:2;11145:18;;;11138:30;11204:34;11184:18;;;11177:62;-1:-1:-1;;;11255:18:1;;;11248:40;11305:19;;26350:74:0;10924:406:1;26350:74:0;-1:-1:-1;;;;;;26442:16:0;;;;;:9;:16;;;;;;;26258:208::o;6472:103::-;5710:13;:11;:13::i;:::-;6537:30:::1;6564:1;6537:18;:30::i;:::-;6472:103::o:0;27003:104::-;27059:13;27092:7;27085:14;;;;;:::i;46974:567::-;44499:1;45097:7;;:19;;45089:63;;;;-1:-1:-1;;;45089:63:0;;15377:2:1;45089:63:0;;;15359:21:1;15416:2;15396:18;;;15389:30;15455:33;15435:18;;;15428:61;15506:18;;45089:63:0;15175:355:1;45089:63:0;44499:1;45230:7;:18;47053:11:::1;::::0;::::1;;47045:46;;;::::0;-1:-1:-1;;;47045:46:0;;14257:2:1;47045:46:0::1;::::0;::::1;14239:21:1::0;14296:2;14276:18;;;14269:30;-1:-1:-1;;;14315:18:1;;;14308:52;14377:18;;47045:46:0::1;14055:346:1::0;47045:46:0::1;47122:13;;47110:8;:25;;:106;;;;-1:-1:-1::0;47198:18:0::1;::::0;47171:10:::1;47157:25;::::0;;;:13:::1;:25;::::0;;;;;:36:::1;::::0;47185:8;;47157:25:::1;;:36;:::i;:::-;47156:60;;47110:106;47102:141;;;::::0;-1:-1:-1;;;47102:141:0;;14608:2:1;47102:141:0::1;::::0;::::1;14590:21:1::0;14647:2;14627:18;;;14620:30;-1:-1:-1;;;14666:18:1;;;14659:52;14728:18;;47102:141:0::1;14406:346:1::0;47102:141:0::1;47287:6;::::0;47276:17:::1;::::0;:8;:17:::1;:::i;:::-;47262:9;:32;47254:75;;;::::0;-1:-1:-1;;;47254:75:0;;15737:2:1;47254:75:0::1;::::0;::::1;15719:21:1::0;15776:2;15756:18;;;15749:30;15815:32;15795:18;;;15788:60;15865:18;;47254:75:0::1;15535:354:1::0;47254:75:0::1;5897:6:::0;;47342:36:::1;::::0;-1:-1:-1;;;;;5897:6:0;;;;47368:9:::1;47342:36:::0;::::1;;;::::0;::::1;::::0;;;47368:9;5897:6;47342:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47395:6;47391:86;47411:8;47407:1;:12;47391:86;;;47441:24;47454:10;47441:12;:24::i;:::-;47421:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47391:86;;;-1:-1:-1::0;47503:10:0::1;47489:25;::::0;;;:13:::1;:25;::::0;;;;:44;;47524:8;;47489:25;:44:::1;::::0;47524:8;;47489:44:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;44455:1:::0;45409:7;:22;;;;46974:567;:::o;28687:155::-;28782:52;4455:10;28815:8;28825;28782:18;:52::i;46753:88::-;5710:13;:11;:13::i;:::-;46822:11:::1;::::0;;-1:-1:-1;;46807:26:0;::::1;46822:11;::::0;;::::1;46821:12;46807:26;::::0;;46753:88::o;29810:328::-;29985:41;4455:10;30018:7;29985:18;:41::i;:::-;29977:103;;;;-1:-1:-1;;;29977:103:0;;;;;;;:::i;:::-;30091:39;30105:4;30111:2;30115:7;30124:5;30091:13;:39::i;:::-;29810:328;;;;:::o;48241:274::-;31713:4;31737:16;;;:7;:16;;;;;;48306:13;;-1:-1:-1;;;;;31737:16:0;48332:77;;;;-1:-1:-1;;;48332:77:0;;13439:2:1;48332:77:0;;;13421:21:1;13478:2;13458:18;;;13451:30;13517:34;13497:18;;;13490:62;-1:-1:-1;;;13568:18:1;;;13561:45;13623:19;;48332:77:0;13237:411:1;48332:77:0;48452:10;:8;:10::i;:::-;48464:19;:8;:17;:19::i;:::-;48485;48435:70;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48420:87;;48241:274;;;:::o;46607:138::-;5710:13;:11;:13::i;:::-;46696:41;;::::1;::::0;:19:::1;::::0;:41:::1;::::0;::::1;::::0;::::1;:::i;6730:201::-:0;5710:13;:11;:13::i;:::-;-1:-1:-1;;;;;6819:22:0;::::1;6811:73;;;::::0;-1:-1:-1;;;6811:73:0;;8359:2:1;6811:73:0::1;::::0;::::1;8341:21:1::0;8398:2;8378:18;;;8371:30;8437:34;8417:18;;;8410:62;-1:-1:-1;;;8488:18:1;;;8481:36;8534:19;;6811:73:0::1;8157:402:1::0;6811:73:0::1;6895:28;6914:8;6895:18;:28::i;:::-;6730:201:::0;:::o;979:114::-;1071:14;;979:114::o;1101:127::-;1190:19;;1208:1;1190:19;;;1101:127::o;25889:305::-;25991:4;-1:-1:-1;;;;;;26028:40:0;;-1:-1:-1;;;26028:40:0;;:105;;-1:-1:-1;;;;;;;26085:48:0;;-1:-1:-1;;;26085:48:0;26028:105;:158;;;-1:-1:-1;;;;;;;;;;18737:40:0;;;26150:36;18628:157;35794:174;35869:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35869:29:0;-1:-1:-1;;;;;35869:29:0;;;;;;;;:24;;35923:23;35869:24;35923:14;:23::i;:::-;-1:-1:-1;;;;;35914:46:0;;;;;;;;;;;35794:174;;:::o;31942:348::-;32035:4;31737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31737:16:0;32052:73;;;;-1:-1:-1;;;32052:73:0;;10288:2:1;32052:73:0;;;10270:21:1;10327:2;10307:18;;;10300:30;10366:34;10346:18;;;10339:62;-1:-1:-1;;;10417:18:1;;;10410:42;10469:19;;32052:73:0;10086:408:1;32052:73:0;32136:13;32152:23;32167:7;32152:14;:23::i;:::-;32136:39;;32205:5;-1:-1:-1;;;;;32194:16:0;:7;-1:-1:-1;;;;;32194:16:0;;:52;;;-1:-1:-1;;;;;;29034:25:0;;;29010:4;29034:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32214:32;32194:87;;;;32274:7;-1:-1:-1;;;;;32250:31:0;:20;32262:7;32250:11;:20::i;:::-;-1:-1:-1;;;;;32250:31:0;;32194:87;32186:96;31942:348;-1:-1:-1;;;;31942:348:0:o;35051:625::-;35210:4;-1:-1:-1;;;;;35183:31:0;:23;35198:7;35183:14;:23::i;:::-;-1:-1:-1;;;;;35183:31:0;;35175:81;;;;-1:-1:-1;;;35175:81:0;;8766:2:1;35175:81:0;;;8748:21:1;8805:2;8785:18;;;8778:30;8844:34;8824:18;;;8817:62;-1:-1:-1;;;8895:18:1;;;8888:35;8940:19;;35175:81:0;8564:401:1;35175:81:0;-1:-1:-1;;;;;35275:16:0;;35267:65;;;;-1:-1:-1;;;35267:65:0;;9529:2:1;35267:65:0;;;9511:21:1;9568:2;9548:18;;;9541:30;9607:34;9587:18;;;9580:62;-1:-1:-1;;;9658:18:1;;;9651:34;9702:19;;35267:65:0;9327:400:1;35267:65:0;35449:29;35466:1;35470:7;35449:8;:29::i;:::-;-1:-1:-1;;;;;35491:15:0;;;;;;:9;:15;;;;;:20;;35510:1;;35491:15;:20;;35510:1;;35491:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35522:13:0;;;;;;:9;:13;;;;;:18;;35539:1;;35522:13;:18;;35539:1;;35522:18;:::i;:::-;;;;-1:-1:-1;;35551:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35551:21:0;-1:-1:-1;;;;;35551:21:0;;;;;;;;;35590:27;;35551:16;;35590:27;;;;;;;27987:341;27917:411;;:::o;5989:132::-;5897:6;;-1:-1:-1;;;;;5897:6:0;4455:10;6053:23;6045:68;;;;-1:-1:-1;;;6045:68:0;;13078:2:1;6045:68:0;;;13060:21:1;;;13097:18;;;13090:30;13156:34;13136:18;;;13129:62;13208:18;;6045:68:0;12876:356:1;7091:191:0;7184:6;;;-1:-1:-1;;;;;7201:17:0;;;-1:-1:-1;;;;;;7201:17:0;;;;;;;7234:40;;7184:6;;;7201:17;7184:6;;7234:40;;7165:16;;7234:40;7154:128;7091:191;:::o;47657:453::-;47717:17;47827:19;:9;1071:14;;979:114;47827:19;47812:12;;:34;;;;:::i;:::-;47755:51;;;47772:16;47755:51;;;6247:19:1;47790:15:0;6282:12:1;;;6275:28;;;;6319:12;;47755:51:0;;;;;;;;;;;;47745:62;;;;;;47737:71;;:110;;;;:::i;:::-;47717:130;;47860:21;:9;1190:19;;1208:1;1190:19;;;1101:127;47860:21;47923:12;;47900:9;1071:14;47900:35;;47892:76;;;;-1:-1:-1;;;47892:76:0;;12308:2:1;47892:76:0;;;12290:21:1;12347:2;12327:18;;;12320:30;12386;12366:18;;;12359:58;12434:18;;47892:76:0;12106:352:1;47892:76:0;47981:17;48001:32;48023:9;48001:21;:32::i;:::-;:36;;48036:1;48001:36;:::i;:::-;47981:56;;48075:27;48081:9;48092;48075:5;:27::i;36110:315::-;36265:8;-1:-1:-1;;;;;36256:17:0;:5;-1:-1:-1;;;;;36256:17:0;;;36248:55;;;;-1:-1:-1;;;36248:55:0;;9934:2:1;36248:55:0;;;9916:21:1;9973:2;9953:18;;;9946:30;10012:27;9992:18;;;9985:55;10057:18;;36248:55:0;9732:349:1;36248:55:0;-1:-1:-1;;;;;36314:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36314:46:0;;;;;;;;;;36376:41;;7462::1;;;36376::0;;7435:18:1;36376:41:0;;;;;;;36110:315;;;:::o;31020:::-;31177:28;31187:4;31193:2;31197:7;31177:9;:28::i;:::-;31224:48;31247:4;31253:2;31257:7;31266:5;31224:22;:48::i;:::-;31216:111;;;;-1:-1:-1;;;31216:111:0;;;;;;;:::i;48118:115::-;48178:13;48211:14;48204:21;;;;;:::i;1937:723::-;1993:13;2214:10;2210:53;;-1:-1:-1;;2241:10:0;;;;;;;;;;;;-1:-1:-1;;;2241:10:0;;;;;1937:723::o;2210:53::-;2288:5;2273:12;2329:78;2336:9;;2329:78;;2362:8;;;;:::i;:::-;;-1:-1:-1;2385:10:0;;-1:-1:-1;2393:2:0;2385:10;;:::i;:::-;;;2329:78;;;2417:19;2449:6;2439:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2439:17:0;;2417:39;;2467:154;2474:10;;2467:154;;2501:11;2511:1;2501:11;;:::i;:::-;;-1:-1:-1;2570:10:0;2578:2;2570:5;:10;:::i;:::-;2557:24;;:2;:24;:::i;:::-;2544:39;;2527:6;2534;2527:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2527:56:0;;;;;;;;-1:-1:-1;2598:11:0;2607:2;2598:11;;:::i;:::-;;;2467:154;;42132:552;42210:7;42226:17;42256:6;;42246:7;;:16;;;;:::i;:::-;42226:36;-1:-1:-1;42269:17:0;;42320:4;42269:17;42325:13;42337:1;42226:36;42325:13;:::i;:::-;42320:19;;;;;;;;;;;;42343:1;42320:24;42316:126;;;42367:13;42379:1;42367:9;:13;:::i;:::-;42355:25;;42316:126;;;42415:4;:19;42420:13;42432:1;42420:9;:13;:::i;:::-;42415:19;;;;;;;;;;;;42403:31;;42316:126;42454:17;;;;:4;:17;;;;;;42450:190;;-1:-1:-1;42516:17:0;;;;:4;:17;;;;;:29;;;42496:11;42450:190;;;-1:-1:-1;42577:17:0;;;;:4;:17;;;;;;;42603:29;;;;42450:190;42648:6;:8;;;:6;:8;;;:::i;:::-;;;;-1:-1:-1;42672:6:0;;42132:552;-1:-1:-1;;;;;42132:552:0:o;33626:439::-;-1:-1:-1;;;;;33706:16:0;;33698:61;;;;-1:-1:-1;;;33698:61:0;;11947:2:1;33698:61:0;;;11929:21:1;;;11966:18;;;11959:30;12025:34;12005:18;;;11998:62;12077:18;;33698:61:0;11745:356:1;33698:61:0;31713:4;31737:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31737:16:0;:30;33770:58;;;;-1:-1:-1;;;33770:58:0;;9172:2:1;33770:58:0;;;9154:21:1;9211:2;9191:18;;;9184:30;9250;9230:18;;;9223:58;9298:18;;33770:58:0;8970:352:1;33770:58:0;-1:-1:-1;;;;;33899:13:0;;;;;;:9;:13;;;;;:18;;33916:1;;33899:13;:18;;33916:1;;33899:18;:::i;:::-;;;;-1:-1:-1;;33928:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33928:21:0;-1:-1:-1;;;;;33928:21:0;;;;;;;;33967:33;;33928:16;;;33967:33;;33928:16;;33967:33;46560:31:::1;46482:117:::0;:::o;36990:799::-;37145:4;-1:-1:-1;;;;;37166:13:0;;8817:19;:23;37162:620;;37202:72;;-1:-1:-1;;;37202:72:0;;-1:-1:-1;;;;;37202:36:0;;;;;:72;;4455:10;;37253:4;;37259:7;;37268:5;;37202:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37202:72:0;;;;;;;;-1:-1:-1;;37202:72:0;;;;;;;;;;;;:::i;:::-;;;37198:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37444:13:0;;37440:272;;37487:60;;-1:-1:-1;;;37487:60:0;;;;;;;:::i;37440:272::-;37662:6;37656:13;37647:6;37643:2;37639:15;37632:38;37198:529;-1:-1:-1;;;;;;37325:51:0;-1:-1:-1;;;37325:51:0;;-1:-1:-1;37318:58:0;;37162:620;-1:-1:-1;37766:4:0;36990:799;;;;;;:::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;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;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:248::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;-1:-1:-1;;4211:23:1;;;4281:2;4266:18;;;4253:32;;-1:-1:-1;4043:248:1:o;4296:257::-;4337:3;4375:5;4369:12;4402:6;4397:3;4390:19;4418:63;4474:6;4467:4;4462:3;4458:14;4451:4;4444:5;4440:16;4418:63;:::i;:::-;4535:2;4514:15;-1:-1:-1;;4510:29:1;4501:39;;;;4542:4;4497:50;;4296:257;-1:-1:-1;;4296:257:1:o;4558:1527::-;4782:3;4820:6;4814:13;4846:4;4859:51;4903:6;4898:3;4893:2;4885:6;4881:15;4859:51;:::i;:::-;4973:13;;4932:16;;;;4995:55;4973:13;4932:16;5017:15;;;4995:55;:::i;:::-;5139:13;;5072:20;;;5112:1;;5199;5221:18;;;;5274;;;;5301:93;;5379:4;5369:8;5365:19;5353:31;;5301:93;5442:2;5432:8;5429:16;5409:18;5406:40;5403:167;;;-1:-1:-1;;;5469:33:1;;5525:4;5522:1;5515:15;5555:4;5476:3;5543:17;5403:167;5586:18;5613:110;;;;5737:1;5732:328;;;;5579:481;;5613:110;-1:-1:-1;;5648:24:1;;5634:39;;5693:20;;;;-1:-1:-1;5613:110:1;;5732:328;16149:1;16142:14;;;16186:4;16173:18;;5827:1;5841:169;5855:8;5852:1;5849:15;5841:169;;;5937:14;;5922:13;;;5915:37;5980:16;;;;5872:10;;5841:169;;;5845:3;;6041:8;6034:5;6030:20;6023:27;;5579:481;-1:-1:-1;6076:3:1;;4558:1527;-1:-1:-1;;;;;;;;;;;4558:1527:1:o;6550:488::-;-1:-1:-1;;;;;6819:15:1;;;6801:34;;6871:15;;6866:2;6851:18;;6844:43;6918:2;6903:18;;6896:34;;;6966:3;6961:2;6946:18;;6939:31;;;6744:4;;6987:45;;7012:19;;7004:6;6987:45;:::i;:::-;6979:53;6550:488;-1:-1:-1;;;;;;6550:488:1:o;7514:219::-;7663:2;7652:9;7645:21;7626:4;7683:44;7723:2;7712:9;7708:18;7700:6;7683:44;:::i;7738:414::-;7940:2;7922:21;;;7979:2;7959:18;;;7952:30;8018:34;8013:2;7998:18;;7991:62;-1:-1:-1;;;8084:2:1;8069:18;;8062:48;8142:3;8127:19;;7738:414::o;14757:413::-;14959:2;14941:21;;;14998:2;14978:18;;;14971:30;15037:34;15032:2;15017:18;;15010:62;-1:-1:-1;;;15103:2:1;15088:18;;15081:47;15160:3;15145:19;;14757:413::o;16202:128::-;16242:3;16273:1;16269:6;16266:1;16263:13;16260:39;;;16279:18;;:::i;:::-;-1:-1:-1;16315:9:1;;16202:128::o;16335:204::-;16373:3;16409:4;16406:1;16402:12;16441:4;16438:1;16434:12;16476:3;16470:4;16466:14;16461:3;16458:23;16455:49;;;16484:18;;:::i;:::-;16520:13;;16335:204;-1:-1:-1;;;16335:204:1:o;16544:120::-;16584:1;16610;16600:35;;16615:18;;:::i;:::-;-1:-1:-1;16649:9:1;;16544:120::o;16669:168::-;16709:7;16775:1;16771;16767:6;16763:14;16760:1;16757:21;16752:1;16745:9;16738:17;16734:45;16731:71;;;16782:18;;:::i;:::-;-1:-1:-1;16822:9:1;;16669:168::o;16842:125::-;16882:4;16910:1;16907;16904:8;16901:34;;;16915:18;;:::i;:::-;-1:-1:-1;16952:9:1;;16842:125::o;16972:258::-;17044:1;17054:113;17068:6;17065:1;17062:13;17054:113;;;17144:11;;;17138:18;17125:11;;;17118:39;17090:2;17083:10;17054:113;;;17185:6;17182:1;17179:13;17176:48;;;-1:-1:-1;;17220:1:1;17202:16;;17195:27;16972:258::o;17235:380::-;17314:1;17310:12;;;;17357;;;17378:61;;17432:4;17424:6;17420:17;17410:27;;17378:61;17485:2;17477:6;17474:14;17454:18;17451:38;17448:161;;;17531:10;17526:3;17522:20;17519:1;17512:31;17566:4;17563:1;17556:15;17594:4;17591:1;17584:15;17448:161;;17235:380;;;:::o;17620:135::-;17659:3;-1:-1:-1;;17680:17:1;;17677:43;;;17700:18;;:::i;:::-;-1:-1:-1;17747:1:1;17736:13;;17620:135::o;17760:112::-;17792:1;17818;17808:35;;17823:18;;:::i;:::-;-1:-1:-1;17857:9:1;;17760:112::o;17877:127::-;17938:10;17933:3;17929:20;17926:1;17919:31;17969:4;17966:1;17959:15;17993:4;17990:1;17983:15;18009:127;18070:10;18065:3;18061:20;18058:1;18051:31;18101:4;18098:1;18091:15;18125:4;18122:1;18115:15;18141:127;18202:10;18197:3;18193:20;18190:1;18183:31;18233:4;18230:1;18223:15;18257:4;18254:1;18247:15;18273:127;18334:10;18329:3;18325:20;18322:1;18315:31;18365:4;18362:1;18355:15;18389:4;18386:1;18379:15;18405:131;-1:-1:-1;;;;;;18479:32:1;;18469:43;;18459:71;;18526:1;18523;18516:12

Swarm Source

ipfs://a480b43cac19a52de5bc2fb9d02d277eacac2122a3290f382fcc92102c321094
Loading