Token AIDEGO

 

Overview

TokenID:
991604444

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DegoAINFT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-06
*/

/***
 *    ██████╗ ███████╗ ██████╗  ██████╗ 
 *    ██╔══██╗██╔════╝██╔════╝ ██╔═══██╗
 *    ██║  ██║█████╗  ██║  ███╗██║   ██║
 *    ██║  ██║██╔══╝  ██║   ██║██║   ██║
 *    ██████╔╝███████╗╚██████╔╝╚██████╔╝
 *    ╚═════╝ ╚══════╝ ╚═════╝  ╚═════╝ 
 *    
 * https://dego.finance
                                  
* MIT License
* ===========
*
* Copyright (c) 2022 dego
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol

// SPDX-License-Identifier: MIT
// 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/token/ERC721/IERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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/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/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/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/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/ERC721.sol

// OpenZeppelin Contracts (last updated v4.5.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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(
        address operator,
        bool approved
    ) public virtual override {
        _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 ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

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

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

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

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

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

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

        _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/ERC721/extensions/IERC721Enumerable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(
        address owner,
        uint256 index
    ) public view virtual override returns (uint256) {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(
        uint256 index
    ) public view virtual override returns (uint256) {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(
        address from,
        uint256 tokenId
    ) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(
        bytes32 role,
        address account
    ) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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

// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(
        bytes32 role,
        address account
    ) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(
        bytes32 role
    ) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(
        bytes32 role,
        address account
    ) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(
        bytes32 role,
        address account
    ) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(
        bytes32 role,
        address account
    ) public virtual override {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/nft/DegoAINFT.sol

pragma solidity ^0.8.0;

contract DegoAINFT is
    AccessControl,
    ERC721Enumerable,
    Ownable,
    ReentrancyGuard
{
    using Strings for uint256;

    string private baseURI;

    uint256 private _tokenId;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    mapping(uint256 => bool) private _usedTokenIds;

    string constant ROLE_MINTER_STR = "MINTER";

    // 0xf0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc9
    bytes32 constant ROLE_MINTER = keccak256(bytes(ROLE_MINTER_STR));

    string constant ROLE_MINTER_ADMIN_STR = "MINTER_ADMIN";

    // 0x498a9dae57f391d8efcc7bb3e7440ad6a25b1261044ef1b555c5484cb9f67659
    bytes32 constant ROLE_MINTER_ADMIN =
        keccak256(bytes(ROLE_MINTER_ADMIN_STR));

    event AINFTMint(address indexed account, uint256 indexed tokenId);

    event URIPrefix(string indexed baseURI);

    event SetMinterAdmin(bytes32 role, bytes32 adminRole, address admin);

    event RevokeMinterAdmin(bytes32 role, bytes32 adminRole, address admin);

    event SetTokenURI(uint256 indexed tokenId, string uri);

    constructor() ERC721("AIDEGO", "AIDEGO") {
        baseURI = "https://api.dego.finance/api/v1/metadata/aigc/";
        _setRoleAdmin(ROLE_MINTER, ROLE_MINTER_ADMIN);
        _setupRole(ROLE_MINTER_ADMIN, msg.sender);
    }

    function supportsInterface(
        bytes4 interfaceId
    )
        public
        view
        virtual
        override(ERC721Enumerable, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function setMinterAdmin(address minterAdmin) external onlyOwner {
        _setupRole(ROLE_MINTER_ADMIN, minterAdmin);
        emit SetMinterAdmin(ROLE_MINTER, ROLE_MINTER_ADMIN, minterAdmin);
    }

    function revokeMinterAdmin(address minterAdmin) external onlyOwner {
        _revokeRole(ROLE_MINTER_ADMIN, minterAdmin);
        emit RevokeMinterAdmin(ROLE_MINTER, ROLE_MINTER_ADMIN, minterAdmin);
    }

    function usedTokenId(uint256 tokenId) public view returns (bool) {
        return _usedTokenIds[tokenId];
    }

    function mint(
        address to,
        uint256 tokenId
    ) external nonReentrant returns (uint256) {
        require(
            hasRole(ROLE_MINTER, msg.sender),
            "DEGO: Caller is not a minter"
        );
        _mint(to, tokenId);

        _usedTokenIds[tokenId] = true;

        emit AINFTMint(to, tokenId);

        return tokenId;
    }

    function burn(uint256 _id) external {
        require(
            _isApprovedOrOwner(_msgSender(), _id),
            "ERC721: burn caller is not owner nor approved"
        );
        _burn(_id);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[_id]).length != 0) {
            delete _tokenURIs[_id];
        }
    }

    function updateURIPrefix(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
        emit URIPrefix(baseURI);
    }

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

    function updateTokenURI(
        uint256 tokenId,
        string memory _uri
    ) public onlyOwner {
        _setTokenURI(tokenId, _uri);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(
        uint256 tokenId,
        string memory _tokenURI
    ) internal virtual {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
        emit SetTokenURI(tokenId, _tokenURI);
    }

    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        require(_exists(tokenId), "DEGO: URI query for nonexistent token");
        string memory baseURI_ = _baseURI();
        // return string(abi.encodePacked(baseURI_, tokenId.toString()));

        string memory _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(baseURI_).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return _tokenURI;
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(baseURI_, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"AINFTMint","type":"event"},{"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":false,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"adminRole","type":"bytes32"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"RevokeMinterAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"adminRole","type":"bytes32"},{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"SetMinterAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"SetTokenURI","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"baseURI","type":"string"}],"name":"URIPrefix","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"burn","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minterAdmin","type":"address"}],"name":"revokeMinterAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minterAdmin","type":"address"}],"name":"setMinterAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"updateURIPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"usedTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260068082526541494445474f60d01b60208084018290528451808601909552918452908301529060016200005083826200035c565b5060026200005f82826200035c565b5050506200007c620000766200016660201b60201c565b6200016a565b6001600c556040805160608101909152602e80825262002de06020830139600d90620000a990826200035c565b50604080518082018252600681526526a4a72a22a960d11b6020918201528151808301909252600c82526b26a4a72a22a92fa0a226a4a760a11b910152620001217ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc960008051602062002dc0833981519152620001bc565b60408051808201909152600c81526b26a4a72a22a92fa0a226a4a760a11b6020909101526200016060008051602062002dc08339815191523362000207565b62000428565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b62000213828262000217565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000213576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002733390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002e257607f821691505b6020821081036200030357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035757600081815260208120601f850160051c81016020861015620003325750805b601f850160051c820191505b8181101562000353578281556001016200033e565b5050505b505050565b81516001600160401b03811115620003785762000378620002b7565b6200039081620003898454620002cd565b8462000309565b602080601f831160018114620003c85760008415620003af5750858301515b600019600386901b1c1916600185901b17855562000353565b600085815260208120601f198616915b82811015620003f957888601518255948401946001909101908401620003d8565b5085821015620004185787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61298880620004386000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80636352211e1161010f578063a217fddf116100a2578063c87b56dd11610071578063c87b56dd14610436578063d547741f14610449578063e985e9c51461045c578063f2fde38b1461049857600080fd5b8063a217fddf146103f5578063a22cb465146103fd578063b88d4fde14610410578063bceb2a221461042357600080fd5b80638da5cb5b116100de5780638da5cb5b146103b657806391d14854146103c757806395d89b41146103da57806399235f39146103e257600080fd5b80636352211e1461036557806369d9dd4f1461037857806370a082311461039b578063715018a6146103ae57600080fd5b80632f2ff15d1161018757806340c10f191161015657806340c10f191461031957806342842e0e1461032c57806342966c681461033f5780634f6ccce71461035257600080fd5b80632f2ff15d146102cd5780632f745c59146102e057806336568abe146102f3578063369088f01461030657600080fd5b806318160ddd116101c357806318160ddd1461027257806318e97fd11461028457806323b872dd14610297578063248a9ca3146102aa57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063095ea7b31461025d575b600080fd5b610208610203366004612145565b6104ab565b60405190151581526020015b60405180910390f35b6102256104bc565b60405161021491906121b2565b6102456102403660046121c5565b61054e565b6040516001600160a01b039091168152602001610214565b61027061026b3660046121fa565b6105e8565b005b6009545b604051908152602001610214565b6102706102923660046122d0565b6106fd565b6102706102a5366004612317565b610735565b6102766102b83660046121c5565b60009081526020819052604090206001015490565b6102706102db366004612353565b610767565b6102766102ee3660046121fa565b61078d565b610270610301366004612353565b610823565b61027061031436600461237f565b61089d565b6102766103273660046121fa565b6109bc565b61027061033a366004612317565b610b0a565b61027061034d3660046121c5565b610b25565b6102766103603660046121c5565b610bd3565b6102456103733660046121c5565b610c66565b6102086103863660046121c5565b60009081526010602052604090205460ff1690565b6102766103a936600461237f565b610cdd565b610270610d64565b600b546001600160a01b0316610245565b6102086103d5366004612353565b610d9a565b610225610dc3565b6102706103f036600461237f565b610dd2565b610276600081565b61027061040b36600461239a565b610eea565b61027061041e3660046123d6565b610ef5565b610270610431366004612452565b610f2d565b6102256104443660046121c5565b610fa6565b610270610457366004612353565b611114565b61020861046a366004612487565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102706104a636600461237f565b61113a565b60006104b6826111d2565b92915050565b6060600180546104cb906124b1565b80601f01602080910402602001604051908101604052809291908181526020018280546104f7906124b1565b80156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166105cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006105f382610c66565b9050806001600160a01b0316836001600160a01b0316036106605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105c3565b336001600160a01b038216148061067c575061067c813361046a565b6106ee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105c3565b6106f883836111f7565b505050565b600b546001600160a01b031633146107275760405162461bcd60e51b81526004016105c3906124eb565b6107318282611265565b5050565b610740335b82611333565b61075c5760405162461bcd60e51b81526004016105c390612520565b6106f883838361142a565b60008281526020819052604090206001015461078381336115d1565b6106f88383611635565b600061079883610cdd565b82106107fa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105c3565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6001600160a01b03811633146108935760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016105c3565b61073182826116b9565b600b546001600160a01b031633146108c75760405162461bcd60e51b81526004016105c3906124eb565b60408051808201909152600c81526b26a4a72a22a92fa0a226a4a760a11b602090910152610903600080516020612933833981519152826116b9565b604080518082018252600681526526a4a72a22a960d11b60209182015281518083018352600c81526b26a4a72a22a92fa0a226a4a760a11b9082015281517ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc98152600080516020612933833981519152918101919091526001600160a01b038316918101919091527f2e955a9e375473e4fe9dbf72fd85769ec5a27b8b385d1ac90719f0bdf9f21441906060015b60405180910390a150565b60006002600c5403610a105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105c3565b6002600c5560408051808201909152600681526526a4a72a22a960d11b602090910152610a5d7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc933610d9a565b610aa95760405162461bcd60e51b815260206004820152601c60248201527f4445474f3a2043616c6c6572206973206e6f742061206d696e7465720000000060448201526064016105c3565b610ab3838361171e565b600082815260106020526040808220805460ff191660011790555183916001600160a01b038616917fe80e28d8aa636857526c3c657776bcbbd581134a1e2edbbdb1c618cc4000785d9190a3506001600c55919050565b6106f883838360405180602001604052806000815250610ef5565b610b2e3361073a565b610b905760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a206275726e2063616c6c6572206973206e6f74206f776e657260448201526c081b9bdc88185c1c1c9bdd9959609a1b60648201526084016105c3565b610b998161186c565b6000818152600f602052604090208054610bb2906124b1565b159050610bd0576000818152600f60205260408120610bd0916120e1565b50565b6000610bde60095490565b8210610c415760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105c3565b60098281548110610c5457610c54612571565b90600052602060002001549050919050565b6000818152600360205260408120546001600160a01b0316806104b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105c3565b60006001600160a01b038216610d485760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105c3565b506001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016105c3906124eb565b610d986000611913565b565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600280546104cb906124b1565b600b546001600160a01b03163314610dfc5760405162461bcd60e51b81526004016105c3906124eb565b60408051808201909152600c81526b26a4a72a22a92fa0a226a4a760a11b602090910152610e3860008051602061293383398151915282611965565b604080518082018252600681526526a4a72a22a960d11b60209182015281518083018352600c81526b26a4a72a22a92fa0a226a4a760a11b9082015281517ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc98152600080516020612933833981519152918101919091526001600160a01b038316918101919091527fec9b6dc2d06e32f5e9fdce0cee0f7443bcb99666a145147f25e659e87c5dd3f1906060016109b1565b61073133838361196f565b610eff3383611333565b610f1b5760405162461bcd60e51b81526004016105c390612520565b610f2784848484611a3d565b50505050565b600b546001600160a01b03163314610f575760405162461bcd60e51b81526004016105c3906124eb565b600d610f6382826125d5565b50600d604051610f739190612695565b604051908190038120907f5b2f71ae2236304212a8f3529aa50b6ae9fe556cc6a4af4f9b51f89328d057f290600090a250565b6000818152600360205260409020546060906001600160a01b031661101b5760405162461bcd60e51b815260206004820152602560248201527f4445474f3a2055524920717565727920666f72206e6f6e6578697374656e74206044820152643a37b5b2b760d91b60648201526084016105c3565b6000611025611a70565b6000848152600f6020526040812080549293509091611043906124b1565b80601f016020809104026020016040519081016040528092919081815260200182805461106f906124b1565b80156110bc5780601f10611091576101008083540402835291602001916110bc565b820191906000526020600020905b81548152906001019060200180831161109f57829003601f168201915b5050505050905081516000036110d3579392505050565b8051156110e1579392505050565b816110eb85611a7f565b6040516020016110fc92919061270b565b60405160208183030381529060405292505050919050565b60008281526020819052604090206001015461113081336115d1565b6106f883836116b9565b600b546001600160a01b031633146111645760405162461bcd60e51b81526004016105c3906124eb565b6001600160a01b0381166111c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c3565b610bd081611913565b60006001600160e01b0319821663780e9d6360e01b14806104b657506104b682611b80565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122c82610c66565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000828152600360205260409020546001600160a01b03166112de5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c3565b6000828152600f602052604090206112f682826125d5565b50817fd2d827dddfc9c9a02afc5fc68d3251684b36e213a7999ebd90a861f25df4077e8260405161132791906121b2565b60405180910390a25050565b6000818152600360205260408120546001600160a01b03166113ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105c3565b60006113b783610c66565b9050806001600160a01b0316846001600160a01b031614806113f25750836001600160a01b03166113e78461054e565b6001600160a01b0316145b8061142257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661143d82610c66565b6001600160a01b0316146114a15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105c3565b6001600160a01b0382166115035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105c3565b61150e838383611bc0565b6115196000826111f7565b6001600160a01b0383166000908152600460205260408120805460019290611542908490612750565b90915550506001600160a01b0382166000908152600460205260408120805460019290611570908490612763565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115db8282610d9a565b610731576115f3816001600160a01b03166014611c78565b6115fe836020611c78565b60405160200161160f929190612776565b60408051601f198184030181529082905262461bcd60e51b82526105c3916004016121b2565b61163f8282610d9a565b610731576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556116753390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6116c38282610d9a565b15610731576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166117745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105c3565b6000818152600360205260409020546001600160a01b0316156117d95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105c3565b6117e560008383611bc0565b6001600160a01b038216600090815260046020526040812080546001929061180e908490612763565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061187782610c66565b905061188581600084611bc0565b6118906000836111f7565b6001600160a01b03811660009081526004602052604081208054600192906118b9908490612750565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107318282611635565b816001600160a01b0316836001600160a01b0316036119d05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105c3565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a4884848461142a565b611a5484848484611e1b565b610f275760405162461bcd60e51b81526004016105c3906127eb565b6060600d80546104cb906124b1565b606081600003611aa65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ad05780611aba8161283d565b9150611ac99050600a8361286c565b9150611aaa565b60008167ffffffffffffffff811115611aeb57611aeb612224565b6040519080825280601f01601f191660200182016040528015611b15576020820181803683370190505b5090505b841561142257611b2a600183612750565b9150611b37600a86612880565b611b42906030612763565b60f81b818381518110611b5757611b57612571565b60200101906001600160f81b031916908160001a905350611b79600a8661286c565b9450611b19565b60006001600160e01b031982166380ac58cd60e01b1480611bb157506001600160e01b03198216635b5e139f60e01b145b806104b657506104b682611f1c565b6001600160a01b038316611c1b57611c1681600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611c3e565b816001600160a01b0316836001600160a01b031614611c3e57611c3e8382611f51565b6001600160a01b038216611c55576106f881611fee565b826001600160a01b0316826001600160a01b0316146106f8576106f8828261209d565b60606000611c87836002612894565b611c92906002612763565b67ffffffffffffffff811115611caa57611caa612224565b6040519080825280601f01601f191660200182016040528015611cd4576020820181803683370190505b509050600360fc1b81600081518110611cef57611cef612571565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d1e57611d1e612571565b60200101906001600160f81b031916908160001a9053506000611d42846002612894565b611d4d906001612763565b90505b6001811115611dc5576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611d8157611d81612571565b1a60f81b828281518110611d9757611d97612571565b60200101906001600160f81b031916908160001a90535060049490941c93611dbe816128ab565b9050611d50565b508315611e145760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105c3565b9392505050565b60006001600160a01b0384163b15611f1157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5f9033908990889088906004016128c2565b6020604051808303816000875af1925050508015611e9a575060408051601f3d908101601f19168201909252611e97918101906128ff565b60015b611ef7573d808015611ec8576040519150601f19603f3d011682016040523d82523d6000602084013e611ecd565b606091505b508051600003611eef5760405162461bcd60e51b81526004016105c3906127eb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611422565b506001949350505050565b60006001600160e01b03198216637965db0b60e01b14806104b657506301ffc9a760e01b6001600160e01b03198316146104b6565b60006001611f5e84610cdd565b611f689190612750565b600083815260086020526040902054909150808214611fbb576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061200090600190612750565b6000838152600a60205260408120546009805493945090928490811061202857612028612571565b90600052602060002001549050806009838154811061204957612049612571565b6000918252602080832090910192909255828152600a909152604080822084905585825281205560098054806120815761208161291c565b6001900381819060005260206000200160009055905550505050565b60006120a883610cdd565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b5080546120ed906124b1565b6000825580601f106120fd575050565b601f016020900490600052602060002090810190610bd091905b8082111561212b5760008155600101612117565b5090565b6001600160e01b031981168114610bd057600080fd5b60006020828403121561215757600080fd5b8135611e148161212f565b60005b8381101561217d578181015183820152602001612165565b50506000910152565b6000815180845261219e816020860160208601612162565b601f01601f19169290920160200192915050565b602081526000611e146020830184612186565b6000602082840312156121d757600080fd5b5035919050565b80356001600160a01b03811681146121f557600080fd5b919050565b6000806040838503121561220d57600080fd5b612216836121de565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561225557612255612224565b604051601f8501601f19908116603f0116810190828211818310171561227d5761227d612224565b8160405280935085815286868601111561229657600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126122c157600080fd5b611e148383356020850161223a565b600080604083850312156122e357600080fd5b82359150602083013567ffffffffffffffff81111561230157600080fd5b61230d858286016122b0565b9150509250929050565b60008060006060848603121561232c57600080fd5b612335846121de565b9250612343602085016121de565b9150604084013590509250925092565b6000806040838503121561236657600080fd5b82359150612376602084016121de565b90509250929050565b60006020828403121561239157600080fd5b611e14826121de565b600080604083850312156123ad57600080fd5b6123b6836121de565b9150602083013580151581146123cb57600080fd5b809150509250929050565b600080600080608085870312156123ec57600080fd5b6123f5856121de565b9350612403602086016121de565b925060408501359150606085013567ffffffffffffffff81111561242657600080fd5b8501601f8101871361243757600080fd5b6124468782356020840161223a565b91505092959194509250565b60006020828403121561246457600080fd5b813567ffffffffffffffff81111561247b57600080fd5b611422848285016122b0565b6000806040838503121561249a57600080fd5b6124a3836121de565b9150612376602084016121de565b600181811c908216806124c557607f821691505b6020821081036124e557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f8211156106f857600081815260208120601f850160051c810160208610156125ae5750805b601f850160051c820191505b818110156125cd578281556001016125ba565b505050505050565b815167ffffffffffffffff8111156125ef576125ef612224565b612603816125fd84546124b1565b84612587565b602080601f83116001811461263857600084156126205750858301515b600019600386901b1c1916600185901b1785556125cd565b600085815260208120601f198616915b8281101561266757888601518255948401946001909101908401612648565b50858210156126855787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008083546126a3816124b1565b600182811680156126bb57600181146126d0576126ff565b60ff19841687528215158302870194506126ff565b8760005260208060002060005b858110156126f65781548a8201529084019082016126dd565b50505082870194505b50929695505050505050565b6000835161271d818460208801612162565b835190830190612731818360208801612162565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156104b6576104b661273a565b808201808211156104b6576104b661273a565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516127ae816017850160208801612162565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516127df816028840160208801612162565b01602801949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161284f5761284f61273a565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261287b5761287b612856565b500490565b60008261288f5761288f612856565b500690565b80820281158282048414176104b6576104b661273a565b6000816128ba576128ba61273a565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128f590830184612186565b9695505050505050565b60006020828403121561291157600080fd5b8151611e148161212f565b634e487b7160e01b600052603160045260246000fdfe498a9dae57f391d8efcc7bb3e7440ad6a25b1261044ef1b555c5484cb9f67659a2646970667358221220fd7e44751bde307307cb7ba48f8dd8d41f793d6be99e017e54656898b014458664736f6c63430008130033498a9dae57f391d8efcc7bb3e7440ad6a25b1261044ef1b555c5484cb9f6765968747470733a2f2f6170692e6465676f2e66696e616e63652f6170692f76312f6d657461646174612f616967632f

Deployed ByteCode Sourcemap

62619:4651:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63981:252;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;63981:252:0;;;;;;;;25055:100;;;:::i;:::-;;;;;;;:::i;26714:274::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;26714:274:0;1533:203:1;26237:411:0;;;;;;:::i;:::-;;:::i;:::-;;40694:113;40782:10;:17;40694:113;;;2324:25:1;;;2312:2;2297:18;40694:113:0;2178:177:1;65784:149:0;;;;;;:::i;:::-;;:::i;27567:376::-;;;;;;:::i;:::-;;:::i;58866:147::-;;;;;;:::i;:::-;58956:7;58983:12;;;;;;;;;;:22;;;;58866:147;59275:172;;;;;;:::i;:::-;;:::i;40300:318::-;;;;;;:::i;:::-;;:::i;60373:280::-;;;;;;:::i;:::-;;:::i;64449:207::-;;;;;;:::i;:::-;;:::i;64785:375::-;;;;;;:::i;:::-;;:::i;28014:185::-;;;;;;:::i;:::-;;:::i;65168:345::-;;;;;;:::i;:::-;;:::i;40884:286::-;;;;;;:::i;:::-;;:::i;24696:292::-;;;;;;:::i;:::-;;:::i;64664:113::-;;;;;;:::i;:::-;64723:4;64747:22;;;:13;:22;;;;;;;;;64664:113;24373:261;;;;;;:::i;:::-;;:::i;48014:103::-;;;:::i;47363:87::-;47436:6;;-1:-1:-1;;;;;47436:6:0;47363:87;;57710:172;;;;;;:::i;:::-;;:::i;25224:104::-;;;:::i;64241:200::-;;;;;;:::i;:::-;;:::i;56759:49::-;;56804:4;56759:49;;27060:180;;;;;;:::i;:::-;;:::i;28270:365::-;;;;;;:::i;:::-;;:::i;65521:139::-;;;;;;:::i;:::-;;:::i;66421:846::-;;;;;;:::i;:::-;;:::i;59692:174::-;;;;;;:::i;:::-;;:::i;27311:189::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27457:25:0;;;27433:4;27457:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27311:189;48272:238;;;;;;:::i;:::-;;:::i;63981:252::-;64160:4;64189:36;64213:11;64189:23;:36::i;:::-;64182:43;63981:252;-1:-1:-1;;63981:252:0:o;25055:100::-;25109:13;25142:5;25135:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25055:100;:::o;26714:274::-;26806:7;30271:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30271:16:0;26826:110;;;;-1:-1:-1;;;26826:110:0;;7104:2:1;26826:110:0;;;7086:21:1;7143:2;7123:18;;;7116:30;7182:34;7162:18;;;7155:62;-1:-1:-1;;;7233:18:1;;;7226:42;7285:19;;26826:110:0;;;;;;;;;-1:-1:-1;26956:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26956:24:0;;26714:274::o;26237:411::-;26318:13;26334:23;26349:7;26334:14;:23::i;:::-;26318:39;;26382:5;-1:-1:-1;;;;;26376:11:0;:2;-1:-1:-1;;;;;26376:11:0;;26368:57;;;;-1:-1:-1;;;26368:57:0;;7517:2:1;26368:57:0;;;7499:21:1;7556:2;7536:18;;;7529:30;7595:34;7575:18;;;7568:62;-1:-1:-1;;;7646:18:1;;;7639:31;7687:19;;26368:57:0;7315:397:1;26368:57:0;19275:10;-1:-1:-1;;;;;26460:21:0;;;;:62;;-1:-1:-1;26485:37:0;26502:5;19275:10;27311:189;:::i;26485:37::-;26438:168;;;;-1:-1:-1;;;26438:168:0;;7919:2:1;26438:168:0;;;7901:21:1;7958:2;7938:18;;;7931:30;7997:34;7977:18;;;7970:62;8068:26;8048:18;;;8041:54;8112:19;;26438:168:0;7717:420:1;26438:168:0;26619:21;26628:2;26632:7;26619:8;:21::i;:::-;26307:341;26237:411;;:::o;65784:149::-;47436:6;;-1:-1:-1;;;;;47436:6:0;19275:10;47583:23;47575:68;;;;-1:-1:-1;;;47575:68:0;;;;;;;:::i;:::-;65898:27:::1;65911:7;65920:4;65898:12;:27::i;:::-;65784:149:::0;;:::o;27567:376::-;27776:41;19275:10;27795:12;27809:7;27776:18;:41::i;:::-;27754:140;;;;-1:-1:-1;;;27754:140:0;;;;;;;:::i;:::-;27907:28;27917:4;27923:2;27927:7;27907:9;:28::i;59275:172::-;58956:7;58983:12;;;;;;;;;;:22;;;57250:30;57261:4;19275:10;57250;:30::i;:::-;59414:25:::1;59425:4;59431:7;59414:10;:25::i;40300:318::-:0;40422:7;40472:23;40489:5;40472:16;:23::i;:::-;40464:5;:31;40442:124;;;;-1:-1:-1;;;40442:124:0;;9123:2:1;40442:124:0;;;9105:21:1;9162:2;9142:18;;;9135:30;9201:34;9181:18;;;9174:62;-1:-1:-1;;;9252:18:1;;;9245:41;9303:19;;40442:124:0;8921:407:1;40442:124:0;-1:-1:-1;;;;;;40584:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40300:318::o;60373:280::-;-1:-1:-1;;;;;60508:23:0;;19275:10;60508:23;60486:120;;;;-1:-1:-1;;;60486:120:0;;9535:2:1;60486:120:0;;;9517:21:1;9574:2;9554:18;;;9547:30;9613:34;9593:18;;;9586:62;-1:-1:-1;;;9664:18:1;;;9657:45;9719:19;;60486:120:0;9333:411:1;60486:120:0;60619:26;60631:4;60637:7;60619:11;:26::i;64449:207::-;47436:6;;-1:-1:-1;;;;;47436:6:0;19275:10;47583:23;47575:68;;;;-1:-1:-1;;;47575:68:0;;;;;;;:::i;:::-;63373:21:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;63373:21:0::1;::::0;;::::1;::::0;64527:43:::1;-1:-1:-1::0;;;;;;;;;;;64558:11:0;64527::::1;:43::i;:::-;63147:15;::::0;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;63147:15:0::1;::::0;;::::1;::::0;63373:21;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;63373:21:0;;::::1;::::0;64586:62;;63131:33;9951:25:1;;-1:-1:-1;;;;;;;;;;;9992:18:1;;;9985:34;;;;-1:-1:-1;;;;;10055:32:1;;10035:18;;;10028:60;;;;64586:62:0::1;::::0;9939:2:1;9924:18;64586:62:0::1;;;;;;;;64449:207:::0;:::o;64785:375::-;64884:7;50678:1;51276:7;;:19;51268:63;;;;-1:-1:-1;;;51268:63:0;;10301:2:1;51268:63:0;;;10283:21:1;10340:2;10320:18;;;10313:30;10379:33;10359:18;;;10352:61;10430:18;;51268:63:0;10099:355:1;51268:63:0;50678:1;51409:7;:18;63147:15:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;63147:15:0::1;::::0;;::::1;::::0;64926:32:::1;63131:33:::0;64947:10:::1;64926:7;:32::i;:::-;64904:110;;;::::0;-1:-1:-1;;;64904:110:0;;10661:2:1;64904:110:0::1;::::0;::::1;10643:21:1::0;10700:2;10680:18;;;10673:30;10739;10719:18;;;10712:58;10787:18;;64904:110:0::1;10459:352:1::0;64904:110:0::1;65025:18;65031:2;65035:7;65025:5;:18::i;:::-;65056:22;::::0;;;:13:::1;:22;::::0;;;;;:29;;-1:-1:-1;;65056:29:0::1;65081:4;65056:29;::::0;;65103:22;65070:7;;-1:-1:-1;;;;;65103:22:0;::::1;::::0;::::1;::::0;65056;65103::::1;-1:-1:-1::0;50634:1:0;51588:7;:22;65145:7;64785:375;-1:-1:-1;64785:375:0:o;28014:185::-;28152:39;28169:4;28175:2;28179:7;28152:39;;;;;;;;;;;;:16;:39::i;65168:345::-;65237:37;19275:10;65256:12;19195:98;65237:37;65215:132;;;;-1:-1:-1;;;65215:132:0;;11018:2:1;65215:132:0;;;11000:21:1;11057:2;11037:18;;;11030:30;11096:34;11076:18;;;11069:62;-1:-1:-1;;;11147:18:1;;;11140:43;11200:19;;65215:132:0;10816:409:1;65215:132:0;65358:10;65364:3;65358:5;:10::i;:::-;65427:15;;;;:10;:15;;;;;65421:29;;;;;:::i;:::-;:34;;-1:-1:-1;65417:89:0;;65479:15;;;;:10;:15;;;;;65472:22;;;:::i;:::-;65168:345;:::o;40884:286::-;40975:7;41025:30;40782:10;:17;;40694:113;41025:30;41017:5;:38;40995:132;;;;-1:-1:-1;;;40995:132:0;;11432:2:1;40995:132:0;;;11414:21:1;11471:2;11451:18;;;11444:30;11510:34;11490:18;;;11483:62;-1:-1:-1;;;11561:18:1;;;11554:42;11613:19;;40995:132:0;11230:408:1;40995:132:0;41145:10;41156:5;41145:17;;;;;;;;:::i;:::-;;;;;;;;;41138:24;;40884:286;;;:::o;24696:292::-;24784:7;24820:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24820:16:0;;24847:110;;;;-1:-1:-1;;;24847:110:0;;11977:2:1;24847:110:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:39;12155:19;;24847:110:0;11775:405:1;24373:261:0;24461:7;-1:-1:-1;;;;;24503:19:0;;24481:111;;;;-1:-1:-1;;;24481:111:0;;12387:2:1;24481:111:0;;;12369:21:1;12426:2;12406:18;;;12399:30;12465:34;12445:18;;;12438:62;-1:-1:-1;;;12516:18:1;;;12509:40;12566:19;;24481:111:0;12185:406:1;24481:111:0;-1:-1:-1;;;;;;24610:16:0;;;;;:9;:16;;;;;;;24373:261::o;48014:103::-;47436:6;;-1:-1:-1;;;;;47436:6:0;19275:10;47583:23;47575:68;;;;-1:-1:-1;;;47575:68:0;;;;;;;:::i;:::-;48079:30:::1;48106:1;48079:18;:30::i;:::-;48014:103::o:0;57710:172::-;57821:4;57845:12;;;;;;;;;;;-1:-1:-1;;;;;57845:29:0;;;;;;;;;;;;;;;57710:172::o;25224:104::-;25280:13;25313:7;25306:14;;;;;:::i;64241:200::-;47436:6;;-1:-1:-1;;;;;47436:6:0;19275:10;47583:23;47575:68;;;;-1:-1:-1;;;47575:68:0;;;;;;;:::i;:::-;63373:21:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;63373:21:0::1;::::0;;::::1;::::0;64316:42:::1;-1:-1:-1::0;;;;;;;;;;;64346:11:0;64316:10:::1;:42::i;:::-;63147:15;::::0;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;63147:15:0::1;::::0;;::::1;::::0;63373:21;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;63373:21:0;;::::1;::::0;64374:59;;63131:33;9951:25:1;;-1:-1:-1;;;;;;;;;;;9992:18:1;;;9985:34;;;;-1:-1:-1;;;;;10055:32:1;;10035:18;;;10028:60;;;;64374:59:0::1;::::0;9939:2:1;9924:18;64374:59:0::1;9749:345:1::0;27060:180:0;27180:52;19275:10;27213:8;27223;27180:18;:52::i;28270:365::-;28459:41;19275:10;28492:7;28459:18;:41::i;:::-;28437:140;;;;-1:-1:-1;;;28437:140:0;;;;;;;:::i;:::-;28588:39;28602:4;28608:2;28612:7;28621:5;28588:13;:39::i;:::-;28270:365;;;;:::o;65521:139::-;47436:6;;-1:-1:-1;;;;;47436:6:0;19275:10;47583:23;47575:68;;;;-1:-1:-1;;;47575:68:0;;;;;;;:::i;:::-;65600:7:::1;:18;65610:8:::0;65600:7;:18:::1;:::i;:::-;;65644:7;65634:18;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;65521:139:::0;:::o;66421:846::-;30247:4;30271:16;;;:7;:16;;;;;;66502:13;;-1:-1:-1;;;;;30271:16:0;66528:66;;;;-1:-1:-1;;;66528:66:0;;15849:2:1;66528:66:0;;;15831:21:1;15888:2;15868:18;;;15861:30;15927:34;15907:18;;;15900:62;-1:-1:-1;;;15978:18:1;;;15971:35;16023:19;;66528:66:0;15647:401:1;66528:66:0;66605:22;66630:10;:8;:10::i;:::-;66728:23;66754:19;;;:10;:19;;;;;66728:45;;66605:35;;-1:-1:-1;66728:23:0;;:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66855:8;66849:22;66875:1;66849:27;66845:76;;66900:9;66421:846;-1:-1:-1;;;66421:846:0:o;66845:76::-;67025:23;;:27;67021:76;;67076:9;66421:846;-1:-1:-1;;;66421:846:0:o;67021:76::-;67229:8;67239:18;:7;:16;:18::i;:::-;67212:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67198:61;;;;66421:846;;;:::o;59692:174::-;58956:7;58983:12;;;;;;;;;;:22;;;57250:30;57261:4;19275:10;57250;:30::i;:::-;59832:26:::1;59844:4;59850:7;59832:11;:26::i;48272:238::-:0;47436:6;;-1:-1:-1;;;;;47436:6:0;19275:10;47583:23;47575:68;;;;-1:-1:-1;;;47575:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48375:22:0;::::1;48353:110;;;::::0;-1:-1:-1;;;48353:110:0;;16756:2:1;48353:110:0::1;::::0;::::1;16738:21:1::0;16795:2;16775:18;;;16768:30;16834:34;16814:18;;;16807:62;-1:-1:-1;;;16885:18:1;;;16878:36;16931:19;;48353:110:0::1;16554:402:1::0;48353:110:0::1;48474:28;48493:8;48474:18;:28::i;39950:266::-:0;40068:4;-1:-1:-1;;;;;;40105:50:0;;-1:-1:-1;;;40105:50:0;;:103;;;40172:36;40196:11;40172:23;:36::i;34453:174::-;34528:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34528:29:0;-1:-1:-1;;;;;34528:29:0;;;;;;;;:24;;34582:23;34528:24;34582:14;:23::i;:::-;-1:-1:-1;;;;;34573:46:0;;;;;;;;;;;34453:174;;:::o;66089:324::-;30247:4;30271:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30271:16:0;66206:110;;;;-1:-1:-1;;;66206:110:0;;17163:2:1;66206:110:0;;;17145:21:1;17202:2;17182:18;;;17175:30;17241:34;17221:18;;;17214:62;-1:-1:-1;;;17292:18:1;;;17285:42;17344:19;;66206:110:0;16961:408:1;66206:110:0;66327:19;;;;:10;:19;;;;;:31;66349:9;66327:19;:31;:::i;:::-;;66386:7;66374:31;66395:9;66374:31;;;;;;:::i;:::-;;;;;;;;66089:324;;:::o;30476:436::-;30594:4;30271:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30271:16:0;30611:110;;;;-1:-1:-1;;;30611:110:0;;17576:2:1;30611:110:0;;;17558:21:1;17615:2;17595:18;;;17588:30;17654:34;17634:18;;;17627:62;-1:-1:-1;;;17705:18:1;;;17698:42;17757:19;;30611:110:0;17374:408:1;30611:110:0;30732:13;30748:23;30763:7;30748:14;:23::i;:::-;30732:39;;30801:5;-1:-1:-1;;;;;30790:16:0;:7;-1:-1:-1;;;;;30790:16:0;;:64;;;;30847:7;-1:-1:-1;;;;;30823:31:0;:20;30835:7;30823:11;:20::i;:::-;-1:-1:-1;;;;;30823:31:0;;30790:64;:113;;;-1:-1:-1;;;;;;27457:25:0;;;27433:4;27457:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30871:32;30782:122;30476:436;-1:-1:-1;;;;30476:436:0:o;33673:662::-;33846:4;-1:-1:-1;;;;;33819:31:0;:23;33834:7;33819:14;:23::i;:::-;-1:-1:-1;;;;;33819:31:0;;33797:118;;;;-1:-1:-1;;;33797:118:0;;17989:2:1;33797:118:0;;;17971:21:1;18028:2;18008:18;;;18001:30;18067:34;18047:18;;;18040:62;-1:-1:-1;;;18118:18:1;;;18111:35;18163:19;;33797:118:0;17787:401:1;33797:118:0;-1:-1:-1;;;;;33934:16:0;;33926:65;;;;-1:-1:-1;;;33926:65:0;;18395:2:1;33926:65:0;;;18377:21:1;18434:2;18414:18;;;18407:30;18473:34;18453:18;;;18446:62;-1:-1:-1;;;18524:18:1;;;18517:34;18568:19;;33926:65:0;18193:400:1;33926:65:0;34004:39;34025:4;34031:2;34035:7;34004:20;:39::i;:::-;34108:29;34125:1;34129:7;34108:8;:29::i;:::-;-1:-1:-1;;;;;34150:15:0;;;;;;:9;:15;;;;;:20;;34169:1;;34150:15;:20;;34169:1;;34150:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34181:13:0;;;;;;:9;:13;;;;;:18;;34198:1;;34181:13;:18;;34198:1;;34181:18;:::i;:::-;;;;-1:-1:-1;;34210:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34210:21:0;-1:-1:-1;;;;;34210:21:0;;;;;;;;;34249:27;;34210:16;;34249:27;;;;;;;26307:341;26237:411;;:::o;58172:505::-;58261:22;58269:4;58275:7;58261;:22::i;:::-;58256:414;;58449:41;58477:7;-1:-1:-1;;;;;58449:41:0;58487:2;58449:19;:41::i;:::-;58563:38;58591:4;58598:2;58563:19;:38::i;:::-;58354:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;58354:270:0;;;;;;;;;;-1:-1:-1;;;58300:358:0;;;;;;;:::i;61936:238::-;62020:22;62028:4;62034:7;62020;:22::i;:::-;62015:152;;62059:6;:12;;;;;;;;;;;-1:-1:-1;;;;;62059:29:0;;;;;;;;;:36;;-1:-1:-1;;62059:36:0;62091:4;62059:36;;;62142:12;19275:10;;19195:98;62142:12;-1:-1:-1;;;;;62115:40:0;62133:7;-1:-1:-1;;;;;62115:40:0;62127:4;62115:40;;;;;;;;;;61936:238;;:::o;62306:239::-;62390:22;62398:4;62404:7;62390;:22::i;:::-;62386:152;;;62461:5;62429:12;;;;;;;;;;;-1:-1:-1;;;;;62429:29:0;;;;;;;;;;:37;;-1:-1:-1;;62429:37:0;;;62486:40;19275:10;;62429:12;;62486:40;;62461:5;62486:40;62306:239;;:::o;32248:439::-;-1:-1:-1;;;;;32328:16:0;;32320:61;;;;-1:-1:-1;;;32320:61:0;;20012:2:1;32320:61:0;;;19994:21:1;;;20031:18;;;20024:30;20090:34;20070:18;;;20063:62;20142:18;;32320:61:0;19810:356:1;32320:61:0;30247:4;30271:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30271:16:0;:30;32392:58;;;;-1:-1:-1;;;32392:58:0;;20373:2:1;32392:58:0;;;20355:21:1;20412:2;20392:18;;;20385:30;20451;20431:18;;;20424:58;20499:18;;32392:58:0;20171:352:1;32392:58:0;32463:45;32492:1;32496:2;32500:7;32463:20;:45::i;:::-;-1:-1:-1;;;;;32521:13:0;;;;;;:9;:13;;;;;:18;;32538:1;;32521:13;:18;;32538:1;;32521:18;:::i;:::-;;;;-1:-1:-1;;32550:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32550:21:0;-1:-1:-1;;;;;32550:21:0;;;;;;;;32589:33;;32550:16;;;32589:33;;32550:16;;32589:33;65784:149;;:::o;32916:420::-;32976:13;32992:23;33007:7;32992:14;:23::i;:::-;32976:39;;33028:48;33049:5;33064:1;33068:7;33028:20;:48::i;:::-;33117:29;33134:1;33138:7;33117:8;:29::i;:::-;-1:-1:-1;;;;;33159:16:0;;;;;;:9;:16;;;;;:21;;33179:1;;33159:16;:21;;33179:1;;33159:21;:::i;:::-;;;;-1:-1:-1;;33198:16:0;;;;:7;:16;;;;;;33191:23;;-1:-1:-1;;;;;;33191:23:0;;;33232:36;33206:7;;33198:16;-1:-1:-1;;;;;33232:36:0;;;;;33198:16;;33232:36;65784:149;;:::o;48670:191::-;48763:6;;;-1:-1:-1;;;;;48780:17:0;;;-1:-1:-1;;;;;;48780:17:0;;;;;;;48813:40;;48763:6;;;48780:17;48763:6;;48813:40;;48744:16;;48813:40;48733:128;48670:191;:::o;61312:112::-;61391:25;61402:4;61408:7;61391:10;:25::i;34769:315::-;34924:8;-1:-1:-1;;;;;34915:17:0;:5;-1:-1:-1;;;;;34915:17:0;;34907:55;;;;-1:-1:-1;;;34907:55:0;;20730:2:1;34907:55:0;;;20712:21:1;20769:2;20749:18;;;20742:30;20808:27;20788:18;;;20781:55;20853:18;;34907:55:0;20528:349:1;34907:55:0;-1:-1:-1;;;;;34973:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34973:46:0;;;;;;;;;;35035:41;;540::1;;;35035::0;;513:18:1;35035:41:0;;;;;;;34769:315;;;:::o;29517:352::-;29674:28;29684:4;29690:2;29694:7;29674:9;:28::i;:::-;29735:48;29758:4;29764:2;29768:7;29777:5;29735:22;:48::i;:::-;29713:148;;;;-1:-1:-1;;;29713:148:0;;;;;;;:::i;65668:108::-;65728:13;65761:7;65754:14;;;;;:::i;19772:723::-;19828:13;20049:5;20058:1;20049:10;20045:53;;-1:-1:-1;;20076:10:0;;;;;;;;;;;;-1:-1:-1;;;20076:10:0;;;;;19772:723::o;20045:53::-;20123:5;20108:12;20164:78;20171:9;;20164:78;;20197:8;;;;:::i;:::-;;-1:-1:-1;20220:10:0;;-1:-1:-1;20228:2:0;20220:10;;:::i;:::-;;;20164:78;;;20252:19;20284:6;20274:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20274:17:0;;20252:39;;20302:154;20309:10;;20302:154;;20336:11;20346:1;20336:11;;:::i;:::-;;-1:-1:-1;20405:10:0;20413:2;20405:5;:10;:::i;:::-;20392:24;;:2;:24;:::i;:::-;20379:39;;20362:6;20369;20362:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20362:56:0;;;;;;;;-1:-1:-1;20433:11:0;20442:2;20433:11;;:::i;:::-;;;20302:154;;23988:321;24106:4;-1:-1:-1;;;;;;24143:40:0;;-1:-1:-1;;;24143:40:0;;:105;;-1:-1:-1;;;;;;;24200:48:0;;-1:-1:-1;;;24200:48:0;24143:105;:158;;;;24265:36;24289:11;24265:23;:36::i;41783:589::-;-1:-1:-1;;;;;41989:18:0;;41985:187;;42024:40;42056:7;43199:10;:17;;43172:24;;;;:15;:24;;;;;:44;;;43227:24;;;;;;;;;;;;43095:164;42024:40;41985:187;;;42094:2;-1:-1:-1;;;;;42086:10:0;:4;-1:-1:-1;;;;;42086:10:0;;42082:90;;42113:47;42146:4;42152:7;42113:32;:47::i;:::-;-1:-1:-1;;;;;42186:16:0;;42182:183;;42219:45;42256:7;42219:36;:45::i;42182:183::-;42292:4;-1:-1:-1;;;;;42286:10:0;:2;-1:-1:-1;;;;;42286:10:0;;42282:83;;42313:40;42341:2;42345:7;42313:27;:40::i;21073:476::-;21173:13;21199:19;21231:10;21235:6;21231:1;:10;:::i;:::-;:14;;21244:1;21231:14;:::i;:::-;21221:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21221:25:0;;21199:47;;-1:-1:-1;;;21257:6:0;21264:1;21257:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21257:15:0;;;;;;;;;-1:-1:-1;;;21283:6:0;21290:1;21283:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;21283:15:0;;;;;;;;-1:-1:-1;21314:9:0;21326:10;21330:6;21326:1;:10;:::i;:::-;:14;;21339:1;21326:14;:::i;:::-;21314:26;;21309:135;21346:1;21342;:5;21309:135;;;-1:-1:-1;;;21394:5:0;21402:3;21394:11;21381:25;;;;;;;:::i;:::-;;;;21369:6;21376:1;21369:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;21369:37:0;;;;;;;;-1:-1:-1;21431:1:0;21421:11;;;;;21349:3;;;:::i;:::-;;;21309:135;;;-1:-1:-1;21462:10:0;;21454:55;;;;-1:-1:-1;;;21454:55:0;;22331:2:1;21454:55:0;;;22313:21:1;;;22350:18;;;22343:30;22409:34;22389:18;;;22382:62;22461:18;;21454:55:0;22129:356:1;21454:55:0;21534:6;21073:476;-1:-1:-1;;;21073:476:0:o;35649:980::-;35804:4;-1:-1:-1;;;;;35825:13:0;;11079:19;:23;35821:801;;35878:175;;-1:-1:-1;;;35878:175:0;;-1:-1:-1;;;;;35878:36:0;;;;;:175;;19275:10;;35972:4;;35999:7;;36029:5;;35878:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35878:175:0;;;;;;;;-1:-1:-1;;35878:175:0;;;;;;;;;;;;:::i;:::-;;;35857:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36236:6;:13;36253:1;36236:18;36232:320;;36279:108;;-1:-1:-1;;;36279:108:0;;;;;;;:::i;36232:320::-;36502:6;36496:13;36487:6;36483:2;36479:15;36472:38;35857:710;-1:-1:-1;;;;;;36117:51:0;-1:-1:-1;;;36117:51:0;;-1:-1:-1;36110:58:0;;35821:801;-1:-1:-1;36606:4:0;35649:980;;;;;;:::o;57372:246::-;57473:4;-1:-1:-1;;;;;;57510:47:0;;-1:-1:-1;;;57510:47:0;;:100;;-1:-1:-1;;;;;;;;;;22542:40:0;;;57574:36;22417:173;43886:1013;44177:22;44227:1;44202:22;44219:4;44202:16;:22::i;:::-;:26;;;;:::i;:::-;44239:18;44260:26;;;:17;:26;;;;;;44177:51;;-1:-1:-1;44393:28:0;;;44389:328;;-1:-1:-1;;;;;44460:18:0;;44438:19;44460:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44511:30;;;;;;:44;;;44628:30;;:17;:30;;;;;:43;;;44389:328;-1:-1:-1;44813:26:0;;;;:17;:26;;;;;;;;44806:33;;;-1:-1:-1;;;;;44857:18:0;;;;;:12;:18;;;;;:34;;;;;;;44850:41;43886:1013::o;45194:1079::-;45472:10;:17;45447:22;;45472:21;;45492:1;;45472:21;:::i;:::-;45504:18;45525:24;;;:15;:24;;;;;;45898:10;:26;;45447:46;;-1:-1:-1;45525:24:0;;45447:46;;45898:26;;;;;;:::i;:::-;;;;;;;;;45876:48;;45962:11;45937:10;45948;45937:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46042:28;;;:15;:28;;;;;;;:41;;;46214:24;;;;;46207:31;46249:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45265:1008;;;45194:1079;:::o;42673:221::-;42758:14;42775:20;42792:2;42775:16;:20::i;:::-;-1:-1:-1;;;;;42806:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42851:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42673:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:127::-;2421:10;2416:3;2412:20;2409:1;2402:31;2452:4;2449:1;2442:15;2476:4;2473:1;2466:15;2492:632;2557:5;2587:18;2628:2;2620:6;2617:14;2614:40;;;2634:18;;:::i;:::-;2709:2;2703:9;2677:2;2763:15;;-1:-1:-1;;2759:24:1;;;2785:2;2755:33;2751:42;2739:55;;;2809:18;;;2829:22;;;2806:46;2803:72;;;2855:18;;:::i;:::-;2895:10;2891:2;2884:22;2924:6;2915:15;;2954:6;2946;2939:22;2994:3;2985:6;2980:3;2976:16;2973:25;2970:45;;;3011:1;3008;3001:12;2970:45;3061:6;3056:3;3049:4;3041:6;3037:17;3024:44;3116:1;3109:4;3100:6;3092;3088:19;3084:30;3077:41;;;;2492:632;;;;;:::o;3129:222::-;3172:5;3225:3;3218:4;3210:6;3206:17;3202:27;3192:55;;3243:1;3240;3233:12;3192:55;3265:80;3341:3;3332:6;3319:20;3312:4;3304:6;3300:17;3265:80;:::i;3356:390::-;3434:6;3442;3495:2;3483:9;3474:7;3470:23;3466:32;3463:52;;;3511:1;3508;3501:12;3463:52;3547:9;3534:23;3524:33;;3608:2;3597:9;3593:18;3580:32;3635:18;3627:6;3624:30;3621:50;;;3667:1;3664;3657:12;3621:50;3690;3732:7;3723:6;3712:9;3708:22;3690:50;:::i;:::-;3680:60;;;3356:390;;;;;:::o;3751:328::-;3828:6;3836;3844;3897:2;3885:9;3876:7;3872:23;3868:32;3865:52;;;3913:1;3910;3903:12;3865:52;3936:29;3955:9;3936:29;:::i;:::-;3926:39;;3984:38;4018:2;4007:9;4003:18;3984:38;:::i;:::-;3974:48;;4069:2;4058:9;4054:18;4041:32;4031:42;;3751:328;;;;;:::o;4451:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4632:9;4619:23;4609:33;;4661:38;4695:2;4684:9;4680:18;4661:38;:::i;:::-;4651:48;;4451:254;;;;;:::o;4710:186::-;4769:6;4822:2;4810:9;4801:7;4797:23;4793:32;4790:52;;;4838:1;4835;4828:12;4790:52;4861:29;4880:9;4861:29;:::i;4901:347::-;4966:6;4974;5027:2;5015:9;5006:7;5002:23;4998:32;4995:52;;;5043:1;5040;5033:12;4995:52;5066:29;5085:9;5066:29;:::i;:::-;5056:39;;5145:2;5134:9;5130:18;5117:32;5192:5;5185:13;5178:21;5171:5;5168:32;5158:60;;5214:1;5211;5204:12;5158:60;5237:5;5227:15;;;4901:347;;;;;:::o;5253:667::-;5348:6;5356;5364;5372;5425:3;5413:9;5404:7;5400:23;5396:33;5393:53;;;5442:1;5439;5432:12;5393:53;5465:29;5484:9;5465:29;:::i;:::-;5455:39;;5513:38;5547:2;5536:9;5532:18;5513:38;:::i;:::-;5503:48;;5598:2;5587:9;5583:18;5570:32;5560:42;;5653:2;5642:9;5638:18;5625:32;5680:18;5672:6;5669:30;5666:50;;;5712:1;5709;5702:12;5666:50;5735:22;;5788:4;5780:13;;5776:27;-1:-1:-1;5766:55:1;;5817:1;5814;5807:12;5766:55;5840:74;5906:7;5901:2;5888:16;5883:2;5879;5875:11;5840:74;:::i;:::-;5830:84;;;5253:667;;;;;;;:::o;5925:322::-;5994:6;6047:2;6035:9;6026:7;6022:23;6018:32;6015:52;;;6063:1;6060;6053:12;6015:52;6103:9;6090:23;6136:18;6128:6;6125:30;6122:50;;;6168:1;6165;6158:12;6122:50;6191;6233:7;6224:6;6213:9;6209:22;6191:50;:::i;6252:260::-;6320:6;6328;6381:2;6369:9;6360:7;6356:23;6352:32;6349:52;;;6397:1;6394;6387:12;6349:52;6420:29;6439:9;6420:29;:::i;:::-;6410:39;;6468:38;6502:2;6491:9;6487:18;6468:38;:::i;6517:380::-;6596:1;6592:12;;;;6639;;;6660:61;;6714:4;6706:6;6702:17;6692:27;;6660:61;6767:2;6759:6;6756:14;6736:18;6733:38;6730:161;;6813:10;6808:3;6804:20;6801:1;6794:31;6848:4;6845:1;6838:15;6876:4;6873:1;6866:15;6730:161;;6517:380;;;:::o;8142:356::-;8344:2;8326:21;;;8363:18;;;8356:30;8422:34;8417:2;8402:18;;8395:62;8489:2;8474:18;;8142:356::o;8503:413::-;8705:2;8687:21;;;8744:2;8724:18;;;8717:30;8783:34;8778:2;8763:18;;8756:62;-1:-1:-1;;;8849:2:1;8834:18;;8827:47;8906:3;8891:19;;8503:413::o;11643:127::-;11704:10;11699:3;11695:20;11692:1;11685:31;11735:4;11732:1;11725:15;11759:4;11756:1;11749:15;12722:545;12824:2;12819:3;12816:11;12813:448;;;12860:1;12885:5;12881:2;12874:17;12930:4;12926:2;12916:19;13000:2;12988:10;12984:19;12981:1;12977:27;12971:4;12967:38;13036:4;13024:10;13021:20;13018:47;;;-1:-1:-1;13059:4:1;13018:47;13114:2;13109:3;13105:12;13102:1;13098:20;13092:4;13088:31;13078:41;;13169:82;13187:2;13180:5;13177:13;13169:82;;;13232:17;;;13213:1;13202:13;13169:82;;;13173:3;;;12722:545;;;:::o;13443:1352::-;13569:3;13563:10;13596:18;13588:6;13585:30;13582:56;;;13618:18;;:::i;:::-;13647:97;13737:6;13697:38;13729:4;13723:11;13697:38;:::i;:::-;13691:4;13647:97;:::i;:::-;13799:4;;13863:2;13852:14;;13880:1;13875:663;;;;14582:1;14599:6;14596:89;;;-1:-1:-1;14651:19:1;;;14645:26;14596:89;-1:-1:-1;;13400:1:1;13396:11;;;13392:24;13388:29;13378:40;13424:1;13420:11;;;13375:57;14698:81;;13845:944;;13875:663;12669:1;12662:14;;;12706:4;12693:18;;-1:-1:-1;;13911:20:1;;;14029:236;14043:7;14040:1;14037:14;14029:236;;;14132:19;;;14126:26;14111:42;;14224:27;;;;14192:1;14180:14;;;;14059:19;;14029:236;;;14033:3;14293:6;14284:7;14281:19;14278:201;;;14354:19;;;14348:26;-1:-1:-1;;14437:1:1;14433:14;;;14449:3;14429:24;14425:37;14421:42;14406:58;14391:74;;14278:201;-1:-1:-1;;;;;14525:1:1;14509:14;;;14505:22;14492:36;;-1:-1:-1;13443:1352:1:o;14800:842::-;14928:3;14957:1;14990:6;14984:13;15020:36;15046:9;15020:36;:::i;:::-;15075:1;15092:18;;;15119:133;;;;15266:1;15261:356;;;;15085:532;;15119:133;-1:-1:-1;;15152:24:1;;15140:37;;15225:14;;15218:22;15206:35;;15197:45;;;-1:-1:-1;15119:133:1;;15261:356;15292:6;15289:1;15282:17;15322:4;15367:2;15364:1;15354:16;15392:1;15406:165;15420:6;15417:1;15414:13;15406:165;;;15498:14;;15485:11;;;15478:35;15541:16;;;;15435:10;;15406:165;;;15410:3;;;15600:6;15595:3;15591:16;15584:23;;15085:532;-1:-1:-1;15633:3:1;;14800:842;-1:-1:-1;;;;;;14800:842:1:o;16053:496::-;16232:3;16270:6;16264:13;16286:66;16345:6;16340:3;16333:4;16325:6;16321:17;16286:66;:::i;:::-;16415:13;;16374:16;;;;16437:70;16415:13;16374:16;16484:4;16472:17;;16437:70;:::i;:::-;16523:20;;16053:496;-1:-1:-1;;;;16053:496:1:o;18598:127::-;18659:10;18654:3;18650:20;18647:1;18640:31;18690:4;18687:1;18680:15;18714:4;18711:1;18704:15;18730:128;18797:9;;;18818:11;;;18815:37;;;18832:18;;:::i;18863:125::-;18928:9;;;18949:10;;;18946:36;;;18962:18;;:::i;18993:812::-;19404:25;19399:3;19392:38;19374:3;19459:6;19453:13;19475:75;19543:6;19538:2;19533:3;19529:12;19522:4;19514:6;19510:17;19475:75;:::i;:::-;-1:-1:-1;;;19609:2:1;19569:16;;;19601:11;;;19594:40;19659:13;;19681:76;19659:13;19743:2;19735:11;;19728:4;19716:17;;19681:76;:::i;:::-;19777:17;19796:2;19773:26;;18993:812;-1:-1:-1;;;;18993:812:1:o;20882:414::-;21084:2;21066:21;;;21123:2;21103:18;;;21096:30;21162:34;21157:2;21142:18;;21135:62;-1:-1:-1;;;21228:2:1;21213:18;;21206:48;21286:3;21271:19;;20882:414::o;21301:135::-;21340:3;21361:17;;;21358:43;;21381:18;;:::i;:::-;-1:-1:-1;21428:1:1;21417:13;;21301:135::o;21441:127::-;21502:10;21497:3;21493:20;21490:1;21483:31;21533:4;21530:1;21523:15;21557:4;21554:1;21547:15;21573:120;21613:1;21639;21629:35;;21644:18;;:::i;:::-;-1:-1:-1;21678:9:1;;21573:120::o;21698:112::-;21730:1;21756;21746:35;;21761:18;;:::i;:::-;-1:-1:-1;21795:9:1;;21698:112::o;21815:168::-;21888:9;;;21919;;21936:15;;;21930:22;;21916:37;21906:71;;21957:18;;:::i;21988:136::-;22027:3;22055:5;22045:39;;22064:18;;:::i;:::-;-1:-1:-1;;;22100:18:1;;21988:136::o;22490:489::-;-1:-1:-1;;;;;22759:15:1;;;22741:34;;22811:15;;22806:2;22791:18;;22784:43;22858:2;22843:18;;22836:34;;;22906:3;22901:2;22886:18;;22879:31;;;22684:4;;22927:46;;22953:19;;22945:6;22927:46;:::i;:::-;22919:54;22490:489;-1:-1:-1;;;;;;22490:489:1:o;22984:249::-;23053:6;23106:2;23094:9;23085:7;23081:23;23077:32;23074:52;;;23122:1;23119;23112:12;23074:52;23154:9;23148:16;23173:30;23197:5;23173:30;:::i;23238:127::-;23299:10;23294:3;23290:20;23287:1;23280:31;23330:4;23327:1;23320:15;23354:4;23351:1;23344:15

Metadata Hash

ipfs://fd7e44751bde307307cb7ba48f8dd8d41f793d6be99e017e54656898b0144586
Loading