ETH Price: $2,283.60 (+2.29%)

Token

Decal by the Community (DECAL)
 

Overview

Max Total Supply

100 DECAL

Holders

98

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thetexican.eth
Balance
1 DECAL
0x8c48b40dba656187896147089545439e4ff4a01c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Community_Decal

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-13
*/

/// File @openzeppelin/contracts/access/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)

pragma solidity ^0.8.20;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)

pragma solidity ^0.8.20;

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

    mapping(bytes32 role => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

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

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

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

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

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

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

        _revokeRole(role, callerConfirmation);
    }

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

    /**
     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }
}

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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/interfaces/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

/**
 * @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/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

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

// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;

/**
 * @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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return spender != address(0)
            && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success,) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(address target, bool success, bytes memory returndata)
        internal
        view
        returns (bytes memory)
    {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the Merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerify(bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves)
        internal
        pure
        returns (bool)
    {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves)
        internal
        pure
        returns (bytes32 merkleRoot)
    {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b =
                proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves)
        internal
        pure
        returns (bytes32 merkleRoot)
    {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b =
                proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

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

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

    uint256 private _status;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    constructor() {
        _status = NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

// File contracts/utils/Errors.sol

pragma solidity ^0.8.17;

error MaxSupplyReached();
error AlreadyMinted();
error NotOnAllowlist();
error NotArtist();
error NoArtist();
error MaxArtistSupplyReached();
error CannotMintZero();
error MaxPublicSupplyReached();

// File contracts/Community_Decal.sol

pragma solidity ^0.8.17;

/// @author @0x__jj, @llio (Deca)
contract Community_Decal is ERC721, ReentrancyGuard, AccessControl, Ownable {
    using Address for address;
    using Strings for *;

    event ArtistMinted(uint256 numberOfTokens, uint256 remainingArtistSupply);

    mapping(address => bool) public minted;

    uint256 public totalSupply = 0;

    uint256 public constant MAX_SUPPLY = 100;

    bytes32 public merkleRoot;

    uint256 public artistMaxSupply;

    uint256 public artistSupply;

    address public artist;

    string public baseUri;

    constructor(string memory _baseUri, address[] memory _admins, uint256 _artistMaxSupply, address _artist)
        ERC721("Decal by the Community", "DECAL")
        Ownable(msg.sender)
    {
        if (_artistMaxSupply > MAX_SUPPLY) revert MaxSupplyReached();
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        for (uint256 i = 0; i < _admins.length; i++) {
            _grantRole(DEFAULT_ADMIN_ROLE, _admins[i]);
        }
        baseUri = _baseUri;
        artistMaxSupply = _artistMaxSupply;
        artist = _artist;
    }

    function setArtist(address _artist) external onlyRole(DEFAULT_ADMIN_ROLE) {
        artist = _artist;
    }

    function setArtistMaxSupply(uint256 _artistMaxSupply) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if ((_artistMaxSupply - artistSupply) > (MAX_SUPPLY - totalSupply)) {
            revert MaxArtistSupplyReached();
        }
        artistMaxSupply = _artistMaxSupply;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyRole(DEFAULT_ADMIN_ROLE) {
        merkleRoot = _merkleRoot;
    }

    function setBaseUri(string memory _newBaseUri) external onlyRole(DEFAULT_ADMIN_ROLE) {
        baseUri = _newBaseUri;
    }

    function mint(bytes32[] calldata _merkleProof) external nonReentrant returns (uint256 tokenId) {
        if (minted[msg.sender]) revert AlreadyMinted();
        if (totalSupply >= MAX_SUPPLY) revert MaxSupplyReached();
        if (publicSupplyRemaining() < 1) revert MaxPublicSupplyReached();
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf)) {
            revert NotOnAllowlist();
        }
        minted[msg.sender] = true;
        tokenId = totalSupply;
        totalSupply++;
        _safeMint(msg.sender, tokenId);
    }

    function artistMintForAdmin(uint256 _numberOfTokens) external nonReentrant onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_numberOfTokens == 0) revert CannotMintZero();
        if (artist == address(0)) revert NoArtist();
        uint256 remaining = artistMaxSupply - artistSupply;
        if (remaining == 0) revert MaxArtistSupplyReached();
        _numberOfTokens = uint256(Math.min(_numberOfTokens, remaining));
        uint256 tokenId = totalSupply;
        for (uint256 i = 0; i < _numberOfTokens; i++) {
            _safeMint(artist, tokenId);
            tokenId++;
        }
        artistSupply += _numberOfTokens;
        totalSupply = tokenId;
        emit ArtistMinted(_numberOfTokens, remaining);
    }

    function artistMint(uint256 _numberOfTokens) external nonReentrant {
        if (_numberOfTokens == 0) revert CannotMintZero();
        if (artist == address(0)) revert NoArtist();
        if (msg.sender != artist) revert NotArtist();
        uint256 remaining = artistMaxSupply - artistSupply;
        if (remaining == 0) revert MaxArtistSupplyReached();
        _numberOfTokens = uint256(Math.min(_numberOfTokens, remaining));
        uint256 tokenId = totalSupply;
        for (uint256 i = 0; i < _numberOfTokens; i++) {
            _safeMint(msg.sender, tokenId);
            tokenId++;
        }
        artistSupply += _numberOfTokens;
        totalSupply = tokenId;
        emit ArtistMinted(_numberOfTokens, remaining);
    }

    function publicSupplyRemaining() public view returns (uint256) {
        return MAX_SUPPLY - totalSupply - (artistMaxSupply - artistSupply);
    }

    function artistSupplyRemaining() external view returns (uint256) {
        return artistMaxSupply - artistSupply;
    }

    function tokenURI(uint256 _tokenId) public view override(ERC721) returns (string memory) {
        require(_ownerOf(_tokenId) != address(0), "DECAL: URI query for nonexistent token");
        string memory baseURI = _baseURI();
        require(bytes(baseURI).length > 0, "baseURI not set");
        return string(abi.encodePacked(baseURI, _tokenId.toString()));
    }

    function getTokensOfOwner(address owner_) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(owner_);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        uint256 seen = 0;
        for (uint256 i = 0; i < totalSupply; i++) {
            if (ownerOf(i) == owner_) {
                tokenIds[seen] = i;
                seen++;
            }
            if (seen == tokenCount) break;
        }
        return tokenIds;
    }

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

    function _baseURI() internal view override(ERC721) returns (string memory) {
        return baseUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address[]","name":"_admins","type":"address[]"},{"internalType":"uint256","name":"_artistMaxSupply","type":"uint256"},{"internalType":"address","name":"_artist","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"CannotMintZero","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"MaxArtistSupplyReached","type":"error"},{"inputs":[],"name":"MaxPublicSupplyReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"NoArtist","type":"error"},{"inputs":[],"name":"NotArtist","type":"error"},{"inputs":[],"name":"NotOnAllowlist","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"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":false,"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"remainingArtistSupply","type":"uint256"}],"name":"ArtistMinted","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"artistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"artistMintForAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artistSupplyRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","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":"publicSupplyRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_artist","type":"address"}],"name":"setArtist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_artistMaxSupply","type":"uint256"}],"name":"setArtistMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040525f600a5534801562000014575f80fd5b50604051620047f8380380620047f883398181016040528101906200003a919062000781565b336040518060400160405280601681526020017f446563616c2062792074686520436f6d6d756e697479000000000000000000008152506040518060400160405280600581526020017f444543414c000000000000000000000000000000000000000000000000000000815250815f9081620000b7919062000a5c565b508060019081620000c9919062000a5c565b50505060016006819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000147575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013e919062000b51565b60405180910390fd5b62000158816200026260201b60201c565b50606482111562000195576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620001a95f801b336200032560201b60201c565b505f5b8351811015620001fe57620001e75f801b858381518110620001d357620001d262000b6c565b5b60200260200101516200032560201b60201c565b508080620001f59062000bc6565b915050620001ac565b5083600f908162000210919062000a5c565b5081600c8190555080600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000c12565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6200033883836200042160201b60201c565b6200041757600160075f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620003b36200048560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4600190506200041b565b5f90505b92915050565b5f60075f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620004ed82620004a5565b810181811067ffffffffffffffff821117156200050f576200050e620004b5565b5b80604052505050565b5f620005236200048c565b9050620005318282620004e2565b919050565b5f67ffffffffffffffff821115620005535762000552620004b5565b5b6200055e82620004a5565b9050602081019050919050565b5f5b838110156200058a5780820151818401526020810190506200056d565b5f8484015250505050565b5f620005ab620005a58462000536565b62000518565b905082815260208101848484011115620005ca57620005c9620004a1565b5b620005d78482856200056b565b509392505050565b5f82601f830112620005f657620005f56200049d565b5b81516200060884826020860162000595565b91505092915050565b5f67ffffffffffffffff8211156200062e576200062d620004b5565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200066e8262000643565b9050919050565b620006808162000662565b81146200068b575f80fd5b50565b5f815190506200069e8162000675565b92915050565b5f620006ba620006b48462000611565b62000518565b90508083825260208201905060208402830185811115620006e057620006df6200063f565b5b835b818110156200070d5780620006f888826200068e565b845260208401935050602081019050620006e2565b5050509392505050565b5f82601f8301126200072e576200072d6200049d565b5b815162000740848260208601620006a4565b91505092915050565b5f819050919050565b6200075d8162000749565b811462000768575f80fd5b50565b5f815190506200077b8162000752565b92915050565b5f805f80608085870312156200079c576200079b62000495565b5b5f85015167ffffffffffffffff811115620007bc57620007bb62000499565b5b620007ca87828801620005df565b945050602085015167ffffffffffffffff811115620007ee57620007ed62000499565b5b620007fc8782880162000717565b93505060406200080f878288016200076b565b925050606062000822878288016200068e565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200087d57607f821691505b60208210810362000893576200089262000838565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008ba565b620009038683620008ba565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620009446200093e620009388462000749565b6200091b565b62000749565b9050919050565b5f819050919050565b6200095f8362000924565b620009776200096e826200094b565b848454620008c6565b825550505050565b5f90565b6200098d6200097f565b6200099a81848462000954565b505050565b5b81811015620009c157620009b55f8262000983565b600181019050620009a0565b5050565b601f82111562000a1057620009da8162000899565b620009e584620008ab565b81016020851015620009f5578190505b62000a0d62000a0485620008ab565b8301826200099f565b50505b505050565b5f82821c905092915050565b5f62000a325f198460080262000a15565b1980831691505092915050565b5f62000a4c838362000a21565b9150826002028217905092915050565b62000a67826200082e565b67ffffffffffffffff81111562000a835762000a82620004b5565b5b62000a8f825462000865565b62000a9c828285620009c5565b5f60209050601f83116001811462000ad2575f841562000abd578287015190505b62000ac9858262000a3f565b86555062000b38565b601f19841662000ae28662000899565b5f5b8281101562000b0b5784890151825560018201915060208501945060208101905062000ae4565b8683101562000b2b578489015162000b27601f89168262000a21565b8355505b6001600288020188555050505b505050505050565b62000b4b8162000662565b82525050565b5f60208201905062000b665f83018462000b40565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000bd28262000749565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000c075762000c0662000b99565b5b600182019050919050565b613bd88062000c205f395ff3fe608060405234801561000f575f80fd5b5060043610610246575f3560e01c80637cb6475911610139578063a96f38dd116100b6578063c87b56dd1161007a578063c87b56dd146106da578063d4c975331461070a578063d547741f14610726578063e985e9c514610742578063f2fde38b1461077257610246565b8063a96f38dd14610636578063b77a147b14610654578063b88d4fde14610684578063bf113baf146106a0578063c3ad8e98146106bc57610246565b80639abc8320116100fd5780639abc8320146105a65780639f3632fb146105c4578063a0bcfc7f146105e0578063a217fddf146105fc578063a22cb4651461061a57610246565b80637cb64759146105005780637e5b81061461051c5780638da5cb5b1461053a57806391d148541461055857806395d89b411461058857610246565b80632f2ff15d116101c75780635de6dc551161018b5780635de6dc55146104485780636352211e1461047857806370a08231146104a8578063715018a6146104d857806371a4c485146104e257610246565b80632f2ff15d146103b857806332cb6b0c146103d457806336568abe146103f257806342842e0e1461040e57806343bc16121461042a57610246565b806318160ddd1161020e57806318160ddd146103005780631e7269c51461031e57806323b872dd1461034e578063248a9ca31461036a5780632eb4a7ab1461039a57610246565b806301ffc9a71461024a57806306fdde031461027a5780630798f69714610298578063081812fc146102b4578063095ea7b3146102e4575b5f80fd5b610264600480360381019061025f9190612c2b565b61078e565b6040516102719190612c70565b60405180910390f35b61028261079f565b60405161028f9190612d13565b60405180910390f35b6102b260048036038101906102ad9190612d66565b61082e565b005b6102ce60048036038101906102c99190612d66565b61089a565b6040516102db9190612dd0565b60405180910390f35b6102fe60048036038101906102f99190612e13565b6108b5565b005b6103086108cb565b6040516103159190612e60565b60405180910390f35b61033860048036038101906103339190612e79565b6108d1565b6040516103459190612c70565b60405180910390f35b61036860048036038101906103639190612ea4565b6108ee565b005b610384600480360381019061037f9190612f27565b6109ed565b6040516103919190612f61565b60405180910390f35b6103a2610a0a565b6040516103af9190612f61565b60405180910390f35b6103d260048036038101906103cd9190612f7a565b610a10565b005b6103dc610a32565b6040516103e99190612e60565b60405180910390f35b61040c60048036038101906104079190612f7a565b610a37565b005b61042860048036038101906104239190612ea4565b610ab2565b005b610432610ad1565b60405161043f9190612dd0565b60405180910390f35b610462600480360381019061045d9190612e79565b610af6565b60405161046f919061306f565b60405180910390f35b610492600480360381019061048d9190612d66565b610bee565b60405161049f9190612dd0565b60405180910390f35b6104c260048036038101906104bd9190612e79565b610bff565b6040516104cf9190612e60565b60405180910390f35b6104e0610cb5565b005b6104ea610cc8565b6040516104f79190612e60565b60405180910390f35b61051a60048036038101906105159190612f27565b610cce565b005b610524610ce5565b6040516105319190612e60565b60405180910390f35b610542610ceb565b60405161054f9190612dd0565b60405180910390f35b610572600480360381019061056d9190612f7a565b610d13565b60405161057f9190612c70565b60405180910390f35b610590610d77565b60405161059d9190612d13565b60405180910390f35b6105ae610e07565b6040516105bb9190612d13565b60405180910390f35b6105de60048036038101906105d99190612d66565b610e93565b005b6105fa60048036038101906105f591906131bb565b611081565b005b6106046110a1565b6040516106119190612f61565b60405180910390f35b610634600480360381019061062f919061322c565b6110a7565b005b61063e6110bd565b60405161064b9190612e60565b60405180910390f35b61066e600480360381019061066991906132c7565b6110ec565b60405161067b9190612e60565b60405180910390f35b61069e600480360381019061069991906133b0565b61132b565b005b6106ba60048036038101906106b59190612d66565b611348565b005b6106c461158e565b6040516106d19190612e60565b60405180910390f35b6106f460048036038101906106ef9190612d66565b6115a4565b6040516107019190612d13565b60405180910390f35b610724600480360381019061071f9190612e79565b61169c565b005b610740600480360381019061073b9190612f7a565b6116ec565b005b61075c60048036038101906107579190613430565b61170e565b6040516107699190612c70565b60405180910390f35b61078c60048036038101906107879190612e79565b61179c565b005b5f61079882611820565b9050919050565b60605f80546107ad9061349b565b80601f01602080910402602001604051908101604052809291908181526020018280546107d99061349b565b80156108245780601f106107fb57610100808354040283529160200191610824565b820191905f5260205f20905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b5f801b61083a81611899565b600a54606461084991906134f8565b600d548361085791906134f8565b111561088f576040517fd5c4417900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c819055505050565b5f6108a4826118ad565b506108ae82611933565b9050919050565b6108c782826108c261196c565b611973565b5050565b600a5481565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361095e575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016109559190612dd0565b60405180910390fd5b5f610971838361096c61196c565b611985565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e7578382826040517f64283d7b0000000000000000000000000000000000000000000000000000000081526004016109de9392919061352b565b60405180910390fd5b50505050565b5f60075f8381526020019081526020015f20600101549050919050565b600b5481565b610a19826109ed565b610a2281611899565b610a2c8383611b90565b50505050565b606481565b610a3f61196c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aad8282611c7a565b505050565b610acc83838360405180602001604052805f81525061132b565b505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60605f610b0283610bff565b90505f8167ffffffffffffffff811115610b1f57610b1e613097565b5b604051908082528060200260200182016040528015610b4d5781602001602082028036833780820191505090505b5090505f805b600a54811015610be2578573ffffffffffffffffffffffffffffffffffffffff16610b7d82610bee565b73ffffffffffffffffffffffffffffffffffffffff1603610bc75780838381518110610bac57610bab613560565b5b6020026020010181815250508180610bc39061358d565b9250505b83820315610be2578080610bda9061358d565b915050610b53565b50819350505050919050565b5f610bf8826118ad565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c70575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610c679190612dd0565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cbd611d64565b610cc65f611deb565b565b600c5481565b5f801b610cda81611899565b81600b819055505050565b600d5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60075f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060018054610d869061349b565b80601f0160208091040260200160405190810160405280929190818152602001828054610db29061349b565b8015610dfd5780601f10610dd457610100808354040283529160200191610dfd565b820191905f5260205f20905b815481529060010190602001808311610de057829003601f168201915b5050505050905090565b600f8054610e149061349b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e409061349b565b8015610e8b5780601f10610e6257610100808354040283529160200191610e8b565b820191905f5260205f20905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b610e9b611eae565b5f801b610ea781611899565b5f8203610ee0576040517f54d9c53200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f66576040517f81e051c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600d54600c54610f7791906134f8565b90505f8103610fb2576040517fd5c4417900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fbc8382611ef4565b92505f600a5490505f5b8481101561101a57610ff9600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611f0c565b81806110049061358d565b92505080806110129061358d565b915050610fc6565b5083600d5f82825461102c91906135d4565b9250508190555080600a819055507f0b3544e12b031cb05a003a4e0cb691f6809a97e68d9f3d5d00387b0ee985acba848360405161106b929190613607565b60405180910390a150505061107e611f29565b50565b5f801b61108d81611899565b81600f908161109c91906137cb565b505050565b5f801b81565b6110b96110b261196c565b8383611f33565b5050565b5f600d54600c546110ce91906134f8565b600a5460646110dd91906134f8565b6110e791906134f8565b905090565b5f6110f5611eae565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611176576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600a54106111b2576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016111bc6110bd565b10156111f4576040517f21bccf3f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f3360405160200161120691906138df565b60405160208183030381529060405280519060200120905061126b8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600b548361209c565b6112a1576040517f231e418300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600a549150600a5f81548092919061130d9061358d565b919050555061131c3383611f0c565b50611325611f29565b92915050565b6113368484846108ee565b611342848484846120b2565b50505050565b611350611eae565b5f8103611389576040517f54d9c53200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361140f576040517f81e051c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611495576040517f6bebaa5300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600d54600c546114a691906134f8565b90505f81036114e1576040517fd5c4417900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114eb8282611ef4565b91505f600a5490505f5b83811015611528576115073383611f0c565b81806115129061358d565b92505080806115209061358d565b9150506114f5565b5082600d5f82825461153a91906135d4565b9250508190555080600a819055507f0b3544e12b031cb05a003a4e0cb691f6809a97e68d9f3d5d00387b0ee985acba8383604051611579929190613607565b60405180910390a1505061158b611f29565b50565b5f600d54600c5461159f91906134f8565b905090565b60605f73ffffffffffffffffffffffffffffffffffffffff166115c683612264565b73ffffffffffffffffffffffffffffffffffffffff160361161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613969565b60405180910390fd5b5f61162561229d565b90505f81511161166a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611661906139d1565b60405180910390fd5b806116748461232d565b604051602001611685929190613a29565b604051602081830303815290604052915050919050565b5f801b6116a881611899565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6116f5826109ed565b6116fe81611899565b6117088383611c7a565b50505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6117a4611d64565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611814575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180b9190612dd0565b60405180910390fd5b61181d81611deb565b50565b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118925750611891826123f7565b5b9050919050565b6118aa816118a561196c565b6124d8565b50565b5f806118b883612264565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361192a57826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016119219190612e60565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b6119808383836001612529565b505050565b5f8061199084612264565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119d1576119d08184866126e8565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a5c57611a105f855f80612529565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611adb57600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f611b9b8383610d13565b611c7057600160075f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611c0d61196c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611c74565b5f90505b92915050565b5f611c858383610d13565b15611d5a575f60075f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611cf761196c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050611d5e565b5f90505b92915050565b611d6c61196c565b73ffffffffffffffffffffffffffffffffffffffff16611d8a610ceb565b73ffffffffffffffffffffffffffffffffffffffff1614611de957611dad61196c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611de09190612dd0565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403611eea576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600681905550565b5f818310611f025781611f04565b825b905092915050565b611f25828260405180602001604052805f8152506127ab565b5050565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fa357816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611f9a9190612dd0565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208f9190612c70565b60405180910390a3505050565b5f826120a885846127c6565b1490509392505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561225e578273ffffffffffffffffffffffffffffffffffffffff1663150b7a026120f561196c565b8685856040518563ffffffff1660e01b81526004016121179493929190613a9e565b6020604051808303815f875af192505050801561215257506040513d601f19601f8201168201806040525081019061214f9190613afc565b60015b6121d3573d805f8114612180576040519150601f19603f3d011682016040523d82523d5f602084013e612185565b606091505b505f8151036121cb57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121c29190612dd0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461225c57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016122539190612dd0565b60405180910390fd5b505b50505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6060600f80546122ac9061349b565b80601f01602080910402602001604051908101604052809291908181526020018280546122d89061349b565b80156123235780601f106122fa57610100808354040283529160200191612323565b820191905f5260205f20905b81548152906001019060200180831161230657829003601f168201915b5050505050905090565b60605f600161233b8461281a565b0190505f8167ffffffffffffffff81111561235957612358613097565b5b6040519080825280601f01601f19166020018201604052801561238b5781602001600182028036833780820191505090505b5090505f82602001820190505b6001156123ec578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123e1576123e0613b27565b5b0494505f8503612398575b819350505050919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124d157506124d08261296b565b5b9050919050565b6124e28282610d13565b6125255780826040517fe2517d3f00000000000000000000000000000000000000000000000000000000815260040161251c929190613b54565b60405180910390fd5b5050565b808061256157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612693575f612570846118ad565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125da57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156125ed57506125eb818461170e565b155b1561262f57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016126269190612dd0565b60405180910390fd5b811561269157838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6126f38383836129d4565b6127a6575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361276757806040517f7e27328900000000000000000000000000000000000000000000000000000000815260040161275e9190612e60565b60405180910390fd5b81816040517f177e802f00000000000000000000000000000000000000000000000000000000815260040161279d929190613b7b565b60405180910390fd5b505050565b6127b58383612a94565b6127c15f8484846120b2565b505050565b5f808290505f5b845181101561280f576127fa828683815181106127ed576127ec613560565b5b6020026020010151612b87565b915080806128079061358d565b9150506127cd565b508091505092915050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612876577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161286c5761286b613b27565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106128b3576d04ee2d6d415b85acef810000000083816128a9576128a8613b27565b5b0492506020810190505b662386f26fc1000083106128e257662386f26fc1000083816128d8576128d7613b27565b5b0492506010810190505b6305f5e100831061290b576305f5e100838161290157612900613b27565b5b0492506008810190505b612710831061293057612710838161292657612925613b27565b5b0492506004810190505b60648310612953576064838161294957612948613b27565b5b0492506002810190505b600a8310612962576001810190505b80915050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a8b57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a4c5750612a4b848461170e565b5b80612a8a57508273ffffffffffffffffffffffffffffffffffffffff16612a7283611933565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b04575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612afb9190612dd0565b60405180910390fd5b5f612b1083835f611985565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b82575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612b799190612dd0565b60405180910390fd5b505050565b5f818310612b9e57612b998284612bb1565b612ba9565b612ba88383612bb1565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0a81612bd6565b8114612c14575f80fd5b50565b5f81359050612c2581612c01565b92915050565b5f60208284031215612c4057612c3f612bce565b5b5f612c4d84828501612c17565b91505092915050565b5f8115159050919050565b612c6a81612c56565b82525050565b5f602082019050612c835f830184612c61565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612cc0578082015181840152602081019050612ca5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612ce582612c89565b612cef8185612c93565b9350612cff818560208601612ca3565b612d0881612ccb565b840191505092915050565b5f6020820190508181035f830152612d2b8184612cdb565b905092915050565b5f819050919050565b612d4581612d33565b8114612d4f575f80fd5b50565b5f81359050612d6081612d3c565b92915050565b5f60208284031215612d7b57612d7a612bce565b5b5f612d8884828501612d52565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612dba82612d91565b9050919050565b612dca81612db0565b82525050565b5f602082019050612de35f830184612dc1565b92915050565b612df281612db0565b8114612dfc575f80fd5b50565b5f81359050612e0d81612de9565b92915050565b5f8060408385031215612e2957612e28612bce565b5b5f612e3685828601612dff565b9250506020612e4785828601612d52565b9150509250929050565b612e5a81612d33565b82525050565b5f602082019050612e735f830184612e51565b92915050565b5f60208284031215612e8e57612e8d612bce565b5b5f612e9b84828501612dff565b91505092915050565b5f805f60608486031215612ebb57612eba612bce565b5b5f612ec886828701612dff565b9350506020612ed986828701612dff565b9250506040612eea86828701612d52565b9150509250925092565b5f819050919050565b612f0681612ef4565b8114612f10575f80fd5b50565b5f81359050612f2181612efd565b92915050565b5f60208284031215612f3c57612f3b612bce565b5b5f612f4984828501612f13565b91505092915050565b612f5b81612ef4565b82525050565b5f602082019050612f745f830184612f52565b92915050565b5f8060408385031215612f9057612f8f612bce565b5b5f612f9d85828601612f13565b9250506020612fae85828601612dff565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612fea81612d33565b82525050565b5f612ffb8383612fe1565b60208301905092915050565b5f602082019050919050565b5f61301d82612fb8565b6130278185612fc2565b935061303283612fd2565b805f5b838110156130625781516130498882612ff0565b975061305483613007565b925050600181019050613035565b5085935050505092915050565b5f6020820190508181035f8301526130878184613013565b905092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6130cd82612ccb565b810181811067ffffffffffffffff821117156130ec576130eb613097565b5b80604052505050565b5f6130fe612bc5565b905061310a82826130c4565b919050565b5f67ffffffffffffffff82111561312957613128613097565b5b61313282612ccb565b9050602081019050919050565b828183375f83830152505050565b5f61315f61315a8461310f565b6130f5565b90508281526020810184848401111561317b5761317a613093565b5b61318684828561313f565b509392505050565b5f82601f8301126131a2576131a161308f565b5b81356131b284826020860161314d565b91505092915050565b5f602082840312156131d0576131cf612bce565b5b5f82013567ffffffffffffffff8111156131ed576131ec612bd2565b5b6131f98482850161318e565b91505092915050565b61320b81612c56565b8114613215575f80fd5b50565b5f8135905061322681613202565b92915050565b5f806040838503121561324257613241612bce565b5b5f61324f85828601612dff565b925050602061326085828601613218565b9150509250929050565b5f80fd5b5f80fd5b5f8083601f8401126132875761328661308f565b5b8235905067ffffffffffffffff8111156132a4576132a361326a565b5b6020830191508360208202830111156132c0576132bf61326e565b5b9250929050565b5f80602083850312156132dd576132dc612bce565b5b5f83013567ffffffffffffffff8111156132fa576132f9612bd2565b5b61330685828601613272565b92509250509250929050565b5f67ffffffffffffffff82111561332c5761332b613097565b5b61333582612ccb565b9050602081019050919050565b5f61335461334f84613312565b6130f5565b9050828152602081018484840111156133705761336f613093565b5b61337b84828561313f565b509392505050565b5f82601f8301126133975761339661308f565b5b81356133a7848260208601613342565b91505092915050565b5f805f80608085870312156133c8576133c7612bce565b5b5f6133d587828801612dff565b94505060206133e687828801612dff565b93505060406133f787828801612d52565b925050606085013567ffffffffffffffff81111561341857613417612bd2565b5b61342487828801613383565b91505092959194509250565b5f806040838503121561344657613445612bce565b5b5f61345385828601612dff565b925050602061346485828601612dff565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806134b257607f821691505b6020821081036134c5576134c461346e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61350282612d33565b915061350d83612d33565b9250828203905081811115613525576135246134cb565b5b92915050565b5f60608201905061353e5f830186612dc1565b61354b6020830185612e51565b6135586040830184612dc1565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61359782612d33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135c9576135c86134cb565b5b600182019050919050565b5f6135de82612d33565b91506135e983612d33565b9250828201905080821115613601576136006134cb565b5b92915050565b5f60408201905061361a5f830185612e51565b6136276020830184612e51565b9392505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261368a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261364f565b613694868361364f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6136cf6136ca6136c584612d33565b6136ac565b612d33565b9050919050565b5f819050919050565b6136e8836136b5565b6136fc6136f4826136d6565b84845461365b565b825550505050565b5f90565b613710613704565b61371b8184846136df565b505050565b5b8181101561373e576137335f82613708565b600181019050613721565b5050565b601f821115613783576137548161362e565b61375d84613640565b8101602085101561376c578190505b61378061377885613640565b830182613720565b50505b505050565b5f82821c905092915050565b5f6137a35f1984600802613788565b1980831691505092915050565b5f6137bb8383613794565b9150826002028217905092915050565b6137d482612c89565b67ffffffffffffffff8111156137ed576137ec613097565b5b6137f7825461349b565b613802828285613742565b5f60209050601f831160018114613833575f8415613821578287015190505b61382b85826137b0565b865550613892565b601f1984166138418661362e565b5f5b8281101561386857848901518255600182019150602085019450602081019050613843565b868310156138855784890151613881601f891682613794565b8355505b6001600288020188555050505b505050505050565b5f8160601b9050919050565b5f6138b08261389a565b9050919050565b5f6138c1826138a6565b9050919050565b6138d96138d482612db0565b6138b7565b82525050565b5f6138ea82846138c8565b60148201915081905092915050565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e745f8201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b5f613953602683612c93565b915061395e826138f9565b604082019050919050565b5f6020820190508181035f83015261398081613947565b9050919050565b7f62617365555249206e6f742073657400000000000000000000000000000000005f82015250565b5f6139bb600f83612c93565b91506139c682613987565b602082019050919050565b5f6020820190508181035f8301526139e8816139af565b9050919050565b5f81905092915050565b5f613a0382612c89565b613a0d81856139ef565b9350613a1d818560208601612ca3565b80840191505092915050565b5f613a3482856139f9565b9150613a4082846139f9565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f613a7082613a4c565b613a7a8185613a56565b9350613a8a818560208601612ca3565b613a9381612ccb565b840191505092915050565b5f608082019050613ab15f830187612dc1565b613abe6020830186612dc1565b613acb6040830185612e51565b8181036060830152613add8184613a66565b905095945050505050565b5f81519050613af681612c01565b92915050565b5f60208284031215613b1157613b10612bce565b5b5f613b1e84828501613ae8565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050613b675f830185612dc1565b613b746020830184612f52565b9392505050565b5f604082019050613b8e5f830185612dc1565b613b9b6020830184612e51565b939250505056fea26469706673582212204bd6d1e7276a9885495eba8f9c1c0ade7888007cbd4f4da308d40cf338e1184e64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ad37805e0a724e2c334acf49d255a0a35b76fe7c000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f33312f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a57ec3a618b6969a6b1fec2ef4bf54b2afc5ca30

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610246575f3560e01c80637cb6475911610139578063a96f38dd116100b6578063c87b56dd1161007a578063c87b56dd146106da578063d4c975331461070a578063d547741f14610726578063e985e9c514610742578063f2fde38b1461077257610246565b8063a96f38dd14610636578063b77a147b14610654578063b88d4fde14610684578063bf113baf146106a0578063c3ad8e98146106bc57610246565b80639abc8320116100fd5780639abc8320146105a65780639f3632fb146105c4578063a0bcfc7f146105e0578063a217fddf146105fc578063a22cb4651461061a57610246565b80637cb64759146105005780637e5b81061461051c5780638da5cb5b1461053a57806391d148541461055857806395d89b411461058857610246565b80632f2ff15d116101c75780635de6dc551161018b5780635de6dc55146104485780636352211e1461047857806370a08231146104a8578063715018a6146104d857806371a4c485146104e257610246565b80632f2ff15d146103b857806332cb6b0c146103d457806336568abe146103f257806342842e0e1461040e57806343bc16121461042a57610246565b806318160ddd1161020e57806318160ddd146103005780631e7269c51461031e57806323b872dd1461034e578063248a9ca31461036a5780632eb4a7ab1461039a57610246565b806301ffc9a71461024a57806306fdde031461027a5780630798f69714610298578063081812fc146102b4578063095ea7b3146102e4575b5f80fd5b610264600480360381019061025f9190612c2b565b61078e565b6040516102719190612c70565b60405180910390f35b61028261079f565b60405161028f9190612d13565b60405180910390f35b6102b260048036038101906102ad9190612d66565b61082e565b005b6102ce60048036038101906102c99190612d66565b61089a565b6040516102db9190612dd0565b60405180910390f35b6102fe60048036038101906102f99190612e13565b6108b5565b005b6103086108cb565b6040516103159190612e60565b60405180910390f35b61033860048036038101906103339190612e79565b6108d1565b6040516103459190612c70565b60405180910390f35b61036860048036038101906103639190612ea4565b6108ee565b005b610384600480360381019061037f9190612f27565b6109ed565b6040516103919190612f61565b60405180910390f35b6103a2610a0a565b6040516103af9190612f61565b60405180910390f35b6103d260048036038101906103cd9190612f7a565b610a10565b005b6103dc610a32565b6040516103e99190612e60565b60405180910390f35b61040c60048036038101906104079190612f7a565b610a37565b005b61042860048036038101906104239190612ea4565b610ab2565b005b610432610ad1565b60405161043f9190612dd0565b60405180910390f35b610462600480360381019061045d9190612e79565b610af6565b60405161046f919061306f565b60405180910390f35b610492600480360381019061048d9190612d66565b610bee565b60405161049f9190612dd0565b60405180910390f35b6104c260048036038101906104bd9190612e79565b610bff565b6040516104cf9190612e60565b60405180910390f35b6104e0610cb5565b005b6104ea610cc8565b6040516104f79190612e60565b60405180910390f35b61051a60048036038101906105159190612f27565b610cce565b005b610524610ce5565b6040516105319190612e60565b60405180910390f35b610542610ceb565b60405161054f9190612dd0565b60405180910390f35b610572600480360381019061056d9190612f7a565b610d13565b60405161057f9190612c70565b60405180910390f35b610590610d77565b60405161059d9190612d13565b60405180910390f35b6105ae610e07565b6040516105bb9190612d13565b60405180910390f35b6105de60048036038101906105d99190612d66565b610e93565b005b6105fa60048036038101906105f591906131bb565b611081565b005b6106046110a1565b6040516106119190612f61565b60405180910390f35b610634600480360381019061062f919061322c565b6110a7565b005b61063e6110bd565b60405161064b9190612e60565b60405180910390f35b61066e600480360381019061066991906132c7565b6110ec565b60405161067b9190612e60565b60405180910390f35b61069e600480360381019061069991906133b0565b61132b565b005b6106ba60048036038101906106b59190612d66565b611348565b005b6106c461158e565b6040516106d19190612e60565b60405180910390f35b6106f460048036038101906106ef9190612d66565b6115a4565b6040516107019190612d13565b60405180910390f35b610724600480360381019061071f9190612e79565b61169c565b005b610740600480360381019061073b9190612f7a565b6116ec565b005b61075c60048036038101906107579190613430565b61170e565b6040516107699190612c70565b60405180910390f35b61078c60048036038101906107879190612e79565b61179c565b005b5f61079882611820565b9050919050565b60605f80546107ad9061349b565b80601f01602080910402602001604051908101604052809291908181526020018280546107d99061349b565b80156108245780601f106107fb57610100808354040283529160200191610824565b820191905f5260205f20905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b5f801b61083a81611899565b600a54606461084991906134f8565b600d548361085791906134f8565b111561088f576040517fd5c4417900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600c819055505050565b5f6108a4826118ad565b506108ae82611933565b9050919050565b6108c782826108c261196c565b611973565b5050565b600a5481565b6009602052805f5260405f205f915054906101000a900460ff1681565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361095e575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016109559190612dd0565b60405180910390fd5b5f610971838361096c61196c565b611985565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109e7578382826040517f64283d7b0000000000000000000000000000000000000000000000000000000081526004016109de9392919061352b565b60405180910390fd5b50505050565b5f60075f8381526020019081526020015f20600101549050919050565b600b5481565b610a19826109ed565b610a2281611899565b610a2c8383611b90565b50505050565b606481565b610a3f61196c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa3576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aad8282611c7a565b505050565b610acc83838360405180602001604052805f81525061132b565b505050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60605f610b0283610bff565b90505f8167ffffffffffffffff811115610b1f57610b1e613097565b5b604051908082528060200260200182016040528015610b4d5781602001602082028036833780820191505090505b5090505f805b600a54811015610be2578573ffffffffffffffffffffffffffffffffffffffff16610b7d82610bee565b73ffffffffffffffffffffffffffffffffffffffff1603610bc75780838381518110610bac57610bab613560565b5b6020026020010181815250508180610bc39061358d565b9250505b83820315610be2578080610bda9061358d565b915050610b53565b50819350505050919050565b5f610bf8826118ad565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c70575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610c679190612dd0565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cbd611d64565b610cc65f611deb565b565b600c5481565b5f801b610cda81611899565b81600b819055505050565b600d5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60075f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b606060018054610d869061349b565b80601f0160208091040260200160405190810160405280929190818152602001828054610db29061349b565b8015610dfd5780601f10610dd457610100808354040283529160200191610dfd565b820191905f5260205f20905b815481529060010190602001808311610de057829003601f168201915b5050505050905090565b600f8054610e149061349b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e409061349b565b8015610e8b5780601f10610e6257610100808354040283529160200191610e8b565b820191905f5260205f20905b815481529060010190602001808311610e6e57829003601f168201915b505050505081565b610e9b611eae565b5f801b610ea781611899565b5f8203610ee0576040517f54d9c53200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f66576040517f81e051c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600d54600c54610f7791906134f8565b90505f8103610fb2576040517fd5c4417900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fbc8382611ef4565b92505f600a5490505f5b8481101561101a57610ff9600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611f0c565b81806110049061358d565b92505080806110129061358d565b915050610fc6565b5083600d5f82825461102c91906135d4565b9250508190555080600a819055507f0b3544e12b031cb05a003a4e0cb691f6809a97e68d9f3d5d00387b0ee985acba848360405161106b929190613607565b60405180910390a150505061107e611f29565b50565b5f801b61108d81611899565b81600f908161109c91906137cb565b505050565b5f801b81565b6110b96110b261196c565b8383611f33565b5050565b5f600d54600c546110ce91906134f8565b600a5460646110dd91906134f8565b6110e791906134f8565b905090565b5f6110f5611eae565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611176576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064600a54106111b2576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60016111bc6110bd565b10156111f4576040517f21bccf3f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f3360405160200161120691906138df565b60405160208183030381529060405280519060200120905061126b8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600b548361209c565b6112a1576040517f231e418300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600a549150600a5f81548092919061130d9061358d565b919050555061131c3383611f0c565b50611325611f29565b92915050565b6113368484846108ee565b611342848484846120b2565b50505050565b611350611eae565b5f8103611389576040517f54d9c53200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361140f576040517f81e051c200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611495576040517f6bebaa5300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600d54600c546114a691906134f8565b90505f81036114e1576040517fd5c4417900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114eb8282611ef4565b91505f600a5490505f5b83811015611528576115073383611f0c565b81806115129061358d565b92505080806115209061358d565b9150506114f5565b5082600d5f82825461153a91906135d4565b9250508190555080600a819055507f0b3544e12b031cb05a003a4e0cb691f6809a97e68d9f3d5d00387b0ee985acba8383604051611579929190613607565b60405180910390a1505061158b611f29565b50565b5f600d54600c5461159f91906134f8565b905090565b60605f73ffffffffffffffffffffffffffffffffffffffff166115c683612264565b73ffffffffffffffffffffffffffffffffffffffff160361161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613969565b60405180910390fd5b5f61162561229d565b90505f81511161166a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611661906139d1565b60405180910390fd5b806116748461232d565b604051602001611685929190613a29565b604051602081830303815290604052915050919050565b5f801b6116a881611899565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6116f5826109ed565b6116fe81611899565b6117088383611c7a565b50505050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6117a4611d64565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611814575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161180b9190612dd0565b60405180910390fd5b61181d81611deb565b50565b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118925750611891826123f7565b5b9050919050565b6118aa816118a561196c565b6124d8565b50565b5f806118b883612264565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361192a57826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016119219190612e60565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b6119808383836001612529565b505050565b5f8061199084612264565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119d1576119d08184866126e8565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611a5c57611a105f855f80612529565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611adb57600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f611b9b8383610d13565b611c7057600160075f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611c0d61196c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050611c74565b5f90505b92915050565b5f611c858383610d13565b15611d5a575f60075f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611cf761196c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050611d5e565b5f90505b92915050565b611d6c61196c565b73ffffffffffffffffffffffffffffffffffffffff16611d8a610ceb565b73ffffffffffffffffffffffffffffffffffffffff1614611de957611dad61196c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611de09190612dd0565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260065403611eea576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600681905550565b5f818310611f025781611f04565b825b905092915050565b611f25828260405180602001604052805f8152506127ab565b5050565b6001600681905550565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fa357816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611f9a9190612dd0565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161208f9190612c70565b60405180910390a3505050565b5f826120a885846127c6565b1490509392505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561225e578273ffffffffffffffffffffffffffffffffffffffff1663150b7a026120f561196c565b8685856040518563ffffffff1660e01b81526004016121179493929190613a9e565b6020604051808303815f875af192505050801561215257506040513d601f19601f8201168201806040525081019061214f9190613afc565b60015b6121d3573d805f8114612180576040519150601f19603f3d011682016040523d82523d5f602084013e612185565b606091505b505f8151036121cb57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121c29190612dd0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461225c57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016122539190612dd0565b60405180910390fd5b505b50505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6060600f80546122ac9061349b565b80601f01602080910402602001604051908101604052809291908181526020018280546122d89061349b565b80156123235780601f106122fa57610100808354040283529160200191612323565b820191905f5260205f20905b81548152906001019060200180831161230657829003601f168201915b5050505050905090565b60605f600161233b8461281a565b0190505f8167ffffffffffffffff81111561235957612358613097565b5b6040519080825280601f01601f19166020018201604052801561238b5781602001600182028036833780820191505090505b5090505f82602001820190505b6001156123ec578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123e1576123e0613b27565b5b0494505f8503612398575b819350505050919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124d157506124d08261296b565b5b9050919050565b6124e28282610d13565b6125255780826040517fe2517d3f00000000000000000000000000000000000000000000000000000000815260040161251c929190613b54565b60405180910390fd5b5050565b808061256157505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612693575f612570846118ad565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156125da57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156125ed57506125eb818461170e565b155b1561262f57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016126269190612dd0565b60405180910390fd5b811561269157838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b6126f38383836129d4565b6127a6575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361276757806040517f7e27328900000000000000000000000000000000000000000000000000000000815260040161275e9190612e60565b60405180910390fd5b81816040517f177e802f00000000000000000000000000000000000000000000000000000000815260040161279d929190613b7b565b60405180910390fd5b505050565b6127b58383612a94565b6127c15f8484846120b2565b505050565b5f808290505f5b845181101561280f576127fa828683815181106127ed576127ec613560565b5b6020026020010151612b87565b915080806128079061358d565b9150506127cd565b508091505092915050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612876577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161286c5761286b613b27565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106128b3576d04ee2d6d415b85acef810000000083816128a9576128a8613b27565b5b0492506020810190505b662386f26fc1000083106128e257662386f26fc1000083816128d8576128d7613b27565b5b0492506010810190505b6305f5e100831061290b576305f5e100838161290157612900613b27565b5b0492506008810190505b612710831061293057612710838161292657612925613b27565b5b0492506004810190505b60648310612953576064838161294957612948613b27565b5b0492506002810190505b600a8310612962576001810190505b80915050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a8b57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a4c5750612a4b848461170e565b5b80612a8a57508273ffffffffffffffffffffffffffffffffffffffff16612a7283611933565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b04575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612afb9190612dd0565b60405180910390fd5b5f612b1083835f611985565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612b82575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612b799190612dd0565b60405180910390fd5b505050565b5f818310612b9e57612b998284612bb1565b612ba9565b612ba88383612bb1565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c0a81612bd6565b8114612c14575f80fd5b50565b5f81359050612c2581612c01565b92915050565b5f60208284031215612c4057612c3f612bce565b5b5f612c4d84828501612c17565b91505092915050565b5f8115159050919050565b612c6a81612c56565b82525050565b5f602082019050612c835f830184612c61565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612cc0578082015181840152602081019050612ca5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612ce582612c89565b612cef8185612c93565b9350612cff818560208601612ca3565b612d0881612ccb565b840191505092915050565b5f6020820190508181035f830152612d2b8184612cdb565b905092915050565b5f819050919050565b612d4581612d33565b8114612d4f575f80fd5b50565b5f81359050612d6081612d3c565b92915050565b5f60208284031215612d7b57612d7a612bce565b5b5f612d8884828501612d52565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612dba82612d91565b9050919050565b612dca81612db0565b82525050565b5f602082019050612de35f830184612dc1565b92915050565b612df281612db0565b8114612dfc575f80fd5b50565b5f81359050612e0d81612de9565b92915050565b5f8060408385031215612e2957612e28612bce565b5b5f612e3685828601612dff565b9250506020612e4785828601612d52565b9150509250929050565b612e5a81612d33565b82525050565b5f602082019050612e735f830184612e51565b92915050565b5f60208284031215612e8e57612e8d612bce565b5b5f612e9b84828501612dff565b91505092915050565b5f805f60608486031215612ebb57612eba612bce565b5b5f612ec886828701612dff565b9350506020612ed986828701612dff565b9250506040612eea86828701612d52565b9150509250925092565b5f819050919050565b612f0681612ef4565b8114612f10575f80fd5b50565b5f81359050612f2181612efd565b92915050565b5f60208284031215612f3c57612f3b612bce565b5b5f612f4984828501612f13565b91505092915050565b612f5b81612ef4565b82525050565b5f602082019050612f745f830184612f52565b92915050565b5f8060408385031215612f9057612f8f612bce565b5b5f612f9d85828601612f13565b9250506020612fae85828601612dff565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612fea81612d33565b82525050565b5f612ffb8383612fe1565b60208301905092915050565b5f602082019050919050565b5f61301d82612fb8565b6130278185612fc2565b935061303283612fd2565b805f5b838110156130625781516130498882612ff0565b975061305483613007565b925050600181019050613035565b5085935050505092915050565b5f6020820190508181035f8301526130878184613013565b905092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6130cd82612ccb565b810181811067ffffffffffffffff821117156130ec576130eb613097565b5b80604052505050565b5f6130fe612bc5565b905061310a82826130c4565b919050565b5f67ffffffffffffffff82111561312957613128613097565b5b61313282612ccb565b9050602081019050919050565b828183375f83830152505050565b5f61315f61315a8461310f565b6130f5565b90508281526020810184848401111561317b5761317a613093565b5b61318684828561313f565b509392505050565b5f82601f8301126131a2576131a161308f565b5b81356131b284826020860161314d565b91505092915050565b5f602082840312156131d0576131cf612bce565b5b5f82013567ffffffffffffffff8111156131ed576131ec612bd2565b5b6131f98482850161318e565b91505092915050565b61320b81612c56565b8114613215575f80fd5b50565b5f8135905061322681613202565b92915050565b5f806040838503121561324257613241612bce565b5b5f61324f85828601612dff565b925050602061326085828601613218565b9150509250929050565b5f80fd5b5f80fd5b5f8083601f8401126132875761328661308f565b5b8235905067ffffffffffffffff8111156132a4576132a361326a565b5b6020830191508360208202830111156132c0576132bf61326e565b5b9250929050565b5f80602083850312156132dd576132dc612bce565b5b5f83013567ffffffffffffffff8111156132fa576132f9612bd2565b5b61330685828601613272565b92509250509250929050565b5f67ffffffffffffffff82111561332c5761332b613097565b5b61333582612ccb565b9050602081019050919050565b5f61335461334f84613312565b6130f5565b9050828152602081018484840111156133705761336f613093565b5b61337b84828561313f565b509392505050565b5f82601f8301126133975761339661308f565b5b81356133a7848260208601613342565b91505092915050565b5f805f80608085870312156133c8576133c7612bce565b5b5f6133d587828801612dff565b94505060206133e687828801612dff565b93505060406133f787828801612d52565b925050606085013567ffffffffffffffff81111561341857613417612bd2565b5b61342487828801613383565b91505092959194509250565b5f806040838503121561344657613445612bce565b5b5f61345385828601612dff565b925050602061346485828601612dff565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806134b257607f821691505b6020821081036134c5576134c461346e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61350282612d33565b915061350d83612d33565b9250828203905081811115613525576135246134cb565b5b92915050565b5f60608201905061353e5f830186612dc1565b61354b6020830185612e51565b6135586040830184612dc1565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f61359782612d33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135c9576135c86134cb565b5b600182019050919050565b5f6135de82612d33565b91506135e983612d33565b9250828201905080821115613601576136006134cb565b5b92915050565b5f60408201905061361a5f830185612e51565b6136276020830184612e51565b9392505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261368a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261364f565b613694868361364f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6136cf6136ca6136c584612d33565b6136ac565b612d33565b9050919050565b5f819050919050565b6136e8836136b5565b6136fc6136f4826136d6565b84845461365b565b825550505050565b5f90565b613710613704565b61371b8184846136df565b505050565b5b8181101561373e576137335f82613708565b600181019050613721565b5050565b601f821115613783576137548161362e565b61375d84613640565b8101602085101561376c578190505b61378061377885613640565b830182613720565b50505b505050565b5f82821c905092915050565b5f6137a35f1984600802613788565b1980831691505092915050565b5f6137bb8383613794565b9150826002028217905092915050565b6137d482612c89565b67ffffffffffffffff8111156137ed576137ec613097565b5b6137f7825461349b565b613802828285613742565b5f60209050601f831160018114613833575f8415613821578287015190505b61382b85826137b0565b865550613892565b601f1984166138418661362e565b5f5b8281101561386857848901518255600182019150602085019450602081019050613843565b868310156138855784890151613881601f891682613794565b8355505b6001600288020188555050505b505050505050565b5f8160601b9050919050565b5f6138b08261389a565b9050919050565b5f6138c1826138a6565b9050919050565b6138d96138d482612db0565b6138b7565b82525050565b5f6138ea82846138c8565b60148201915081905092915050565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e745f8201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b5f613953602683612c93565b915061395e826138f9565b604082019050919050565b5f6020820190508181035f83015261398081613947565b9050919050565b7f62617365555249206e6f742073657400000000000000000000000000000000005f82015250565b5f6139bb600f83612c93565b91506139c682613987565b602082019050919050565b5f6020820190508181035f8301526139e8816139af565b9050919050565b5f81905092915050565b5f613a0382612c89565b613a0d81856139ef565b9350613a1d818560208601612ca3565b80840191505092915050565b5f613a3482856139f9565b9150613a4082846139f9565b91508190509392505050565b5f81519050919050565b5f82825260208201905092915050565b5f613a7082613a4c565b613a7a8185613a56565b9350613a8a818560208601612ca3565b613a9381612ccb565b840191505092915050565b5f608082019050613ab15f830187612dc1565b613abe6020830186612dc1565b613acb6040830185612e51565b8181036060830152613add8184613a66565b905095945050505050565b5f81519050613af681612c01565b92915050565b5f60208284031215613b1157613b10612bce565b5b5f613b1e84828501613ae8565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f604082019050613b675f830185612dc1565b613b746020830184612f52565b9392505050565b5f604082019050613b8e5f830185612dc1565b613b9b6020830184612e51565b939250505056fea26469706673582212204bd6d1e7276a9885495eba8f9c1c0ade7888007cbd4f4da308d40cf338e1184e64736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000ad37805e0a724e2c334acf49d255a0a35b76fe7c000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f33312f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a57ec3a618b6969a6b1fec2ef4bf54b2afc5ca30

-----Decoded View---------------
Arg [0] : _baseUri (string): https://client-api.deca.systems/decal/metadata/31/
Arg [1] : _admins (address[]): 0xA57ec3a618b6969a6B1fEc2eF4BF54B2AfC5ca30
Arg [2] : _artistMaxSupply (uint256): 1
Arg [3] : _artist (address): 0xAD37805e0a724E2c334ACf49D255a0A35B76fe7c

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 000000000000000000000000ad37805e0a724e2c334acf49d255a0a35b76fe7c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [5] : 68747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f
Arg [6] : 646563616c2f6d657461646174612f33312f0000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 000000000000000000000000a57ec3a618b6969a6b1fec2ef4bf54b2afc5ca30


Deployed Bytecode Sourcemap

88269:5386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93360:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52356:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89470:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53528:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53347:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88541:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88494:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54197:588;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10110:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88629:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10542:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88580:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11679:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54856:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88738:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92805:483;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52169:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51894:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15803:103;;;:::i;:::-;;88663:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89759:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88702:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9126:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52516:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88768:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90650:726;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89892:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8438:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53758:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92140:148;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90025:617;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55061:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91384:748;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92296:121;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92425:372;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89353:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10973:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53975:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16061:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93360:176;93468:4;93492:36;93516:11;93492:23;:36::i;:::-;93485:43;;93360:176;;;:::o;52356:91::-;52401:13;52434:5;52427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52356:91;:::o;89470:281::-;8483:4;89542:18;;8722:16;8733:4;8722:10;:16::i;:::-;89627:11:::1;;88617:3;89614:24;;;;:::i;:::-;89597:12;;89578:16;:31;;;;:::i;:::-;89577:62;89573:126;;;89663:24;;;;;;;;;;;;;;89573:126;89727:16;89709:15;:34;;;;89470:281:::0;;:::o;53528:158::-;53595:7;53615:22;53629:7;53615:13;:22::i;:::-;;53657:21;53670:7;53657:12;:21::i;:::-;53650:28;;53528:158;;;:::o;53347:115::-;53419:35;53428:2;53432:7;53441:12;:10;:12::i;:::-;53419:8;:35::i;:::-;53347:115;;:::o;88541:30::-;;;;:::o;88494:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;54197:588::-;54306:1;54292:16;;:2;:16;;;54288:89;;54362:1;54332:33;;;;;;;;;;;:::i;:::-;;;;;;;;54288:89;54598:21;54622:34;54630:2;54634:7;54643:12;:10;:12::i;:::-;54622:7;:34::i;:::-;54598:58;;54688:4;54671:21;;:13;:21;;;54667:111;;54737:4;54743:7;54752:13;54716:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;54667:111;54277:508;54197:588;;;:::o;10110:122::-;10175:7;10202:6;:12;10209:4;10202:12;;;;;;;;;;;:22;;;10195:29;;10110:122;;;:::o;88629:25::-;;;;:::o;10542:138::-;10616:18;10629:4;10616:12;:18::i;:::-;8722:16;8733:4;8722:10;:16::i;:::-;10647:25:::1;10658:4;10664:7;10647:10;:25::i;:::-;;10542:138:::0;;;:::o;88580:40::-;88617:3;88580:40;:::o;11679:251::-;11795:12;:10;:12::i;:::-;11773:34;;:18;:34;;;11769:104;;11831:30;;;;;;;;;;;;;;11769:104;11885:37;11897:4;11903:18;11885:11;:37::i;:::-;;11679:251;;:::o;54856:134::-;54943:39;54960:4;54966:2;54970:7;54943:39;;;;;;;;;;;;:16;:39::i;:::-;54856:134;;;:::o;88738:21::-;;;;;;;;;;;;;:::o;92805:483::-;92870:16;92899:18;92920:17;92930:6;92920:9;:17::i;:::-;92899:38;;92948:25;92990:10;92976:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92948:53;;93012:12;93044:9;93039:216;93063:11;;93059:1;:15;93039:216;;;93114:6;93100:20;;:10;93108:1;93100:7;:10::i;:::-;:20;;;93096:104;;93158:1;93141:8;93150:4;93141:14;;;;;;;;:::i;:::-;;;;;;;:18;;;;;93178:6;;;;;:::i;:::-;;;;93096:104;93226:10;93218:4;:18;93214:29;93238:5;93214:29;93076:3;;;;;:::i;:::-;;;;93039:216;;;;93272:8;93265:15;;;;;92805:483;;;:::o;52169:120::-;52232:7;52259:22;52273:7;52259:13;:22::i;:::-;52252:29;;52169:120;;;:::o;51894:213::-;51957:7;51998:1;51981:19;;:5;:19;;;51977:89;;52051:1;52024:30;;;;;;;;;;;:::i;:::-;;;;;;;;51977:89;52083:9;:16;52093:5;52083:16;;;;;;;;;;;;;;;;52076:23;;51894:213;;;:::o;15803:103::-;15014:13;:11;:13::i;:::-;15868:30:::1;15895:1;15868:18;:30::i;:::-;15803:103::o:0;88663:30::-;;;;:::o;89759:125::-;8483:4;89821:18;;8722:16;8733:4;8722:10;:16::i;:::-;89865:11:::1;89852:10;:24;;;;89759:125:::0;;:::o;88702:27::-;;;;:::o;15128:87::-;15174:7;15201:6;;;;;;;;;;;15194:13;;15128:87;:::o;9126:138::-;9203:4;9227:6;:12;9234:4;9227:12;;;;;;;;;;;:20;;:29;9248:7;9227:29;;;;;;;;;;;;;;;;;;;;;;;;;9220:36;;9126:138;;;;:::o;52516:95::-;52563:13;52596:7;52589:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52516:95;:::o;88768:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90650:726::-;86976:21;:19;:21::i;:::-;8483:4:::1;90734:18:::0;::::1;8722:16;8733:4;8722:10;:16::i;:::-;90788:1:::2;90769:15;:20:::0;90765:49:::2;;90798:16;;;;;;;;;;;;;;90765:49;90847:1;90829:20;;:6;;;;;;;;;;;:20;;::::0;90825:43:::2;;90858:10;;;;;;;;;;;;;;90825:43;90879:17;90917:12;;90899:15;;:30;;;;:::i;:::-;90879:50;;90957:1;90944:9;:14:::0;90940:51:::2;;90967:24;;;;;;;;;;;;;;90940:51;91028:36;91037:15;91054:9;91028:8;:36::i;:::-;91002:63;;91076:15;91094:11;;91076:29;;91121:9;91116:123;91140:15;91136:1;:19;91116:123;;;91177:26;91187:6;;;;;;;;;;;91195:7;91177:9;:26::i;:::-;91218:9;;;;;:::i;:::-;;;;91157:3;;;;;:::i;:::-;;;;91116:123;;;;91265:15;91249:12;;:31;;;;;;;:::i;:::-;;;;;;;;91305:7;91291:11;:21;;;;91328:40;91341:15;91358:9;91328:40;;;;;;;:::i;:::-;;;;;;;;90754:622;;87008:1:::1;87020:20:::0;:18;:20::i;:::-;90650:726;:::o;89892:125::-;8483:4;89957:18;;8722:16;8733:4;8722:10;:16::i;:::-;89998:11:::1;89988:7;:21;;;;;;:::i;:::-;;89892:125:::0;;:::o;8438:49::-;8483:4;8438:49;;;:::o;53758:146::-;53844:52;53863:12;:10;:12::i;:::-;53877:8;53887;53844:18;:52::i;:::-;53758:146;;:::o;92140:148::-;92194:7;92267:12;;92249:15;;:30;;;;:::i;:::-;92234:11;;88617:3;92221:24;;;;:::i;:::-;:59;;;;:::i;:::-;92214:66;;92140:148;:::o;90025:617::-;90103:15;86976:21;:19;:21::i;:::-;90135:6:::1;:18;90142:10;90135:18;;;;;;;;;;;;;;;;;;;;;;;;;90131:46;;;90162:15;;;;;;;;;;;;;;90131:46;88617:3;90192:11;;:25;90188:56;;90226:18;;;;;;;;;;;;;;90188:56;90285:1;90259:23;:21;:23::i;:::-;:27;90255:64;;;90295:24;;;;;;;;;;;;;;90255:64;90330:12;90372:10;90355:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;90345:39;;;;;;90330:54;;90400:50;90419:12;;90400:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90433:10;;90445:4;90400:18;:50::i;:::-;90395:107;;90474:16;;;;;;;;;;;;;;90395:107;90533:4;90512:6;:18;90519:10;90512:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;90558:11;;90548:21;;90580:11;;:13;;;;;;;;;:::i;:::-;;;;;;90604:30;90614:10;90626:7;90604:9;:30::i;:::-;90120:522;87020:20:::0;:18;:20::i;:::-;90025:617;;;;:::o;55061:211::-;55175:31;55188:4;55194:2;55198:7;55175:12;:31::i;:::-;55217:47;55240:4;55246:2;55250:7;55259:4;55217:22;:47::i;:::-;55061:211;;;;:::o;91384:748::-;86976:21;:19;:21::i;:::-;91485:1:::1;91466:15;:20:::0;91462:49:::1;;91495:16;;;;;;;;;;;;;;91462:49;91544:1;91526:20;;:6;;;;;;;;;;;:20;;::::0;91522:43:::1;;91555:10;;;;;;;;;;;;;;91522:43;91594:6;;;;;;;;;;;91580:20;;:10;:20;;;91576:44;;91609:11;;;;;;;;;;;;;;91576:44;91631:17;91669:12;;91651:15;;:30;;;;:::i;:::-;91631:50;;91709:1;91696:9;:14:::0;91692:51:::1;;91719:24;;;;;;;;;;;;;;91692:51;91780:36;91789:15;91806:9;91780:8;:36::i;:::-;91754:63;;91828:15;91846:11;;91828:29;;91873:9;91868:127;91892:15;91888:1;:19;91868:127;;;91929:30;91939:10;91951:7;91929:9;:30::i;:::-;91974:9;;;;;:::i;:::-;;;;91909:3;;;;;:::i;:::-;;;;91868:127;;;;92021:15;92005:12;;:31;;;;;;;:::i;:::-;;;;;;;;92061:7;92047:11;:21;;;;92084:40;92097:15;92114:9;92084:40;;;;;;;:::i;:::-;;;;;;;;91451:681;;87020:20:::0;:18;:20::i;:::-;91384:748;:::o;92296:121::-;92352:7;92397:12;;92379:15;;:30;;;;:::i;:::-;92372:37;;92296:121;:::o;92425:372::-;92499:13;92563:1;92533:32;;:18;92542:8;92533;:18::i;:::-;:32;;;92525:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;92619:21;92643:10;:8;:10::i;:::-;92619:34;;92696:1;92678:7;92672:21;:25;92664:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;92759:7;92768:19;:8;:17;:19::i;:::-;92742:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;92728:61;;;92425:372;;;:::o;89353:109::-;8483:4;89407:18;;8722:16;8733:4;8722:10;:16::i;:::-;89447:7:::1;89438:6;;:16;;;;;;;;;;;;;;;;;;89353:109:::0;;:::o;10973:140::-;11048:18;11061:4;11048:12;:18::i;:::-;8722:16;8733:4;8722:10;:16::i;:::-;11079:26:::1;11091:4;11097:7;11079:11;:26::i;:::-;;10973:140:::0;;;:::o;53975:155::-;54063:4;54087:18;:25;54106:5;54087:25;;;;;;;;;;;;;;;:35;54113:8;54087:35;;;;;;;;;;;;;;;;;;;;;;;;;54080:42;;53975:155;;;;:::o;16061:220::-;15014:13;:11;:13::i;:::-;16166:1:::1;16146:22;;:8;:22;;::::0;16142:93:::1;;16220:1;16192:31;;;;;;;;;;;:::i;:::-;;;;;;;;16142:93;16245:28;16264:8;16245:18;:28::i;:::-;16061:220:::0;:::o;8830:204::-;8915:4;8954:32;8939:47;;;:11;:47;;;;:87;;;;8990:36;9014:11;8990:23;:36::i;:::-;8939:87;8932:94;;8830:204;;;:::o;9479:105::-;9546:30;9557:4;9563:12;:10;:12::i;:::-;9546:10;:30::i;:::-;9479:105;:::o;66490:247::-;66553:7;66573:13;66589:17;66598:7;66589:8;:17::i;:::-;66573:33;;66638:1;66621:19;;:5;:19;;;66617:90;;66687:7;66664:31;;;;;;;;;;;:::i;:::-;;;;;;;;66617:90;66724:5;66717:12;;;66490:247;;;:::o;56034:129::-;56104:7;56131:15;:24;56147:7;56131:24;;;;;;;;;;;;;;;;;;;;;56124:31;;56034:129;;;:::o;4127:98::-;4180:7;4207:10;4200:17;;4127:98;:::o;64722:122::-;64803:33;64812:2;64816:7;64825:4;64831;64803:8;:33::i;:::-;64722:122;;;:::o;58983:824::-;59069:7;59089:12;59104:17;59113:7;59104:8;:17::i;:::-;59089:32;;59200:1;59184:18;;:4;:18;;;59180:88;;59219:37;59236:4;59242;59248:7;59219:16;:37::i;:::-;59180:88;59331:1;59315:18;;:4;:18;;;59311:263;;59433:48;59450:1;59454:7;59471:1;59475:5;59433:8;:48::i;:::-;59546:1;59527:9;:15;59537:4;59527:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;59311:263;59604:1;59590:16;;:2;:16;;;59586:111;;59669:1;59652:9;:13;59662:2;59652:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;59586:111;59728:2;59709:7;:16;59717:7;59709:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;59767:7;59763:2;59748:27;;59757:4;59748:27;;;;;;;;;;;;59795:4;59788:11;;;58983:824;;;;;:::o;12556:324::-;12633:4;12655:22;12663:4;12669:7;12655;:22::i;:::-;12650:223;;12726:4;12694:6;:12;12701:4;12694:12;;;;;;;;;;;:20;;:29;12715:7;12694:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;12777:12;:10;:12::i;:::-;12750:40;;12768:7;12750:40;;12762:4;12750:40;;;;;;;;;;12812:4;12805:11;;;;12650:223;12856:5;12849:12;;12556:324;;;;;:::o;13124:325::-;13202:4;13223:22;13231:4;13237:7;13223;:22::i;:::-;13219:223;;;13294:5;13262:6;:12;13269:4;13262:12;;;;;;;;;;;:20;;:29;13283:7;13262:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;13346:12;:10;:12::i;:::-;13319:40;;13337:7;13319:40;;13331:4;13319:40;;;;;;;;;;13381:4;13374:11;;;;13219:223;13425:5;13418:12;;13124:325;;;;;:::o;15293:166::-;15364:12;:10;:12::i;:::-;15353:23;;:7;:5;:7::i;:::-;:23;;;15349:103;;15427:12;:10;:12::i;:::-;15400:40;;;;;;;;;;;:::i;:::-;;;;;;;;15349:103;15293:166::o;16441:191::-;16515:16;16534:6;;;;;;;;;;;16515:25;;16560:8;16551:6;;:17;;;;;;;;;;;;;;;;;;16615:8;16584:40;;16605:8;16584:40;;;;;;;;;;;;16504:128;16441:191;:::o;87056:315::-;86354:1;87185:7;;:18;87181:88;;87227:30;;;;;;;;;;;;;;87181:88;86354:1;87346:7;:17;;;;87056:315::o;32950:106::-;33008:7;33039:1;33035;:5;:13;;33047:1;33035:13;;;33043:1;33035:13;33028:20;;32950:106;;;;:::o;60841:102::-;60909:26;60919:2;60923:7;60909:26;;;;;;;;;;;;:9;:26::i;:::-;60841:102;;:::o;87379:212::-;86311:1;87562:7;:21;;;;87379:212::o;65929:318::-;66057:1;66037:22;;:8;:22;;;66033:93;;66105:8;66083:31;;;;;;;;;;;:::i;:::-;;;;;;;;66033:93;66174:8;66136:18;:25;66155:5;66136:25;;;;;;;;;;;;;;;:35;66162:8;66136:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;66220:8;66198:41;;66213:5;66198:41;;;66230:8;66198:41;;;;;;:::i;:::-;;;;;;;;65929:318;;;:::o;75881:156::-;75972:4;76025;75996:25;76009:5;76016:4;75996:12;:25::i;:::-;:33;75989:40;;75881:156;;;;;:::o;67287:799::-;67421:1;67404:2;:14;;;:18;67400:679;;;67459:2;67443:36;;;67480:12;:10;:12::i;:::-;67494:4;67500:7;67509:4;67443:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;67439:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67774:1;67757:6;:13;:18;67753:300;;67829:2;67807:25;;;;;;;;;;;:::i;:::-;;;;;;;;67753:300;68003:6;67997:13;67988:6;67984:2;67980:15;67973:38;67439:629;67572:41;;;67562:51;;;:6;:51;;;;67558:132;;67667:2;67645:25;;;;;;;;;;;:::i;:::-;;;;;;;;67558:132;67515:190;67400:679;67287:799;;;;:::o;55796:117::-;55862:7;55889;:16;55897:7;55889:16;;;;;;;;;;;;;;;;;;;;;55882:23;;55796:117;;;:::o;93544:108::-;93604:13;93637:7;93630:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93544:108;:::o;47780:718::-;47836:13;47887:14;47924:1;47904:17;47915:5;47904:10;:17::i;:::-;:21;47887:38;;47940:20;47974:6;47963:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47940:41;;47996:11;48125:6;48121:2;48117:15;48109:6;48105:28;48098:35;;48162:290;48169:4;48162:290;;;48194:5;;;;;;;;48336:10;48331:2;48324:5;48320:14;48315:32;48310:3;48302:46;48394:2;48385:11;;;;;;:::i;:::-;;;;;48428:1;48419:5;:10;48162:290;48415:21;48162:290;48473:6;48466:13;;;;;47780:718;;;:::o;51551:279::-;51653:4;51692:25;51677:40;;;:11;:40;;;;:92;;;;51736:33;51721:48;;;:11;:48;;;;51677:92;:145;;;;51786:36;51810:11;51786:23;:36::i;:::-;51677:145;51670:152;;51551:279;;;:::o;9720:201::-;9809:22;9817:4;9823:7;9809;:22::i;:::-;9804:110;;9888:7;9897:4;9855:47;;;;;;;;;;;;:::i;:::-;;;;;;;;9804:110;9720:201;;:::o;65032:678::-;65194:9;:31;;;;65223:1;65207:18;;:4;:18;;;;65194:31;65190:471;;;65242:13;65258:22;65272:7;65258:13;:22::i;:::-;65242:38;;65427:1;65411:18;;:4;:18;;;;:35;;;;;65442:4;65433:13;;:5;:13;;;;65411:35;:69;;;;;65451:29;65468:5;65475:4;65451:16;:29::i;:::-;65450:30;65411:69;65407:144;;;65530:4;65508:27;;;;;;;;;;;:::i;:::-;;;;;;;;65407:144;65571:9;65567:83;;;65626:7;65622:2;65606:28;;65615:5;65606:28;;;;;;;;;;;;65567:83;65227:434;65190:471;65700:2;65673:15;:24;65689:7;65673:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65032:678;;;;:::o;57190:376::-;57303:38;57317:5;57324:7;57333;57303:13;:38::i;:::-;57298:261;;57379:1;57362:19;;:5;:19;;;57358:190;;57432:7;57409:31;;;;;;;;;;;:::i;:::-;;;;;;;;57358:190;57515:7;57524;57488:44;;;;;;;;;;;;:::i;:::-;;;;;;;;57298:261;57190:376;;;:::o;61170:185::-;61265:18;61271:2;61275:7;61265:5;:18::i;:::-;61294:53;61325:1;61329:2;61333:7;61342:4;61294:22;:53::i;:::-;61170:185;;;:::o;76600:296::-;76683:7;76703:20;76726:4;76703:27;;76746:9;76741:118;76765:5;:12;76761:1;:16;76741:118;;;76814:33;76824:12;76838:5;76844:1;76838:8;;;;;;;;:::i;:::-;;;;;;;;76814:9;:33::i;:::-;76799:48;;76779:3;;;;;:::i;:::-;;;;76741:118;;;;76876:12;76869:19;;;76600:296;;;;:::o;42840:948::-;42893:7;42913:14;42930:1;42913:18;;42980:8;42971:5;:17;42967:106;;43018:8;43009:17;;;;;;:::i;:::-;;;;;43055:2;43045:12;;;;42967:106;43100:8;43091:5;:17;43087:106;;43138:8;43129:17;;;;;;:::i;:::-;;;;;43175:2;43165:12;;;;43087:106;43220:8;43211:5;:17;43207:106;;43258:8;43249:17;;;;;;:::i;:::-;;;;;43295:2;43285:12;;;;43207:106;43340:7;43331:5;:16;43327:103;;43377:7;43368:16;;;;;;:::i;:::-;;;;;43413:1;43403:11;;;;43327:103;43457:7;43448:5;:16;43444:103;;43494:7;43485:16;;;;;;:::i;:::-;;;;;43530:1;43520:11;;;;43444:103;43574:7;43565:5;:16;43561:103;;43611:7;43602:16;;;;;;:::i;:::-;;;;;43647:1;43637:11;;;;43561:103;43691:7;43682:5;:16;43678:68;;43729:1;43719:11;;;;43678:68;43774:6;43767:13;;;42840:948;;;:::o;6168:148::-;6244:4;6283:25;6268:40;;;:11;:40;;;;6261:47;;6168:148;;;:::o;56483:263::-;56586:4;56629:1;56610:21;;:7;:21;;;;:128;;;;;56658:7;56649:16;;:5;:16;;;:52;;;;56669:32;56686:5;56693:7;56669:16;:32::i;:::-;56649:52;:88;;;;56730:7;56705:32;;:21;56718:7;56705:12;:21::i;:::-;:32;;;56649:88;56610:128;56603:135;;56483:263;;;;;:::o;60143:335::-;60225:1;60211:16;;:2;:16;;;60207:89;;60281:1;60251:33;;;;;;;;;;;:::i;:::-;;;;;;;;60207:89;60306:21;60330:32;60338:2;60342:7;60359:1;60330:7;:32::i;:::-;60306:56;;60402:1;60377:27;;:13;:27;;;60373:98;;60456:1;60428:31;;;;;;;;;;;:::i;:::-;;;;;;;;60373:98;60196:282;60143:335;;:::o;83981:149::-;84044:7;84075:1;84071;:5;:51;;84102:20;84117:1;84120;84102:14;:20::i;:::-;84071:51;;;84079:20;84094:1;84097;84079:14;:20::i;:::-;84071:51;84064:58;;83981:149;;;;:::o;84255:268::-;84323:13;84430:1;84424:4;84417:15;84459:1;84453:4;84446:15;84500:4;84494;84484:21;84475:30;;84255:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:329::-;5301:6;5350:2;5338:9;5329:7;5325:23;5321:32;5318:119;;;5356:79;;:::i;:::-;5318:119;5476:1;5501:53;5546:7;5537:6;5526:9;5522:22;5501:53;:::i;:::-;5491:63;;5447:117;5242:329;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:77::-;6239:7;6268:5;6257:16;;6202:77;;;:::o;6285:122::-;6358:24;6376:5;6358:24;:::i;:::-;6351:5;6348:35;6338:63;;6397:1;6394;6387:12;6338:63;6285:122;:::o;6413:139::-;6459:5;6497:6;6484:20;6475:29;;6513:33;6540:5;6513:33;:::i;:::-;6413:139;;;;:::o;6558:329::-;6617:6;6666:2;6654:9;6645:7;6641:23;6637:32;6634:119;;;6672:79;;:::i;:::-;6634:119;6792:1;6817:53;6862:7;6853:6;6842:9;6838:22;6817:53;:::i;:::-;6807:63;;6763:117;6558:329;;;;:::o;6893:118::-;6980:24;6998:5;6980:24;:::i;:::-;6975:3;6968:37;6893:118;;:::o;7017:222::-;7110:4;7148:2;7137:9;7133:18;7125:26;;7161:71;7229:1;7218:9;7214:17;7205:6;7161:71;:::i;:::-;7017:222;;;;:::o;7245:474::-;7313:6;7321;7370:2;7358:9;7349:7;7345:23;7341:32;7338:119;;;7376:79;;:::i;:::-;7338:119;7496:1;7521:53;7566:7;7557:6;7546:9;7542:22;7521:53;:::i;:::-;7511:63;;7467:117;7623:2;7649:53;7694:7;7685:6;7674:9;7670:22;7649:53;:::i;:::-;7639:63;;7594:118;7245:474;;;;;:::o;7725:114::-;7792:6;7826:5;7820:12;7810:22;;7725:114;;;:::o;7845:184::-;7944:11;7978:6;7973:3;7966:19;8018:4;8013:3;8009:14;7994:29;;7845:184;;;;:::o;8035:132::-;8102:4;8125:3;8117:11;;8155:4;8150:3;8146:14;8138:22;;8035:132;;;:::o;8173:108::-;8250:24;8268:5;8250:24;:::i;:::-;8245:3;8238:37;8173:108;;:::o;8287:179::-;8356:10;8377:46;8419:3;8411:6;8377:46;:::i;:::-;8455:4;8450:3;8446:14;8432:28;;8287:179;;;;:::o;8472:113::-;8542:4;8574;8569:3;8565:14;8557:22;;8472:113;;;:::o;8621:732::-;8740:3;8769:54;8817:5;8769:54;:::i;:::-;8839:86;8918:6;8913:3;8839:86;:::i;:::-;8832:93;;8949:56;8999:5;8949:56;:::i;:::-;9028:7;9059:1;9044:284;9069:6;9066:1;9063:13;9044:284;;;9145:6;9139:13;9172:63;9231:3;9216:13;9172:63;:::i;:::-;9165:70;;9258:60;9311:6;9258:60;:::i;:::-;9248:70;;9104:224;9091:1;9088;9084:9;9079:14;;9044:284;;;9048:14;9344:3;9337:10;;8745:608;;;8621:732;;;;:::o;9359:373::-;9502:4;9540:2;9529:9;9525:18;9517:26;;9589:9;9583:4;9579:20;9575:1;9564:9;9560:17;9553:47;9617:108;9720:4;9711:6;9617:108;:::i;:::-;9609:116;;9359:373;;;;:::o;9738:117::-;9847:1;9844;9837:12;9861:117;9970:1;9967;9960:12;9984:180;10032:77;10029:1;10022:88;10129:4;10126:1;10119:15;10153:4;10150:1;10143:15;10170:281;10253:27;10275:4;10253:27;:::i;:::-;10245:6;10241:40;10383:6;10371:10;10368:22;10347:18;10335:10;10332:34;10329:62;10326:88;;;10394:18;;:::i;:::-;10326:88;10434:10;10430:2;10423:22;10213:238;10170:281;;:::o;10457:129::-;10491:6;10518:20;;:::i;:::-;10508:30;;10547:33;10575:4;10567:6;10547:33;:::i;:::-;10457:129;;;:::o;10592:308::-;10654:4;10744:18;10736:6;10733:30;10730:56;;;10766:18;;:::i;:::-;10730:56;10804:29;10826:6;10804:29;:::i;:::-;10796:37;;10888:4;10882;10878:15;10870:23;;10592:308;;;:::o;10906:146::-;11003:6;10998:3;10993;10980:30;11044:1;11035:6;11030:3;11026:16;11019:27;10906:146;;;:::o;11058:425::-;11136:5;11161:66;11177:49;11219:6;11177:49;:::i;:::-;11161:66;:::i;:::-;11152:75;;11250:6;11243:5;11236:21;11288:4;11281:5;11277:16;11326:3;11317:6;11312:3;11308:16;11305:25;11302:112;;;11333:79;;:::i;:::-;11302:112;11423:54;11470:6;11465:3;11460;11423:54;:::i;:::-;11142:341;11058:425;;;;;:::o;11503:340::-;11559:5;11608:3;11601:4;11593:6;11589:17;11585:27;11575:122;;11616:79;;:::i;:::-;11575:122;11733:6;11720:20;11758:79;11833:3;11825:6;11818:4;11810:6;11806:17;11758:79;:::i;:::-;11749:88;;11565:278;11503:340;;;;:::o;11849:509::-;11918:6;11967:2;11955:9;11946:7;11942:23;11938:32;11935:119;;;11973:79;;:::i;:::-;11935:119;12121:1;12110:9;12106:17;12093:31;12151:18;12143:6;12140:30;12137:117;;;12173:79;;:::i;:::-;12137:117;12278:63;12333:7;12324:6;12313:9;12309:22;12278:63;:::i;:::-;12268:73;;12064:287;11849:509;;;;:::o;12364:116::-;12434:21;12449:5;12434:21;:::i;:::-;12427:5;12424:32;12414:60;;12470:1;12467;12460:12;12414:60;12364:116;:::o;12486:133::-;12529:5;12567:6;12554:20;12545:29;;12583:30;12607:5;12583:30;:::i;:::-;12486:133;;;;:::o;12625:468::-;12690:6;12698;12747:2;12735:9;12726:7;12722:23;12718:32;12715:119;;;12753:79;;:::i;:::-;12715:119;12873:1;12898:53;12943:7;12934:6;12923:9;12919:22;12898:53;:::i;:::-;12888:63;;12844:117;13000:2;13026:50;13068:7;13059:6;13048:9;13044:22;13026:50;:::i;:::-;13016:60;;12971:115;12625:468;;;;;:::o;13099:117::-;13208:1;13205;13198:12;13222:117;13331:1;13328;13321:12;13362:568;13435:8;13445:6;13495:3;13488:4;13480:6;13476:17;13472:27;13462:122;;13503:79;;:::i;:::-;13462:122;13616:6;13603:20;13593:30;;13646:18;13638:6;13635:30;13632:117;;;13668:79;;:::i;:::-;13632:117;13782:4;13774:6;13770:17;13758:29;;13836:3;13828:4;13820:6;13816:17;13806:8;13802:32;13799:41;13796:128;;;13843:79;;:::i;:::-;13796:128;13362:568;;;;;:::o;13936:559::-;14022:6;14030;14079:2;14067:9;14058:7;14054:23;14050:32;14047:119;;;14085:79;;:::i;:::-;14047:119;14233:1;14222:9;14218:17;14205:31;14263:18;14255:6;14252:30;14249:117;;;14285:79;;:::i;:::-;14249:117;14398:80;14470:7;14461:6;14450:9;14446:22;14398:80;:::i;:::-;14380:98;;;;14176:312;13936:559;;;;;:::o;14501:307::-;14562:4;14652:18;14644:6;14641:30;14638:56;;;14674:18;;:::i;:::-;14638:56;14712:29;14734:6;14712:29;:::i;:::-;14704:37;;14796:4;14790;14786:15;14778:23;;14501:307;;;:::o;14814:423::-;14891:5;14916:65;14932:48;14973:6;14932:48;:::i;:::-;14916:65;:::i;:::-;14907:74;;15004:6;14997:5;14990:21;15042:4;15035:5;15031:16;15080:3;15071:6;15066:3;15062:16;15059:25;15056:112;;;15087:79;;:::i;:::-;15056:112;15177:54;15224:6;15219:3;15214;15177:54;:::i;:::-;14897:340;14814:423;;;;;:::o;15256:338::-;15311:5;15360:3;15353:4;15345:6;15341:17;15337:27;15327:122;;15368:79;;:::i;:::-;15327:122;15485:6;15472:20;15510:78;15584:3;15576:6;15569:4;15561:6;15557:17;15510:78;:::i;:::-;15501:87;;15317:277;15256:338;;;;:::o;15600:943::-;15695:6;15703;15711;15719;15768:3;15756:9;15747:7;15743:23;15739:33;15736:120;;;15775:79;;:::i;:::-;15736:120;15895:1;15920:53;15965:7;15956:6;15945:9;15941:22;15920:53;:::i;:::-;15910:63;;15866:117;16022:2;16048:53;16093:7;16084:6;16073:9;16069:22;16048:53;:::i;:::-;16038:63;;15993:118;16150:2;16176:53;16221:7;16212:6;16201:9;16197:22;16176:53;:::i;:::-;16166:63;;16121:118;16306:2;16295:9;16291:18;16278:32;16337:18;16329:6;16326:30;16323:117;;;16359:79;;:::i;:::-;16323:117;16464:62;16518:7;16509:6;16498:9;16494:22;16464:62;:::i;:::-;16454:72;;16249:287;15600:943;;;;;;;:::o;16549:474::-;16617:6;16625;16674:2;16662:9;16653:7;16649:23;16645:32;16642:119;;;16680:79;;:::i;:::-;16642:119;16800:1;16825:53;16870:7;16861:6;16850:9;16846:22;16825:53;:::i;:::-;16815:63;;16771:117;16927:2;16953:53;16998:7;16989:6;16978:9;16974:22;16953:53;:::i;:::-;16943:63;;16898:118;16549:474;;;;;:::o;17029:180::-;17077:77;17074:1;17067:88;17174:4;17171:1;17164:15;17198:4;17195:1;17188:15;17215:320;17259:6;17296:1;17290:4;17286:12;17276:22;;17343:1;17337:4;17333:12;17364:18;17354:81;;17420:4;17412:6;17408:17;17398:27;;17354:81;17482:2;17474:6;17471:14;17451:18;17448:38;17445:84;;17501:18;;:::i;:::-;17445:84;17266:269;17215:320;;;:::o;17541:180::-;17589:77;17586:1;17579:88;17686:4;17683:1;17676:15;17710:4;17707:1;17700:15;17727:194;17767:4;17787:20;17805:1;17787:20;:::i;:::-;17782:25;;17821:20;17839:1;17821:20;:::i;:::-;17816:25;;17865:1;17862;17858:9;17850:17;;17889:1;17883:4;17880:11;17877:37;;;17894:18;;:::i;:::-;17877:37;17727:194;;;;:::o;17927:442::-;18076:4;18114:2;18103:9;18099:18;18091:26;;18127:71;18195:1;18184:9;18180:17;18171:6;18127:71;:::i;:::-;18208:72;18276:2;18265:9;18261:18;18252:6;18208:72;:::i;:::-;18290;18358:2;18347:9;18343:18;18334:6;18290:72;:::i;:::-;17927:442;;;;;;:::o;18375:180::-;18423:77;18420:1;18413:88;18520:4;18517:1;18510:15;18544:4;18541:1;18534:15;18561:233;18600:3;18623:24;18641:5;18623:24;:::i;:::-;18614:33;;18669:66;18662:5;18659:77;18656:103;;18739:18;;:::i;:::-;18656:103;18786:1;18779:5;18775:13;18768:20;;18561:233;;;:::o;18800:191::-;18840:3;18859:20;18877:1;18859:20;:::i;:::-;18854:25;;18893:20;18911:1;18893:20;:::i;:::-;18888:25;;18936:1;18933;18929:9;18922:16;;18957:3;18954:1;18951:10;18948:36;;;18964:18;;:::i;:::-;18948:36;18800:191;;;;:::o;18997:332::-;19118:4;19156:2;19145:9;19141:18;19133:26;;19169:71;19237:1;19226:9;19222:17;19213:6;19169:71;:::i;:::-;19250:72;19318:2;19307:9;19303:18;19294:6;19250:72;:::i;:::-;18997:332;;;;;:::o;19335:141::-;19384:4;19407:3;19399:11;;19430:3;19427:1;19420:14;19464:4;19461:1;19451:18;19443:26;;19335:141;;;:::o;19482:93::-;19519:6;19566:2;19561;19554:5;19550:14;19546:23;19536:33;;19482:93;;;:::o;19581:107::-;19625:8;19675:5;19669:4;19665:16;19644:37;;19581:107;;;;:::o;19694:393::-;19763:6;19813:1;19801:10;19797:18;19836:97;19866:66;19855:9;19836:97;:::i;:::-;19954:39;19984:8;19973:9;19954:39;:::i;:::-;19942:51;;20026:4;20022:9;20015:5;20011:21;20002:30;;20075:4;20065:8;20061:19;20054:5;20051:30;20041:40;;19770:317;;19694:393;;;;;:::o;20093:60::-;20121:3;20142:5;20135:12;;20093:60;;;:::o;20159:142::-;20209:9;20242:53;20260:34;20269:24;20287:5;20269:24;:::i;:::-;20260:34;:::i;:::-;20242:53;:::i;:::-;20229:66;;20159:142;;;:::o;20307:75::-;20350:3;20371:5;20364:12;;20307:75;;;:::o;20388:269::-;20498:39;20529:7;20498:39;:::i;:::-;20559:91;20608:41;20632:16;20608:41;:::i;:::-;20600:6;20593:4;20587:11;20559:91;:::i;:::-;20553:4;20546:105;20464:193;20388:269;;;:::o;20663:73::-;20708:3;20663:73;:::o;20742:189::-;20819:32;;:::i;:::-;20860:65;20918:6;20910;20904:4;20860:65;:::i;:::-;20795:136;20742:189;;:::o;20937:186::-;20997:120;21014:3;21007:5;21004:14;20997:120;;;21068:39;21105:1;21098:5;21068:39;:::i;:::-;21041:1;21034:5;21030:13;21021:22;;20997:120;;;20937:186;;:::o;21129:543::-;21230:2;21225:3;21222:11;21219:446;;;21264:38;21296:5;21264:38;:::i;:::-;21348:29;21366:10;21348:29;:::i;:::-;21338:8;21334:44;21531:2;21519:10;21516:18;21513:49;;;21552:8;21537:23;;21513:49;21575:80;21631:22;21649:3;21631:22;:::i;:::-;21621:8;21617:37;21604:11;21575:80;:::i;:::-;21234:431;;21219:446;21129:543;;;:::o;21678:117::-;21732:8;21782:5;21776:4;21772:16;21751:37;;21678:117;;;;:::o;21801:169::-;21845:6;21878:51;21926:1;21922:6;21914:5;21911:1;21907:13;21878:51;:::i;:::-;21874:56;21959:4;21953;21949:15;21939:25;;21852:118;21801:169;;;;:::o;21975:295::-;22051:4;22197:29;22222:3;22216:4;22197:29;:::i;:::-;22189:37;;22259:3;22256:1;22252:11;22246:4;22243:21;22235:29;;21975:295;;;;:::o;22275:1395::-;22392:37;22425:3;22392:37;:::i;:::-;22494:18;22486:6;22483:30;22480:56;;;22516:18;;:::i;:::-;22480:56;22560:38;22592:4;22586:11;22560:38;:::i;:::-;22645:67;22705:6;22697;22691:4;22645:67;:::i;:::-;22739:1;22763:4;22750:17;;22795:2;22787:6;22784:14;22812:1;22807:618;;;;23469:1;23486:6;23483:77;;;23535:9;23530:3;23526:19;23520:26;23511:35;;23483:77;23586:67;23646:6;23639:5;23586:67;:::i;:::-;23580:4;23573:81;23442:222;22777:887;;22807:618;22859:4;22855:9;22847:6;22843:22;22893:37;22925:4;22893:37;:::i;:::-;22952:1;22966:208;22980:7;22977:1;22974:14;22966:208;;;23059:9;23054:3;23050:19;23044:26;23036:6;23029:42;23110:1;23102:6;23098:14;23088:24;;23157:2;23146:9;23142:18;23129:31;;23003:4;23000:1;22996:12;22991:17;;22966:208;;;23202:6;23193:7;23190:19;23187:179;;;23260:9;23255:3;23251:19;23245:26;23303:48;23345:4;23337:6;23333:17;23322:9;23303:48;:::i;:::-;23295:6;23288:64;23210:156;23187:179;23412:1;23408;23400:6;23396:14;23392:22;23386:4;23379:36;22814:611;;;22777:887;;22367:1303;;;22275:1395;;:::o;23676:94::-;23709:8;23757:5;23753:2;23749:14;23728:35;;23676:94;;;:::o;23776:::-;23815:7;23844:20;23858:5;23844:20;:::i;:::-;23833:31;;23776:94;;;:::o;23876:100::-;23915:7;23944:26;23964:5;23944:26;:::i;:::-;23933:37;;23876:100;;;:::o;23982:157::-;24087:45;24107:24;24125:5;24107:24;:::i;:::-;24087:45;:::i;:::-;24082:3;24075:58;23982:157;;:::o;24145:256::-;24257:3;24272:75;24343:3;24334:6;24272:75;:::i;:::-;24372:2;24367:3;24363:12;24356:19;;24392:3;24385:10;;24145:256;;;;:::o;24407:225::-;24547:34;24543:1;24535:6;24531:14;24524:58;24616:8;24611:2;24603:6;24599:15;24592:33;24407:225;:::o;24638:366::-;24780:3;24801:67;24865:2;24860:3;24801:67;:::i;:::-;24794:74;;24877:93;24966:3;24877:93;:::i;:::-;24995:2;24990:3;24986:12;24979:19;;24638:366;;;:::o;25010:419::-;25176:4;25214:2;25203:9;25199:18;25191:26;;25263:9;25257:4;25253:20;25249:1;25238:9;25234:17;25227:47;25291:131;25417:4;25291:131;:::i;:::-;25283:139;;25010:419;;;:::o;25435:165::-;25575:17;25571:1;25563:6;25559:14;25552:41;25435:165;:::o;25606:366::-;25748:3;25769:67;25833:2;25828:3;25769:67;:::i;:::-;25762:74;;25845:93;25934:3;25845:93;:::i;:::-;25963:2;25958:3;25954:12;25947:19;;25606:366;;;:::o;25978:419::-;26144:4;26182:2;26171:9;26167:18;26159:26;;26231:9;26225:4;26221:20;26217:1;26206:9;26202:17;26195:47;26259:131;26385:4;26259:131;:::i;:::-;26251:139;;25978:419;;;:::o;26403:148::-;26505:11;26542:3;26527:18;;26403:148;;;;:::o;26557:390::-;26663:3;26691:39;26724:5;26691:39;:::i;:::-;26746:89;26828:6;26823:3;26746:89;:::i;:::-;26739:96;;26844:65;26902:6;26897:3;26890:4;26883:5;26879:16;26844:65;:::i;:::-;26934:6;26929:3;26925:16;26918:23;;26667:280;26557:390;;;;:::o;26953:435::-;27133:3;27155:95;27246:3;27237:6;27155:95;:::i;:::-;27148:102;;27267:95;27358:3;27349:6;27267:95;:::i;:::-;27260:102;;27379:3;27372:10;;26953:435;;;;;:::o;27394:98::-;27445:6;27479:5;27473:12;27463:22;;27394:98;;;:::o;27498:168::-;27581:11;27615:6;27610:3;27603:19;27655:4;27650:3;27646:14;27631:29;;27498:168;;;;:::o;27672:373::-;27758:3;27786:38;27818:5;27786:38;:::i;:::-;27840:70;27903:6;27898:3;27840:70;:::i;:::-;27833:77;;27919:65;27977:6;27972:3;27965:4;27958:5;27954:16;27919:65;:::i;:::-;28009:29;28031:6;28009:29;:::i;:::-;28004:3;28000:39;27993:46;;27762:283;27672:373;;;;:::o;28051:640::-;28246:4;28284:3;28273:9;28269:19;28261:27;;28298:71;28366:1;28355:9;28351:17;28342:6;28298:71;:::i;:::-;28379:72;28447:2;28436:9;28432:18;28423:6;28379:72;:::i;:::-;28461;28529:2;28518:9;28514:18;28505:6;28461:72;:::i;:::-;28580:9;28574:4;28570:20;28565:2;28554:9;28550:18;28543:48;28608:76;28679:4;28670:6;28608:76;:::i;:::-;28600:84;;28051:640;;;;;;;:::o;28697:141::-;28753:5;28784:6;28778:13;28769:22;;28800:32;28826:5;28800:32;:::i;:::-;28697:141;;;;:::o;28844:349::-;28913:6;28962:2;28950:9;28941:7;28937:23;28933:32;28930:119;;;28968:79;;:::i;:::-;28930:119;29088:1;29113:63;29168:7;29159:6;29148:9;29144:22;29113:63;:::i;:::-;29103:73;;29059:127;28844:349;;;;:::o;29199:180::-;29247:77;29244:1;29237:88;29344:4;29341:1;29334:15;29368:4;29365:1;29358:15;29385:332;29506:4;29544:2;29533:9;29529:18;29521:26;;29557:71;29625:1;29614:9;29610:17;29601:6;29557:71;:::i;:::-;29638:72;29706:2;29695:9;29691:18;29682:6;29638:72;:::i;:::-;29385:332;;;;;:::o;29723:::-;29844:4;29882:2;29871:9;29867:18;29859:26;;29895:71;29963:1;29952:9;29948:17;29939:6;29895:71;:::i;:::-;29976:72;30044:2;30033:9;30029:18;30020:6;29976:72;:::i;:::-;29723:332;;;;;:::o

Swarm Source

ipfs://4bd6d1e7276a9885495eba8f9c1c0ade7888007cbd4f4da308d40cf338e1184e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.