Contract 0x2edf0f29b463816e09fff02dec29545dcc9a3207

Contract Overview

Balance:
0 FTM
Txn Hash Method
Block
From
To
Value [Txn Fee]
0x4c3d846f7e7169a461032b1824b09d2c2f497ca9d80b1aa80d860125f66188f6Burn72299142022-02-04 13:40:05409 days 2 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  0x2edf0f29b463816e09fff02dec29545dcc9a32070 FTM0.007965516832
0x3a8d96c8e47597d8312bd82adfa37fbf750f59ac38612e1aaccf6f0c18d22828Safe Mint72291642022-02-04 13:11:09409 days 2 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  0x2edf0f29b463816e09fff02dec29545dcc9a32070 FTM0.04548509329
0x4d5cbaab1f3d2ebef390576052beb6349c69c4c2496c00770c8304d91d1372320x6080604072282102022-02-04 12:32:52409 days 3 hrs ago0xd3acf352d27b64064857e916c5e78deccbb0716d IN  Create: Dach0 FTM0.368457091816
[ Download CSV Export 
Latest 1 internal transaction
Parent Txn Hash Block From To Value
0x4d5cbaab1f3d2ebef390576052beb6349c69c4c2496c00770c8304d91d13723272282102022-02-04 12:32:52409 days 3 hrs ago 0xd3acf352d27b64064857e916c5e78deccbb0716d  Contract Creation0 FTM
[ Download CSV Export 
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Dach

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at FtmScan.com on 2022-02-04
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts 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/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// 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/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts 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/extensions/IERC721Enumerable.sol


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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

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

        return super.tokenURI(tokenId);
    }

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

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// 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: contracts/dach1.sol


pragma solidity ^0.8.2;







/// @custom:security-contact [email protected]
contract Dach is ERC721, ERC721Enumerable, ERC721URIStorage, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    constructor() ERC721("Dach", "DCH") {}

    function safeMint(address to, string memory uri) public onlyOwner {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"to","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"safeMint","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":"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"}]

60806040523480156200001157600080fd5b506040805180820182526004815263088c2c6d60e31b60208083019182528351808501909452600384526208886960eb1b9084015281519192916200005991600091620000e8565b5080516200006f906001906020840190620000e8565b5050506200008c620000866200009260201b60201c565b62000096565b620001cb565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f6906200018e565b90600052602060002090601f0160209004810192826200011a576000855562000165565b82601f106200013557805160ff191683800117855562000165565b8280016001018555821562000165579182015b828111156200016557825182559160200191906001019062000148565b506200017392915062000177565b5090565b5b8082111562000173576000815560010162000178565b600181811c90821680620001a357607f821691505b60208210811415620001c557634e487b7160e01b600052602260045260246000fd5b50919050565b611ee680620001db6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb46514610271578063b88d4fde14610284578063c87b56dd14610297578063d204c45e146102aa578063e985e9c5146102bd578063f2fde38b146102f957600080fd5b80636352211e1461022a57806370a082311461023d578063715018a6146102505780638da5cb5b1461025857806395d89b411461026957600080fd5b806323b872dd116100ff57806323b872dd146101cb5780632f745c59146101de57806342842e0e146101f157806342966c68146102045780634f6ccce71461021757600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806318160ddd146101b9575b600080fd5b61014f61014a366004611933565b61030c565b60405190151581526020015b60405180910390f35b61016c61031d565b60405161015b91906119a8565b61018c6101873660046119bb565b6103af565b6040516001600160a01b03909116815260200161015b565b6101b76101b23660046119f0565b61043c565b005b6008545b60405190815260200161015b565b6101b76101d9366004611a1a565b610552565b6101bd6101ec3660046119f0565b610584565b6101b76101ff366004611a1a565b61061a565b6101b76102123660046119bb565b610635565b6101bd6102253660046119bb565b6106af565b61018c6102383660046119bb565b610742565b6101bd61024b366004611a56565b6107b9565b6101b7610840565b600b546001600160a01b031661018c565b61016c610876565b6101b761027f366004611a71565b610885565b6101b7610292366004611b39565b610894565b61016c6102a53660046119bb565b6108cc565b6101b76102b8366004611bb5565b6108d7565b61014f6102cb366004611c17565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101b7610307366004611a56565b610930565b6000610317826109c8565b92915050565b60606000805461032c90611c4a565b80601f016020809104026020016040519081016040528092919081815260200182805461035890611c4a565b80156103a55780601f1061037a576101008083540402835291602001916103a5565b820191906000526020600020905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b60006103ba826109ed565b6104205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061044782610742565b9050806001600160a01b0316836001600160a01b031614156104b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610417565b336001600160a01b03821614806104d157506104d181336102cb565b6105435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610417565b61054d8383610a0a565b505050565b61055d335b82610a78565b6105795760405162461bcd60e51b815260040161041790611c85565b61054d838383610b62565b600061058f836107b9565b82106105f15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610417565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61054d83838360405180602001604052806000815250610894565b61063e33610557565b6106a35760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610417565b6106ac81610d0d565b50565b60006106ba60085490565b821061071d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610417565b6008828154811061073057610730611cd6565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103175760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610417565b60006001600160a01b0382166108245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610417565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0316331461086a5760405162461bcd60e51b815260040161041790611cec565b6108746000610d16565b565b60606001805461032c90611c4a565b610890338383610d68565b5050565b61089e3383610a78565b6108ba5760405162461bcd60e51b815260040161041790611c85565b6108c684848484610e37565b50505050565b606061031782610e6a565b600b546001600160a01b031633146109015760405162461bcd60e51b815260040161041790611cec565b600061090c600c5490565b905061091c600c80546001019055565b6109268382610fd9565b61054d8183610ff3565b600b546001600160a01b0316331461095a5760405162461bcd60e51b815260040161041790611cec565b6001600160a01b0381166109bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610417565b6106ac81610d16565b60006001600160e01b0319821663780e9d6360e01b148061031757506103178261107e565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a3f82610742565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a83826109ed565b610ae45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610417565b6000610aef83610742565b9050806001600160a01b0316846001600160a01b03161480610b2a5750836001600160a01b0316610b1f846103af565b6001600160a01b0316145b80610b5a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b7582610742565b6001600160a01b031614610bdd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610417565b6001600160a01b038216610c3f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610417565b610c4a8383836110ce565b610c55600082610a0a565b6001600160a01b0383166000908152600360205260408120805460019290610c7e908490611d37565b90915550506001600160a01b0382166000908152600360205260408120805460019290610cac908490611d4e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106ac816110d9565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610dca5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610417565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610e42848484610b62565b610e4e84848484611119565b6108c65760405162461bcd60e51b815260040161041790611d66565b6060610e75826109ed565b610edb5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610417565b6000828152600a602052604081208054610ef490611c4a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2090611c4a565b8015610f6d5780601f10610f4257610100808354040283529160200191610f6d565b820191906000526020600020905b815481529060010190602001808311610f5057829003601f168201915b505050505090506000610f8b60408051602081019091526000815290565b9050805160001415610f9e575092915050565b815115610fd0578082604051602001610fb8929190611db8565b60405160208183030381529060405292505050919050565b610b5a84611217565b6108908282604051806020016040528060008152506112ef565b610ffc826109ed565b61105f5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610417565b6000828152600a60209081526040909120825161054d9284019061184e565b60006001600160e01b031982166380ac58cd60e01b14806110af57506001600160e01b03198216635b5e139f60e01b145b8061031757506301ffc9a760e01b6001600160e01b0319831614610317565b61054d838383611322565b6110e2816113da565b6000818152600a6020526040902080546110fb90611c4a565b1590506106ac576000818152600a602052604081206106ac916118d2565b60006001600160a01b0384163b1561120c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061115d903390899088908890600401611de7565b6020604051808303816000875af1925050508015611198575060408051601f3d908101601f1916820190925261119591810190611e24565b60015b6111f2573d8080156111c6576040519150601f19603f3d011682016040523d82523d6000602084013e6111cb565b606091505b5080516111ea5760405162461bcd60e51b815260040161041790611d66565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b5a565b506001949350505050565b6060611222826109ed565b6112865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610417565b600061129d60408051602081019091526000815290565b905060008151116112bd57604051806020016040528060008152506112e8565b806112c784611481565b6040516020016112d8929190611db8565b6040516020818303038152906040525b9392505050565b6112f9838361157f565b6113066000848484611119565b61054d5760405162461bcd60e51b815260040161041790611d66565b6001600160a01b03831661137d5761137881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6113a0565b816001600160a01b0316836001600160a01b0316146113a0576113a083826116be565b6001600160a01b0382166113b75761054d8161175b565b826001600160a01b0316826001600160a01b03161461054d5761054d828261180a565b60006113e582610742565b90506113f3816000846110ce565b6113fe600083610a0a565b6001600160a01b0381166000908152600360205260408120805460019290611427908490611d37565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6060816114a55750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114cf57806114b981611e41565b91506114c89050600a83611e72565b91506114a9565b60008167ffffffffffffffff8111156114ea576114ea611aad565b6040519080825280601f01601f191660200182016040528015611514576020820181803683370190505b5090505b8415610b5a57611529600183611d37565b9150611536600a86611e86565b611541906030611d4e565b60f81b81838151811061155657611556611cd6565b60200101906001600160f81b031916908160001a905350611578600a86611e72565b9450611518565b6001600160a01b0382166115d55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610417565b6115de816109ed565b1561162b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610417565b611637600083836110ce565b6001600160a01b0382166000908152600360205260408120805460019290611660908490611d4e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016116cb846107b9565b6116d59190611d37565b600083815260076020526040902054909150808214611728576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061176d90600190611d37565b6000838152600960205260408120546008805493945090928490811061179557611795611cd6565b9060005260206000200154905080600883815481106117b6576117b6611cd6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117ee576117ee611e9a565b6001900381819060005260206000200160009055905550505050565b6000611815836107b9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461185a90611c4a565b90600052602060002090601f01602090048101928261187c57600085556118c2565b82601f1061189557805160ff19168380011785556118c2565b828001600101855582156118c2579182015b828111156118c25782518255916020019190600101906118a7565b506118ce929150611908565b5090565b5080546118de90611c4a565b6000825580601f106118ee575050565b601f0160209004906000526020600020908101906106ac91905b5b808211156118ce5760008155600101611909565b6001600160e01b0319811681146106ac57600080fd5b60006020828403121561194557600080fd5b81356112e88161191d565b60005b8381101561196b578181015183820152602001611953565b838111156108c65750506000910152565b60008151808452611994816020860160208601611950565b601f01601f19169290920160200192915050565b6020815260006112e8602083018461197c565b6000602082840312156119cd57600080fd5b5035919050565b80356001600160a01b03811681146119eb57600080fd5b919050565b60008060408385031215611a0357600080fd5b611a0c836119d4565b946020939093013593505050565b600080600060608486031215611a2f57600080fd5b611a38846119d4565b9250611a46602085016119d4565b9150604084013590509250925092565b600060208284031215611a6857600080fd5b6112e8826119d4565b60008060408385031215611a8457600080fd5b611a8d836119d4565b915060208301358015158114611aa257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611ade57611ade611aad565b604051601f8501601f19908116603f01168101908282118183101715611b0657611b06611aad565b81604052809350858152868686011115611b1f57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611b4f57600080fd5b611b58856119d4565b9350611b66602086016119d4565b925060408501359150606085013567ffffffffffffffff811115611b8957600080fd5b8501601f81018713611b9a57600080fd5b611ba987823560208401611ac3565b91505092959194509250565b60008060408385031215611bc857600080fd5b611bd1836119d4565b9150602083013567ffffffffffffffff811115611bed57600080fd5b8301601f81018513611bfe57600080fd5b611c0d85823560208401611ac3565b9150509250929050565b60008060408385031215611c2a57600080fd5b611c33836119d4565b9150611c41602084016119d4565b90509250929050565b600181811c90821680611c5e57607f821691505b60208210811415611c7f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611d4957611d49611d21565b500390565b60008219821115611d6157611d61611d21565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611dca818460208801611950565b835190830190611dde818360208801611950565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e1a9083018461197c565b9695505050505050565b600060208284031215611e3657600080fd5b81516112e88161191d565b6000600019821415611e5557611e55611d21565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611e8157611e81611e5c565b500490565b600082611e9557611e95611e5c565b500690565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205f575ab7d2d32076c9d74fe0696370cf5619a06d39a644e67865817fb386453664736f6c634300080b0033

Deployed ByteCode Sourcemap

48794:1299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49878:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;49878:212:0;;;;;;;;27225:100;;;:::i;:::-;;;;;;;:::i;28784:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28784:221:0;1528:203:1;28307:411:0;;;;;;:::i;:::-;;:::i;:::-;;43164:113;43252:10;:17;43164:113;;;2319:25:1;;;2307:2;2292:18;43164:113:0;2173:177:1;29534:339:0;;;;;;:::i;:::-;;:::i;42832:256::-;;;;;;:::i;:::-;;:::i;29944:185::-;;;;;;:::i;:::-;;:::i;39256:245::-;;;;;;:::i;:::-;;:::i;43354:233::-;;;;;;:::i;:::-;;:::i;26919:239::-;;;;;;:::i;:::-;;:::i;26649:208::-;;;;;;:::i;:::-;;:::i;6195:103::-;;;:::i;5544:87::-;5617:6;;-1:-1:-1;;;;;5617:6:0;5544:87;;27394:104;;;:::i;29077:155::-;;;;;;:::i;:::-;;:::i;30200:328::-;;;;;;:::i;:::-;;:::i;49674:196::-;;;;;;:::i;:::-;;:::i;49025:236::-;;;;;;:::i;:::-;;:::i;29303:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29303:164;6453:201;;;;;;:::i;:::-;;:::i;49878:212::-;50017:4;50046:36;50070:11;50046:23;:36::i;:::-;50039:43;49878:212;-1:-1:-1;;49878:212:0:o;27225:100::-;27279:13;27312:5;27305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27225:100;:::o;28784:221::-;28860:7;28888:16;28896:7;28888;:16::i;:::-;28880:73;;;;-1:-1:-1;;;28880:73:0;;6051:2:1;28880:73:0;;;6033:21:1;6090:2;6070:18;;;6063:30;6129:34;6109:18;;;6102:62;-1:-1:-1;;;6180:18:1;;;6173:42;6232:19;;28880:73:0;;;;;;;;;-1:-1:-1;28973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28973:24:0;;28784:221::o;28307:411::-;28388:13;28404:23;28419:7;28404:14;:23::i;:::-;28388:39;;28452:5;-1:-1:-1;;;;;28446:11:0;:2;-1:-1:-1;;;;;28446:11:0;;;28438:57;;;;-1:-1:-1;;;28438:57:0;;6464:2:1;28438:57:0;;;6446:21:1;6503:2;6483:18;;;6476:30;6542:34;6522:18;;;6515:62;-1:-1:-1;;;6593:18:1;;;6586:31;6634:19;;28438:57:0;6262:397:1;28438:57:0;4348:10;-1:-1:-1;;;;;28530:21:0;;;;:62;;-1:-1:-1;28555:37:0;28572:5;4348:10;29303:164;:::i;28555:37::-;28508:168;;;;-1:-1:-1;;;28508:168:0;;6866:2:1;28508:168:0;;;6848:21:1;6905:2;6885:18;;;6878:30;6944:34;6924:18;;;6917:62;7015:26;6995:18;;;6988:54;7059:19;;28508:168:0;6664:420:1;28508:168:0;28689:21;28698:2;28702:7;28689:8;:21::i;:::-;28377:341;28307:411;;:::o;29534:339::-;29729:41;4348:10;29748:12;29762:7;29729:18;:41::i;:::-;29721:103;;;;-1:-1:-1;;;29721:103:0;;;;;;;:::i;:::-;29837:28;29847:4;29853:2;29857:7;29837:9;:28::i;42832:256::-;42929:7;42965:23;42982:5;42965:16;:23::i;:::-;42957:5;:31;42949:87;;;;-1:-1:-1;;;42949:87:0;;7709:2:1;42949:87:0;;;7691:21:1;7748:2;7728:18;;;7721:30;7787:34;7767:18;;;7760:62;-1:-1:-1;;;7838:18:1;;;7831:41;7889:19;;42949:87:0;7507:407:1;42949:87:0;-1:-1:-1;;;;;;43054:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42832:256::o;29944:185::-;30082:39;30099:4;30105:2;30109:7;30082:39;;;;;;;;;;;;:16;:39::i;39256:245::-;39374:41;4348:10;39393:12;4268:98;39374:41;39366:102;;;;-1:-1:-1;;;39366:102:0;;8121:2:1;39366:102:0;;;8103:21:1;8160:2;8140:18;;;8133:30;8199:34;8179:18;;;8172:62;-1:-1:-1;;;8250:18:1;;;8243:46;8306:19;;39366:102:0;7919:412:1;39366:102:0;39479:14;39485:7;39479:5;:14::i;:::-;39256:245;:::o;43354:233::-;43429:7;43465:30;43252:10;:17;;43164:113;43465:30;43457:5;:38;43449:95;;;;-1:-1:-1;;;43449:95:0;;8538:2:1;43449:95:0;;;8520:21:1;8577:2;8557:18;;;8550:30;8616:34;8596:18;;;8589:62;-1:-1:-1;;;8667:18:1;;;8660:42;8719:19;;43449:95:0;8336:408:1;43449:95:0;43562:10;43573:5;43562:17;;;;;;;;:::i;:::-;;;;;;;;;43555:24;;43354:233;;;:::o;26919:239::-;26991:7;27027:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27027:16:0;27062:19;27054:73;;;;-1:-1:-1;;;27054:73:0;;9083:2:1;27054:73:0;;;9065:21:1;9122:2;9102:18;;;9095:30;9161:34;9141:18;;;9134:62;-1:-1:-1;;;9212:18:1;;;9205:39;9261:19;;27054:73:0;8881:405:1;26649:208:0;26721:7;-1:-1:-1;;;;;26749:19:0;;26741:74;;;;-1:-1:-1;;;26741:74:0;;9493:2:1;26741:74:0;;;9475:21:1;9532:2;9512:18;;;9505:30;9571:34;9551:18;;;9544:62;-1:-1:-1;;;9622:18:1;;;9615:40;9672:19;;26741:74:0;9291:406:1;26741:74:0;-1:-1:-1;;;;;;26833:16:0;;;;;:9;:16;;;;;;;26649:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;27394:104::-;27450:13;27483:7;27476:14;;;;;:::i;29077:155::-;29172:52;4348:10;29205:8;29215;29172:18;:52::i;:::-;29077:155;;:::o;30200:328::-;30375:41;4348:10;30408:7;30375:18;:41::i;:::-;30367:103;;;;-1:-1:-1;;;30367:103:0;;;;;;;:::i;:::-;30481:39;30495:4;30501:2;30505:7;30514:5;30481:13;:39::i;:::-;30200:328;;;;:::o;49674:196::-;49801:13;49839:23;49854:7;49839:14;:23::i;49025:236::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;49102:15:::1;49120:25;:15;964:14:::0;;872:114;49120:25:::1;49102:43;;49156:27;:15;1083:19:::0;;1101:1;1083:19;;;994:127;49156:27:::1;49194:22;49204:2;49208:7;49194:9;:22::i;:::-;49227:26;49240:7;49249:3;49227:12;:26::i;6453:201::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;10265:2:1;6534:73:0::1;::::0;::::1;10247:21:1::0;10304:2;10284:18;;;10277:30;10343:34;10323:18;;;10316:62;-1:-1:-1;;;10394:18:1;;;10387:36;10440:19;;6534:73:0::1;10063:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;42524:224::-:0;42626:4;-1:-1:-1;;;;;;42650:50:0;;-1:-1:-1;;;42650:50:0;;:90;;;42704:36;42728:11;42704:23;:36::i;32038:127::-;32103:4;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;:30;;;32038:127::o;36020:174::-;36095:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36095:29:0;-1:-1:-1;;;;;36095:29:0;;;;;;;;:24;;36149:23;36095:24;36149:14;:23::i;:::-;-1:-1:-1;;;;;36140:46:0;;;;;;;;;;;36020:174;;:::o;32332:348::-;32425:4;32450:16;32458:7;32450;:16::i;:::-;32442:73;;;;-1:-1:-1;;;32442:73:0;;10672:2:1;32442:73:0;;;10654:21:1;10711:2;10691:18;;;10684:30;10750:34;10730:18;;;10723:62;-1:-1:-1;;;10801:18:1;;;10794:42;10853:19;;32442:73:0;10470:408:1;32442:73:0;32526:13;32542:23;32557:7;32542:14;:23::i;:::-;32526:39;;32595:5;-1:-1:-1;;;;;32584:16:0;:7;-1:-1:-1;;;;;32584:16:0;;:51;;;;32628:7;-1:-1:-1;;;;;32604:31:0;:20;32616:7;32604:11;:20::i;:::-;-1:-1:-1;;;;;32604:31:0;;32584:51;:87;;;-1:-1:-1;;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32639:32;32576:96;32332:348;-1:-1:-1;;;;32332:348:0:o;35324:578::-;35483:4;-1:-1:-1;;;;;35456:31:0;:23;35471:7;35456:14;:23::i;:::-;-1:-1:-1;;;;;35456:31:0;;35448:85;;;;-1:-1:-1;;;35448:85:0;;11085:2:1;35448:85:0;;;11067:21:1;11124:2;11104:18;;;11097:30;11163:34;11143:18;;;11136:62;-1:-1:-1;;;11214:18:1;;;11207:39;11263:19;;35448:85:0;10883:405:1;35448:85:0;-1:-1:-1;;;;;35552:16:0;;35544:65;;;;-1:-1:-1;;;35544:65:0;;11495:2:1;35544:65:0;;;11477:21:1;11534:2;11514:18;;;11507:30;11573:34;11553:18;;;11546:62;-1:-1:-1;;;11624:18:1;;;11617:34;11668:19;;35544:65:0;11293:400:1;35544:65:0;35622:39;35643:4;35649:2;35653:7;35622:20;:39::i;:::-;35726:29;35743:1;35747:7;35726:8;:29::i;:::-;-1:-1:-1;;;;;35768:15:0;;;;;;:9;:15;;;;;:20;;35787:1;;35768:15;:20;;35787:1;;35768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35799:13:0;;;;;;:9;:13;;;;;:18;;35816:1;;35799:13;:18;;35816:1;;35799:18;:::i;:::-;;;;-1:-1:-1;;35828:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35828:21:0;-1:-1:-1;;;;;35828:21:0;;;;;;;;;35867:27;;35828:16;;35867:27;;;;;;;35324:578;;;:::o;49551:115::-;49638:20;49650:7;49638:11;:20::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;36336:315::-;36491:8;-1:-1:-1;;;;;36482:17:0;:5;-1:-1:-1;;;;;36482:17:0;;;36474:55;;;;-1:-1:-1;;;36474:55:0;;12295:2:1;36474:55:0;;;12277:21:1;12334:2;12314:18;;;12307:30;12373:27;12353:18;;;12346:55;12418:18;;36474:55:0;12093:349:1;36474:55:0;-1:-1:-1;;;;;36540:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36540:46:0;;;;;;;;;;36602:41;;540::1;;;36602::0;;513:18:1;36602:41:0;;;;;;;36336:315;;;:::o;31410:::-;31567:28;31577:4;31583:2;31587:7;31567:9;:28::i;:::-;31614:48;31637:4;31643:2;31647:7;31656:5;31614:22;:48::i;:::-;31606:111;;;;-1:-1:-1;;;31606:111:0;;;;;;;:::i;40019:679::-;40092:13;40126:16;40134:7;40126;:16::i;:::-;40118:78;;;;-1:-1:-1;;;40118:78:0;;13068:2:1;40118:78:0;;;13050:21:1;13107:2;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;-1:-1:-1;;;13197:18:1;;;13190:47;13254:19;;40118:78:0;12866:413:1;40118:78:0;40209:23;40235:19;;;:10;:19;;;;;40209:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40265:18;40286:10;28228:9;;;;;;;;;-1:-1:-1;28228:9:0;;;28151:94;40286:10;40265:31;;40378:4;40372:18;40394:1;40372:23;40368:72;;;-1:-1:-1;40419:9:0;40019:679;-1:-1:-1;;40019:679:0:o;40368:72::-;40544:23;;:27;40540:108;;40619:4;40625:9;40602:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40588:48;;;;40019:679;;;:::o;40540:108::-;40667:23;40682:7;40667:14;:23::i;33022:110::-;33098:26;33108:2;33112:7;33098:26;;;;;;;;;;;;:9;:26::i;40854:217::-;40954:16;40962:7;40954;:16::i;:::-;40946:75;;;;-1:-1:-1;;;40946:75:0;;13961:2:1;40946:75:0;;;13943:21:1;14000:2;13980:18;;;13973:30;14039:34;14019:18;;;14012:62;-1:-1:-1;;;14090:18:1;;;14083:44;14144:19;;40946:75:0;13759:410:1;40946:75:0;41032:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;26280:305::-;26382:4;-1:-1:-1;;;;;;26419:40:0;;-1:-1:-1;;;26419:40:0;;:105;;-1:-1:-1;;;;;;;26476:48:0;;-1:-1:-1;;;26476:48:0;26419:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;26541:36;17976:157;49339:204;49490:45;49517:4;49523:2;49527:7;49490:26;:45::i;41300:206::-;41369:20;41381:7;41369:11;:20::i;:::-;41412:19;;;;:10;:19;;;;;41406:33;;;;;:::i;:::-;:38;;-1:-1:-1;41402:97:0;;41468:19;;;;:10;:19;;;;;41461:26;;;:::i;37216:799::-;37371:4;-1:-1:-1;;;;;37392:13:0;;8155:20;8203:8;37388:620;;37428:72;;-1:-1:-1;;;37428:72:0;;-1:-1:-1;;;;;37428:36:0;;;;;:72;;4348:10;;37479:4;;37485:7;;37494:5;;37428:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37428:72:0;;;;;;;;-1:-1:-1;;37428:72:0;;;;;;;;;;;;:::i;:::-;;;37424:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37670:13:0;;37666:272;;37713:60;;-1:-1:-1;;;37713:60:0;;;;;;;:::i;37666:272::-;37888:6;37882:13;37873:6;37869:2;37865:15;37858:38;37424:529;-1:-1:-1;;;;;;37551:51:0;-1:-1:-1;;;37551:51:0;;-1:-1:-1;37544:58:0;;37388:620;-1:-1:-1;37992:4:0;37216:799;;;;;;:::o;27569:334::-;27642:13;27676:16;27684:7;27676;:16::i;:::-;27668:76;;;;-1:-1:-1;;;27668:76:0;;15124:2:1;27668:76:0;;;15106:21:1;15163:2;15143:18;;;15136:30;15202:34;15182:18;;;15175:62;-1:-1:-1;;;15253:18:1;;;15246:45;15308:19;;27668:76:0;14922:411:1;27668:76:0;27757:21;27781:10;28228:9;;;;;;;;;-1:-1:-1;28228:9:0;;;28151:94;27781:10;27757:34;;27833:1;27815:7;27809:21;:25;:86;;;;;;;;;;;;;;;;;27861:7;27870:18;:7;:16;:18::i;:::-;27844:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27809:86;27802:93;27569:334;-1:-1:-1;;;27569:334:0:o;33359:321::-;33489:18;33495:2;33499:7;33489:5;:18::i;:::-;33540:54;33571:1;33575:2;33579:7;33588:5;33540:22;:54::i;:::-;33518:154;;;;-1:-1:-1;;;33518:154:0;;;;;;;:::i;44200:589::-;-1:-1:-1;;;;;44406:18:0;;44402:187;;44441:40;44473:7;45616:10;:17;;45589:24;;;;:15;:24;;;;;:44;;;45644:24;;;;;;;;;;;;45512:164;44441:40;44402:187;;;44511:2;-1:-1:-1;;;;;44503:10:0;:4;-1:-1:-1;;;;;44503:10:0;;44499:90;;44530:47;44563:4;44569:7;44530:32;:47::i;:::-;-1:-1:-1;;;;;44603:16:0;;44599:183;;44636:45;44673:7;44636:36;:45::i;44599:183::-;44709:4;-1:-1:-1;;;;;44703:10:0;:2;-1:-1:-1;;;;;44703:10:0;;44699:83;;44730:40;44758:2;44762:7;44730:27;:40::i;34627:360::-;34687:13;34703:23;34718:7;34703:14;:23::i;:::-;34687:39;;34739:48;34760:5;34775:1;34779:7;34739:20;:48::i;:::-;34828:29;34845:1;34849:7;34828:8;:29::i;:::-;-1:-1:-1;;;;;34870:16:0;;;;;;:9;:16;;;;;:21;;34890:1;;34870:16;:21;;34890:1;;34870:21;:::i;:::-;;;;-1:-1:-1;;34909:16:0;;;;:7;:16;;;;;;34902:23;;-1:-1:-1;;;;;;34902:23:0;;;34943:36;34917:7;;34909:16;-1:-1:-1;;;;;34943:36:0;;;;;34909:16;;34943:36;34676:311;34627:360;:::o;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;34016:382;-1:-1:-1;;;;;34096:16:0;;34088:61;;;;-1:-1:-1;;;34088:61:0;;16054:2:1;34088:61:0;;;16036:21:1;;;16073:18;;;16066:30;16132:34;16112:18;;;16105:62;16184:18;;34088:61:0;15852:356:1;34088:61:0;34169:16;34177:7;34169;:16::i;:::-;34168:17;34160:58;;;;-1:-1:-1;;;34160:58:0;;16415:2:1;34160:58:0;;;16397:21:1;16454:2;16434:18;;;16427:30;16493;16473:18;;;16466:58;16541:18;;34160:58:0;16213:352:1;34160:58:0;34231:45;34260:1;34264:2;34268:7;34231:20;:45::i;:::-;-1:-1:-1;;;;;34289:13:0;;;;;;:9;:13;;;;;:18;;34306:1;;34289:13;:18;;34306:1;;34289:18;:::i;:::-;;;;-1:-1:-1;;34318:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34318:21:0;-1:-1:-1;;;;;34318:21:0;;;;;;;;34357:33;;34318:16;;;34357:33;;34318:16;;34357:33;34016:382;;:::o;46303:988::-;46569:22;46619:1;46594:22;46611:4;46594:16;:22::i;:::-;:26;;;;:::i;:::-;46631:18;46652:26;;;:17;:26;;;;;;46569:51;;-1:-1:-1;46785:28:0;;;46781:328;;-1:-1:-1;;;;;46852:18:0;;46830:19;46852:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46903:30;;;;;;:44;;;47020:30;;:17;:30;;;;;:43;;;46781:328;-1:-1:-1;47205:26:0;;;;:17;:26;;;;;;;;47198:33;;;-1:-1:-1;;;;;47249:18:0;;;;;:12;:18;;;;;:34;;;;;;;47242:41;46303:988::o;47586:1079::-;47864:10;:17;47839:22;;47864:21;;47884:1;;47864:21;:::i;:::-;47896:18;47917:24;;;:15;:24;;;;;;48290:10;:26;;47839:46;;-1:-1:-1;47917:24:0;;47839:46;;48290:26;;;;;;:::i;:::-;;;;;;;;;48268:48;;48354:11;48329:10;48340;48329:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48434:28;;;:15;:28;;;;;;;:41;;;48606:24;;;;;48599:31;48641:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47657:1008;;;47586:1079;:::o;45090:221::-;45175:14;45192:20;45209:2;45192:16;:20::i;:::-;-1:-1:-1;;;;;45223:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45268:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45090:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:631;3427:5;3457:18;3498:2;3490:6;3487:14;3484:40;;;3504:18;;:::i;:::-;3579:2;3573:9;3547:2;3633:15;;-1:-1:-1;;3629:24:1;;;3655:2;3625:33;3621:42;3609:55;;;3679:18;;;3699:22;;;3676:46;3673:72;;;3725:18;;:::i;:::-;3765:10;3761:2;3754:22;3794:6;3785:15;;3824:6;3816;3809:22;3864:3;3855:6;3850:3;3846:16;3843:25;3840:45;;;3881:1;3878;3871:12;3840:45;3931:6;3926:3;3919:4;3911:6;3907:17;3894:44;3986:1;3979:4;3970:6;3962;3958:19;3954:30;3947:41;;;;3363:631;;;;;:::o;3999:666::-;4094:6;4102;4110;4118;4171:3;4159:9;4150:7;4146:23;4142:33;4139:53;;;4188:1;4185;4178:12;4139:53;4211:29;4230:9;4211:29;:::i;:::-;4201:39;;4259:38;4293:2;4282:9;4278:18;4259:38;:::i;:::-;4249:48;;4344:2;4333:9;4329:18;4316:32;4306:42;;4399:2;4388:9;4384:18;4371:32;4426:18;4418:6;4415:30;4412:50;;;4458:1;4455;4448:12;4412:50;4481:22;;4534:4;4526:13;;4522:27;-1:-1:-1;4512:55:1;;4563:1;4560;4553:12;4512:55;4586:73;4651:7;4646:2;4633:16;4628:2;4624;4620:11;4586:73;:::i;:::-;4576:83;;;3999:666;;;;;;;:::o;4670:524::-;4748:6;4756;4809:2;4797:9;4788:7;4784:23;4780:32;4777:52;;;4825:1;4822;4815:12;4777:52;4848:29;4867:9;4848:29;:::i;:::-;4838:39;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:73;5180:7;5175:2;5162:16;5157:2;5153;5149:11;5115:73;:::i;:::-;5105:83;;;4670:524;;;;;:::o;5199:260::-;5267:6;5275;5328:2;5316:9;5307:7;5303:23;5299:32;5296:52;;;5344:1;5341;5334:12;5296:52;5367:29;5386:9;5367:29;:::i;:::-;5357:39;;5415:38;5449:2;5438:9;5434:18;5415:38;:::i;:::-;5405:48;;5199:260;;;;;:::o;5464:380::-;5543:1;5539:12;;;;5586;;;5607:61;;5661:4;5653:6;5649:17;5639:27;;5607:61;5714:2;5706:6;5703:14;5683:18;5680:38;5677:161;;;5760:10;5755:3;5751:20;5748:1;5741:31;5795:4;5792:1;5785:15;5823:4;5820:1;5813:15;5677:161;;5464:380;;;:::o;7089:413::-;7291:2;7273:21;;;7330:2;7310:18;;;7303:30;7369:34;7364:2;7349:18;;7342:62;-1:-1:-1;;;7435:2:1;7420:18;;7413:47;7492:3;7477:19;;7089:413::o;8749:127::-;8810:10;8805:3;8801:20;8798:1;8791:31;8841:4;8838:1;8831:15;8865:4;8862:1;8855:15;9702:356;9904:2;9886:21;;;9923:18;;;9916:30;9982:34;9977:2;9962:18;;9955:62;10049:2;10034:18;;9702:356::o;11698:127::-;11759:10;11754:3;11750:20;11747:1;11740:31;11790:4;11787:1;11780:15;11814:4;11811:1;11804:15;11830:125;11870:4;11898:1;11895;11892:8;11889:34;;;11903:18;;:::i;:::-;-1:-1:-1;11940:9:1;;11830:125::o;11960:128::-;12000:3;12031:1;12027:6;12024:1;12021:13;12018:39;;;12037:18;;:::i;:::-;-1:-1:-1;12073:9:1;;11960:128::o;12447:414::-;12649:2;12631:21;;;12688:2;12668:18;;;12661:30;12727:34;12722:2;12707:18;;12700:62;-1:-1:-1;;;12793:2:1;12778:18;;12771:48;12851:3;12836:19;;12447:414::o;13284:470::-;13463:3;13501:6;13495:13;13517:53;13563:6;13558:3;13551:4;13543:6;13539:17;13517:53;:::i;:::-;13633:13;;13592:16;;;;13655:57;13633:13;13592:16;13689:4;13677:17;;13655:57;:::i;:::-;13728:20;;13284:470;-1:-1:-1;;;;13284:470:1:o;14174:489::-;-1:-1:-1;;;;;14443:15:1;;;14425:34;;14495:15;;14490:2;14475:18;;14468:43;14542:2;14527:18;;14520:34;;;14590:3;14585:2;14570:18;;14563:31;;;14368:4;;14611:46;;14637:19;;14629:6;14611:46;:::i;:::-;14603:54;14174:489;-1:-1:-1;;;;;;14174:489:1:o;14668:249::-;14737:6;14790:2;14778:9;14769:7;14765:23;14761:32;14758:52;;;14806:1;14803;14796:12;14758:52;14838:9;14832:16;14857:30;14881:5;14857:30;:::i;15338:135::-;15377:3;-1:-1:-1;;15398:17:1;;15395:43;;;15418:18;;:::i;:::-;-1:-1:-1;15465:1:1;15454:13;;15338:135::o;15478:127::-;15539:10;15534:3;15530:20;15527:1;15520:31;15570:4;15567:1;15560:15;15594:4;15591:1;15584:15;15610:120;15650:1;15676;15666:35;;15681:18;;:::i;:::-;-1:-1:-1;15715:9:1;;15610:120::o;15735:112::-;15767:1;15793;15783:35;;15798:18;;:::i;:::-;-1:-1:-1;15832:9:1;;15735:112::o;16570:127::-;16631:10;16626:3;16622:20;16619:1;16612:31;16662:4;16659:1;16652:15;16686:4;16683:1;16676:15

Swarm Source

ipfs://5f575ab7d2d32076c9d74fe0696370cf5619a06d39a644e67865817fb3864536
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Validator ID :
0 FTM

Amount Staked
0

Amount Delegated
0

Staking Total
0

Staking Start Epoch
0

Staking Start Time
0

Proof of Importance
0

Origination Score
0

Validation Score
0

Active
0

Online
0

Downtime
0 s
Address Amount claimed Rewards Created On Epoch Created On
Block Uncle Number Difficulty Gas Used Reward
Loading