ETH Price: $2,036.49 (+0.47%)

Token

Masa Green (MG-2FA)
 

Overview

Max Total Supply

1,360 MG-2FA

Holders

0

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
SoulboundGreen

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

import "./libraries/Errors.sol";
import "./tokens/MasaSBTSelfSovereign.sol";

/// @title Soulbound Two-factor authentication (Green - 2FA)
/// @author Masa Finance
/// @notice Soulbound token that represents a Two-factor authentication (2FA)
/// @dev Soulbound Green, that inherits from the SBT contract.
contract SoulboundGreen is MasaSBTSelfSovereign, ReentrancyGuard {
    /* ========== STATE VARIABLES =========================================== */

    /* ========== INITIALIZE ================================================ */

    /// @notice Creates a new soulbound Two-factor authentication (Green - 2FA)
    /// @dev Creates a new soulbound Green, inheriting from the SBT contract.
    /// @param admin Administrator of the smart contract
    /// @param baseTokenURI Base URI of the token
    /// @param soulboundIdentity Address of the SoulboundIdentity contract
    /// @param paymentParams Payment gateway params
    constructor(
        address admin,
        string memory baseTokenURI,
        ISoulboundIdentity soulboundIdentity,
        PaymentParams memory paymentParams
    )
        MasaSBTSelfSovereign(
            admin,
            "Masa Green",
            "MG-2FA",
            baseTokenURI,
            soulboundIdentity,
            paymentParams
        )
        EIP712("SoulboundGreen", "1.0.0")
    {}

    /* ========== RESTRICTED FUNCTIONS ====================================== */

    /* ========== MUTATIVE FUNCTIONS ======================================== */

    /// @notice Mints a new SBT
    /// @dev The caller must have the MINTER role
    /// @param paymentMethod Address of token that user want to pay
    /// @param identityId TokenId of the identity to mint the NFT to
    /// @param authorityAddress Address of the authority that signed the message
    /// @param signatureDate Date of the signature
    /// @param signature Signature of the message
    /// @return The NFT ID of the newly minted SBT
    function mint(
        address paymentMethod,
        uint256 identityId,
        address authorityAddress,
        uint256 signatureDate,
        bytes calldata signature
    ) public payable virtual nonReentrant returns (uint256) {
        address to = soulboundIdentity.ownerOf(identityId);
        if (to != _msgSender()) revert CallerNotOwner(_msgSender());

        _verify(
            _hash(identityId, authorityAddress, signatureDate),
            signature,
            authorityAddress
        );

        _pay(paymentMethod, getMintPrice(paymentMethod));

        uint256 tokenId = _mintWithCounter(to);

        emit SoulboundGreenMintedToIdentity(
            tokenId,
            identityId,
            authorityAddress,
            signatureDate,
            paymentMethod,
            mintPrice
        );

        return tokenId;
    }

    /// @notice Mints a new SBT
    /// @dev The caller must have the MINTER role
    /// @param paymentMethod Address of token that user want to pay
    /// @param to The address to mint the SBT to
    /// @param authorityAddress Address of the authority that signed the message
    /// @param signatureDate Date of the signature
    /// @param signature Signature of the message
    /// @return The SBT ID of the newly minted SBT
    function mint(
        address paymentMethod,
        address to,
        address authorityAddress,
        uint256 signatureDate,
        bytes calldata signature
    ) external payable virtual returns (uint256) {
        if (to != _msgSender()) revert CallerNotOwner(_msgSender());

        _verify(
            _hash(to, authorityAddress, signatureDate),
            signature,
            authorityAddress
        );

        _pay(paymentMethod, getMintPrice(paymentMethod));

        uint256 tokenId = _mintWithCounter(to);

        emit SoulboundGreenMintedToAddress(
            tokenId,
            to,
            authorityAddress,
            signatureDate,
            paymentMethod,
            mintPrice
        );

        return tokenId;
    }

    /* ========== VIEWS ===================================================== */

    /* ========== PRIVATE FUNCTIONS ========================================= */

    function _hash(
        uint256 identityId,
        address authorityAddress,
        uint256 signatureDate
    ) internal view returns (bytes32) {
        return
            _hashTypedDataV4(
                keccak256(
                    abi.encode(
                        keccak256(
                            "MintGreen(uint256 identityId,address authorityAddress,uint256 signatureDate)"
                        ),
                        identityId,
                        authorityAddress,
                        signatureDate
                    )
                )
            );
    }

    function _hash(
        address to,
        address authorityAddress,
        uint256 signatureDate
    ) internal view returns (bytes32) {
        return
            _hashTypedDataV4(
                keccak256(
                    abi.encode(
                        keccak256(
                            "MintGreen(address to,address authorityAddress,uint256 signatureDate)"
                        ),
                        to,
                        authorityAddress,
                        signatureDate
                    )
                )
            );
    }

    /* ========== MODIFIERS ================================================= */

    /* ========== EVENTS ==================================================== */

    event SoulboundGreenMintedToIdentity(
        uint256 tokenId,
        uint256 identityId,
        address authorityAddress,
        uint256 signatureDate,
        address paymentMethod,
        uint256 mintPrice
    );

    event SoulboundGreenMintedToAddress(
        uint256 tokenId,
        address to,
        address authorityAddress,
        uint256 signatureDate,
        address paymentMethod,
        uint256 mintPrice
    );
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) 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(errorMessage);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 32 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

// EIP-712 is Final as of 2022-08-11. This file is deprecated.

import "./EIP712.sol";

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @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 up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 10, 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 + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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 addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

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

    /**
     * @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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        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);
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

import "../libraries/Errors.sol";
import "../interfaces/dex/IUniswapRouter.sol";

/// @title Pay using a Decentralized automated market maker (AMM) when needed
/// @author Masa Finance
/// @notice Smart contract to call a Dex AMM smart contract to pay to a reserve wallet recipient
/// @dev This smart contract will call the Uniswap Router interface, based on
/// https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router01.sol
abstract contract PaymentGateway is AccessControl {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    struct PaymentParams {
        address swapRouter; // Swap router address
        address wrappedNativeToken; // Wrapped native token address
        address stableCoin; // Stable coin to pay the fee in (USDC)
        address masaToken; // Utility token to pay the fee in (MASA)
        address reserveWallet; // Wallet that will receive the fee
    }

    /* ========== STATE VARIABLES =========================================== */

    address public swapRouter;
    address public wrappedNativeToken;

    address public stableCoin; // USDC. It also needs to be enabled as payment method, if we want to pay in USDC
    address public masaToken; // MASA. It also needs to be enabled as payment method, if we want to pay in MASA

    // enabled payment methods: ETH and ERC20 tokens
    mapping(address => bool) public enabledPaymentMethod;
    address[] public enabledPaymentMethods;

    address public reserveWallet;

    /* ========== INITIALIZE ================================================ */

    /// @notice Creates a new Dex AMM
    /// @dev Creates a new Decentralized automated market maker (AMM) smart contract,
    // that will call the Uniswap Router interface
    /// @param admin Administrator of the smart contract
    /// @param paymentParams Payment params
    constructor(address admin, PaymentParams memory paymentParams) {
        if (paymentParams.swapRouter == address(0)) revert ZeroAddress();
        if (paymentParams.wrappedNativeToken == address(0))
            revert ZeroAddress();
        if (paymentParams.stableCoin == address(0)) revert ZeroAddress();
        if (paymentParams.reserveWallet == address(0)) revert ZeroAddress();

        _grantRole(DEFAULT_ADMIN_ROLE, admin);

        swapRouter = paymentParams.swapRouter;
        wrappedNativeToken = paymentParams.wrappedNativeToken;
        stableCoin = paymentParams.stableCoin;
        masaToken = paymentParams.masaToken;
        reserveWallet = paymentParams.reserveWallet;
    }

    /* ========== RESTRICTED FUNCTIONS ====================================== */

    /// @notice Sets the swap router address
    /// @dev The caller must have the admin role to call this function
    /// @param _swapRouter New swap router address
    function setSwapRouter(
        address _swapRouter
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_swapRouter == address(0)) revert ZeroAddress();
        if (swapRouter == _swapRouter) revert SameValue();
        swapRouter = _swapRouter;
    }

    /// @notice Sets the wrapped native token address
    /// @dev The caller must have the admin role to call this function
    /// @param _wrappedNativeToken New wrapped native token address
    function setWrappedNativeToken(
        address _wrappedNativeToken
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_wrappedNativeToken == address(0)) revert ZeroAddress();
        if (wrappedNativeToken == _wrappedNativeToken) revert SameValue();
        wrappedNativeToken = _wrappedNativeToken;
    }

    /// @notice Sets the stable coin to pay the fee in (USDC)
    /// @dev The caller must have the admin role to call this function
    /// @param _stableCoin New stable coin to pay the fee in
    function setStableCoin(
        address _stableCoin
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_stableCoin == address(0)) revert ZeroAddress();
        if (stableCoin == _stableCoin) revert SameValue();
        stableCoin = _stableCoin;
    }

    /// @notice Sets the utility token to pay the fee in (MASA)
    /// @dev The caller must have the admin role to call this function
    /// It can be set to address(0) to disable paying in MASA
    /// @param _masaToken New utility token to pay the fee in
    function setMasaToken(
        address _masaToken
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (masaToken == _masaToken) revert SameValue();
        masaToken = _masaToken;
    }

    /// @notice Adds a new token as a valid payment method
    /// @dev The caller must have the admin role to call this function
    /// @param _paymentMethod New token to add
    function enablePaymentMethod(
        address _paymentMethod
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (enabledPaymentMethod[_paymentMethod]) revert AlreadyAdded();

        enabledPaymentMethod[_paymentMethod] = true;
        enabledPaymentMethods.push(_paymentMethod);
    }

    /// @notice Removes a token as a valid payment method
    /// @dev The caller must have the admin role to call this function
    /// @param _paymentMethod Token to remove
    function disablePaymentMethod(
        address _paymentMethod
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (!enabledPaymentMethod[_paymentMethod])
            revert NonExistingErc20Token(_paymentMethod);

        enabledPaymentMethod[_paymentMethod] = false;
        for (uint256 i = 0; i < enabledPaymentMethods.length; i++) {
            if (enabledPaymentMethods[i] == _paymentMethod) {
                enabledPaymentMethods[i] = enabledPaymentMethods[
                    enabledPaymentMethods.length - 1
                ];
                enabledPaymentMethods.pop();
                break;
            }
        }
    }

    /// @notice Set the reserve wallet
    /// @dev The caller must have the admin role to call this function
    /// @param _reserveWallet New reserve wallet
    function setReserveWallet(
        address _reserveWallet
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_reserveWallet == address(0)) revert ZeroAddress();
        if (_reserveWallet == reserveWallet) revert SameValue();
        reserveWallet = _reserveWallet;
    }

    /* ========== MUTATIVE FUNCTIONS ======================================== */

    /* ========== VIEWS ===================================================== */

    /// @notice Returns all available payment methods
    /// @dev Returns the address of all available payment methods
    /// @return Array of all enabled payment methods
    function getEnabledPaymentMethods()
        external
        view
        returns (address[] memory)
    {
        return enabledPaymentMethods;
    }

    /* ========== PRIVATE FUNCTIONS ========================================= */

    /// @notice Converts an amount from a stable coin to a payment method amount
    /// @dev This method will perform the swap between the stable coin and the
    /// payment method, and return the amount of the payment method,
    /// performing the swap if necessary
    /// @param paymentMethod Address of token that user want to pay
    /// @param amount Price to be converted in the specified payment method
    function _convertFromStableCoin(
        address paymentMethod,
        uint256 amount
    ) internal view returns (uint256) {
        if (!enabledPaymentMethod[paymentMethod] || paymentMethod == stableCoin)
            revert InvalidToken(paymentMethod);

        if (paymentMethod == address(0)) {
            return _estimateSwapAmount(wrappedNativeToken, stableCoin, amount);
        } else {
            return _estimateSwapAmount(paymentMethod, stableCoin, amount);
        }
    }

    /// @notice Performs the payment in any payment method
    /// @dev This method will transfer the funds to the reserve wallet, performing
    /// the swap if necessary
    /// @param paymentMethod Address of token that user want to pay
    /// @param amount Price to be paid in the specified payment method
    function _pay(address paymentMethod, uint256 amount) internal {
        if (amount == 0) return;
        if (!enabledPaymentMethod[paymentMethod])
            revert InvalidPaymentMethod(paymentMethod);
        if (paymentMethod == address(0)) {
            // ETH
            if (msg.value < amount) revert InsufficientEthAmount(amount);
            (bool success, ) = payable(reserveWallet).call{value: amount}("");
            if (!success) revert TransferFailed();
            if (msg.value > amount) {
                // return diff
                uint256 refund = msg.value.sub(amount);
                (success, ) = payable(msg.sender).call{value: refund}("");
                if (!success) revert RefundFailed();
            }
        } else {
            // ERC20 token, including MASA and USDC
            IERC20(paymentMethod).safeTransferFrom(
                msg.sender,
                reserveWallet,
                amount
            );
        }
    }

    function _estimateSwapAmount(
        address _fromToken,
        address _toToken,
        uint256 _amountOut
    ) private view returns (uint256) {
        uint256[] memory amounts;
        address[] memory path;
        path = _getPathFromTokenToToken(_fromToken, _toToken);
        amounts = IUniswapRouter(swapRouter).getAmountsIn(_amountOut, path);
        return amounts[0];
    }

    function _getPathFromTokenToToken(
        address fromToken,
        address toToken
    ) private view returns (address[] memory) {
        if (fromToken == wrappedNativeToken || toToken == wrappedNativeToken) {
            address[] memory path = new address[](2);
            path[0] = fromToken == wrappedNativeToken
                ? wrappedNativeToken
                : fromToken;
            path[1] = toToken == wrappedNativeToken
                ? wrappedNativeToken
                : toToken;
            return path;
        } else {
            address[] memory path = new address[](3);
            path[0] = fromToken;
            path[1] = wrappedNativeToken;
            path[2] = toToken;
            return path;
        }
    }

    /* ========== MODIFIERS ================================================= */

    /* ========== EVENTS ==================================================== */
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

/// @title Uniswap Router interface
/// @author Masa Finance
/// @notice Interface of the Uniswap Router contract
/// @dev This interface is used to interact with the Uniswap Router contract,
/// and gets the most important functions of the contract. It's based on
/// https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router01.sol
interface IUniswapRouter {
    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "../tokens/SBT/ISBT.sol";

interface ILinkableSBT is ISBT {
    function addLinkPrice() external view returns (uint256);

    function addLinkPriceMASA() external view returns (uint256);

    function queryLinkPrice() external view returns (uint256);

    function queryLinkPriceMASA() external view returns (uint256);
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "../tokens/SBT/ISBT.sol";

import "./ISoulName.sol";

interface ISoulboundIdentity is ISBT {
    function mint(address to) external returns (uint256);

    function mintIdentityWithName(
        address to,
        string memory name,
        uint256 yearsPeriod,
        string memory _tokenURI
    ) external returns (uint256);

    function getSoulName() external view returns (ISoulName);

    function tokenOfOwner(address owner) external view returns (uint256);
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

interface ISoulName {
    function mint(
        address to,
        string memory name,
        uint256 yearsPeriod,
        string memory _tokenURI
    ) external returns (uint256);

    function getExtension() external view returns (string memory);

    function isAvailable(
        string memory name
    ) external view returns (bool available);

    function getTokenData(
        string memory name
    )
        external
        view
        returns (
            string memory sbtName,
            bool linked,
            uint256 identityId,
            uint256 tokenId,
            uint256 expirationDate,
            bool active
        );

    function getTokenId(string memory name) external view returns (uint256);

    function getSoulNames(
        address owner
    ) external view returns (string[] memory sbtNames);

    function getSoulNames(
        uint256 identityId
    ) external view returns (string[] memory sbtNames);
}

File 24 of 32 : Errors.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

error AddressDoesNotHaveIdentity(address to);
error AlreadyAdded();
error AuthorityNotExists(address authority);
error CallerNotOwner(address caller);
error CallerNotReader(address caller);
error CreditScoreAlreadyCreated(address to);
error IdentityAlreadyCreated(address to);
error IdentityOwnerIsReader(uint256 readerIdentityId);
error InsufficientEthAmount(uint256 amount);
error IdentityOwnerNotTokenOwner(uint256 tokenId, uint256 ownerIdentityId);
error InvalidPaymentMethod(address paymentMethod);
error InvalidSignature();
error InvalidSignatureDate(uint256 signatureDate);
error InvalidToken(address token);
error InvalidTokenURI(string tokenURI);
error LinkAlreadyExists(
    address token,
    uint256 tokenId,
    uint256 readerIdentityId,
    uint256 signatureDate
);
error LinkAlreadyRevoked();
error LinkDoesNotExist();
error NameAlreadyExists(string name);
error NameNotFound(string name);
error NameRegisteredByOtherAccount(string name, uint256 tokenId);
error NotAuthorized(address signer);
error NonExistingErc20Token(address erc20token);
error NotLinkedToAnIdentitySBT();
error RefundFailed();
error SameValue();
error SBTAlreadyLinked(address token);
error SoulNameContractNotSet();
error TokenNotFound(uint256 tokenId);
error TransferFailed();
error URIAlreadyExists(string tokenURI);
error ValidPeriodExpired(uint256 expirationDate);
error ZeroAddress();
error ZeroLengthName(string name);
error ZeroYearsPeriod(uint256 yearsPeriod);

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "../libraries/Errors.sol";
import "../interfaces/ILinkableSBT.sol";
import "./SBT/SBT.sol";
import "./SBT/extensions/SBTEnumerable.sol";
import "./SBT/extensions/SBTBurnable.sol";

/// @title MasaSBT
/// @author Masa Finance
/// @notice Soulbound token. Non-fungible token that is not transferable.
/// @dev Implementation of https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4105763 Soulbound token.
abstract contract MasaSBT is
    SBT,
    SBTEnumerable,
    AccessControl,
    SBTBurnable,
    ILinkableSBT
{
    /* ========== STATE VARIABLES =========================================== */

    using Strings for uint256;

    string private _baseTokenURI;

    uint256 public override addLinkPrice; // price in stable coin
    uint256 public override addLinkPriceMASA; // price in MASA
    uint256 public override queryLinkPrice; // price in stable coin
    uint256 public override queryLinkPriceMASA; // price in MASA

    /* ========== INITIALIZE ================================================ */

    /// @notice Creates a new soulbound token
    /// @dev Creates a new soulbound token
    /// @param admin Administrator of the smart contract
    /// @param name Name of the token
    /// @param symbol Symbol of the token
    /// @param baseTokenURI Base URI of the token
    constructor(
        address admin,
        string memory name,
        string memory symbol,
        string memory baseTokenURI
    ) SBT(name, symbol) {
        _grantRole(DEFAULT_ADMIN_ROLE, admin);

        _baseTokenURI = baseTokenURI;
    }

    /* ========== RESTRICTED FUNCTIONS ====================================== */

    /// @notice Sets the price for adding the link in SoulLinker in stable coin
    /// @dev The caller must have the admin role to call this function
    /// @param _addLinkPrice New price for adding the link in SoulLinker in stable coin
    function setAddLinkPrice(
        uint256 _addLinkPrice
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (addLinkPrice == _addLinkPrice) revert SameValue();
        addLinkPrice = _addLinkPrice;
    }

    /// @notice Sets the price for adding the link in SoulLinker in MASA
    /// @dev The caller must have the admin role to call this function
    /// @param _addLinkPriceMASA New price for adding the link in SoulLinker in MASA
    function setAddLinkPriceMASA(
        uint256 _addLinkPriceMASA
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (addLinkPriceMASA == _addLinkPriceMASA) revert SameValue();
        addLinkPriceMASA = _addLinkPriceMASA;
    }

    /// @notice Sets the price for reading data in SoulLinker in stable coin
    /// @dev The caller must have the admin role to call this function
    /// @param _queryLinkPrice New price for reading data in SoulLinker in stable coin
    function setQueryLinkPrice(
        uint256 _queryLinkPrice
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (queryLinkPrice == _queryLinkPrice) revert SameValue();
        queryLinkPrice = _queryLinkPrice;
    }

    /// @notice Sets the price for reading data in SoulLinker in MASA
    /// @dev The caller must have the admin role to call this function
    /// @param _queryLinkPriceMASA New price for reading data in SoulLinker in MASA
    function setQueryLinkPriceMASA(
        uint256 _queryLinkPriceMASA
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (queryLinkPriceMASA == _queryLinkPriceMASA) revert SameValue();
        queryLinkPriceMASA = _queryLinkPriceMASA;
    }

    /* ========== MUTATIVE FUNCTIONS ======================================== */

    /* ========== VIEWS ===================================================== */

    /// @notice Returns true if the token exists
    /// @dev Returns true if the token has been minted
    /// @param tokenId Token to check
    /// @return True if the token exists
    function exists(uint256 tokenId) external view returns (bool) {
        return _exists(tokenId);
    }

    /// @notice A distinct Uniform Resource Identifier (URI) for a given asset.
    /// @dev Throws if `_tokenId` is not a valid SBT. URIs are defined in RFC
    ///  3986. The URI may point to a JSON file that conforms to the "ERC721
    ///  Metadata JSON Schema".
    /// @param tokenId SBT to get the URI of
    /// @return URI of the SBT
    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    /// @notice Query if a contract implements an interface
    /// @dev Interface identification is specified in ERC-165.
    /// @param interfaceId The interface identifier, as specified in ERC-165
    /// @return `true` if the contract implements `interfaceId` and
    ///  `interfaceId` is not 0xffffffff, `false` otherwise
    function supportsInterface(
        bytes4 interfaceId
    )
        public
        view
        virtual
        override(SBT, SBTEnumerable, AccessControl, IERC165)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /* ========== PRIVATE FUNCTIONS ========================================= */

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(SBT, SBTEnumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /* ========== MODIFIERS ================================================= */

    /* ========== EVENTS ==================================================== */
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

import "../libraries/Errors.sol";
import "../interfaces/ISoulboundIdentity.sol";
import "../dex/PaymentGateway.sol";
import "./MasaSBT.sol";

/// @title MasaSBTSelfSovereign
/// @author Masa Finance
/// @notice Soulbound token. Non-fungible token that is not transferable.
/// Adds a link to a SoulboundIdentity SC to let minting using the identityId
/// Adds a payment gateway to let minting paying a fee
/// Adds a self-sovereign protocol to let minting using an authority signature
/// @dev Implementation of https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4105763 Soulbound token.
abstract contract MasaSBTSelfSovereign is PaymentGateway, MasaSBT, EIP712 {
    /* ========== STATE VARIABLES =========================================== */

    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    ISoulboundIdentity public soulboundIdentity;

    uint256 public mintPrice; // price in stable coin
    uint256 public mintPriceMASA; // price in MASA

    mapping(address => bool) public authorities;

    /* ========== INITIALIZE ================================================ */

    /// @notice Creates a new soulbound token
    /// @dev Creates a new soulbound token
    /// @param admin Administrator of the smart contract
    /// @param name Name of the token
    /// @param symbol Symbol of the token
    /// @param baseTokenURI Base URI of the token
    /// @param _soulboundIdentity Address of the SoulboundIdentity contract
    /// @param paymentParams Payment gateway params
    constructor(
        address admin,
        string memory name,
        string memory symbol,
        string memory baseTokenURI,
        ISoulboundIdentity _soulboundIdentity,
        PaymentParams memory paymentParams
    )
        PaymentGateway(admin, paymentParams)
        MasaSBT(admin, name, symbol, baseTokenURI)
    {
        soulboundIdentity = _soulboundIdentity;
    }

    /* ========== RESTRICTED FUNCTIONS ====================================== */

    /// @notice Sets the SoulboundIdentity contract address linked to this SBT
    /// @dev The caller must be the admin to call this function
    /// @param _soulboundIdentity Address of the SoulboundIdentity contract
    function setSoulboundIdentity(
        ISoulboundIdentity _soulboundIdentity
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (soulboundIdentity == _soulboundIdentity) revert SameValue();
        soulboundIdentity = _soulboundIdentity;
    }

    /// @notice Sets the price of minting in stable coin
    /// @dev The caller must have the admin role to call this function
    /// @param _mintPrice New price of minting in stable coin
    function setMintPrice(
        uint256 _mintPrice
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (mintPrice == _mintPrice) revert SameValue();
        mintPrice = _mintPrice;
    }

    /// @notice Sets the price of minting in MASA
    /// @dev The caller must have the admin role to call this function
    /// @param _mintPriceMASA New price of minting in MASA
    function setMintPriceMASA(
        uint256 _mintPriceMASA
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (mintPriceMASA == _mintPriceMASA) revert SameValue();
        mintPriceMASA = _mintPriceMASA;
    }

    /// @notice Adds a new authority to the list of authorities
    /// @dev The caller must have the admin role to call this function
    /// @param _authority New authority to add
    function addAuthority(
        address _authority
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_authority == address(0)) revert ZeroAddress();
        if (authorities[_authority]) revert AlreadyAdded();

        authorities[_authority] = true;
    }

    /// @notice Removes an authority from the list of authorities
    /// @dev The caller must have the admin role to call this function
    /// @param _authority Authority to remove
    function removeAuthority(
        address _authority
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_authority == address(0)) revert ZeroAddress();
        if (!authorities[_authority]) revert AuthorityNotExists(_authority);

        authorities[_authority] = false;
    }

    /* ========== MUTATIVE FUNCTIONS ======================================== */

    /* ========== VIEWS ===================================================== */

    /// @notice Returns the identityId owned by the given token
    /// @param tokenId Id of the token
    /// @return Id of the identity
    function getIdentityId(uint256 tokenId) external view returns (uint256) {
        if (soulboundIdentity == ISoulboundIdentity(address(0)))
            revert NotLinkedToAnIdentitySBT();

        address owner = super.ownerOf(tokenId);
        return soulboundIdentity.tokenOfOwner(owner);
    }

    /// @notice Returns the price for minting
    /// @dev Returns current pricing for minting
    /// @param paymentMethod Address of token that user want to pay
    /// @return Current price for minting in the given payment method
    function getMintPrice(address paymentMethod) public view returns (uint256) {
        if (mintPrice == 0 && mintPriceMASA == 0) {
            return 0;
        } else if (
            paymentMethod == masaToken &&
            enabledPaymentMethod[paymentMethod] &&
            mintPriceMASA > 0
        ) {
            // price in MASA without conversion rate
            return mintPriceMASA;
        } else if (
            paymentMethod == stableCoin && enabledPaymentMethod[paymentMethod]
        ) {
            // stable coin
            return mintPrice;
        } else if (enabledPaymentMethod[paymentMethod]) {
            // ETH and ERC 20 token
            return _convertFromStableCoin(paymentMethod, mintPrice);
        } else {
            revert InvalidPaymentMethod(paymentMethod);
        }
    }

    /// @notice Query if a contract implements an interface
    /// @dev Interface identification is specified in ERC-165.
    /// @param interfaceId The interface identifier, as specified in ERC-165
    /// @return `true` if the contract implements `interfaceId` and
    ///  `interfaceId` is not 0xffffffff, `false` otherwise
    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(AccessControl, MasaSBT) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /* ========== PRIVATE FUNCTIONS ========================================= */

    function _verify(
        bytes32 digest,
        bytes memory signature,
        address signer
    ) internal view {
        address _signer = ECDSA.recover(digest, signature);
        if (_signer != signer) revert InvalidSignature();
        if (!authorities[_signer]) revert NotAuthorized(_signer);
    }

    function _mintWithCounter(address to) internal virtual returns (uint256) {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _mint(to, tokenId);

        return tokenId;
    }

    /* ========== MODIFIERS ================================================= */

    /* ========== EVENTS ==================================================== */
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "../ISBT.sol";

/**
 * @title SBT Soulbound Token Standard, optional enumeration extension
 */
interface ISBTEnumerable is ISBT {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "../ISBT.sol";

/**
 * @title SBT Soulbound Token Standard, optional metadata extension
 */
interface ISBTMetadata is ISBT {
    /**
     * @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 29 of 32 : SBTBurnable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/utils/Context.sol";

import "../SBT.sol";

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "../SBT.sol";
import "./ISBTEnumerable.sol";

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

interface ISBT is IERC165 {
    /// @dev This emits when an SBT is newly minted.
    ///  This event emits when SBTs are created
    event Mint(address indexed _owner, uint256 indexed _tokenId);

    /// @dev This emits when an SBT is burned
    ///  This event emits when SBTs are destroyed
    event Burn(address indexed _owner, uint256 indexed _tokenId);

    /// @notice Count all SBTs assigned to an owner
    /// @dev SBTs assigned to the zero address are considered invalid, and this
    ///  function throws for queries about the zero address.
    /// @param _owner An address for whom to query the balance
    /// @return The number of SBTs owned by `_owner`, possibly zero
    function balanceOf(address _owner) external view returns (uint256);

    /// @notice Find the owner of an SBT
    /// @dev SBTs assigned to zero address are considered invalid, and queries
    ///  about them do throw.
    /// @param _tokenId The identifier for an SBT
    /// @return The address of the owner of the SBT
    function ownerOf(uint256 _tokenId) external view returns (address);
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./ISBT.sol";
import "./extensions/ISBTMetadata.sol";

/// @title SBT
/// @author Masa Finance
/// @notice Soulbound token is an NFT token that is not transferable.
contract SBT is Context, ERC165, ISBT, ISBTMetadata {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    /**
     * @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(ISBT).interfaceId ||
            interfaceId == type(ISBTMetadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {ISBT-balanceOf}.
     */
    function balanceOf(
        address owner
    ) public view virtual override returns (uint256) {
        require(owner != address(0), "SBT: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {ISBT-ownerOf}.
     */
    function ownerOf(
        uint256 tokenId
    ) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "SBT: invalid token ID");
        return owner;
    }

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

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isOwner(
        address spender,
        uint256 tokenId
    ) internal view virtual returns (bool) {
        address owner = SBT.ownerOf(tokenId);
        return (spender == owner);
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev 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 {Mint} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "SBT: mint to the zero address");
        require(!_exists(tokenId), "SBT: token already minted");

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

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

        emit Mint(to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     *
     * Requirements:
     * - `tokenId` must exist.
     *
     * Emits a {Burn} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = SBT.ownerOf(tokenId);

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

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

        emit Burn(owner, tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "SBT: invalid token ID");
    }

    /**
     * @dev Hook that is called before any token minting/burning
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address, address, uint256) internal virtual {}

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1,
    "details": {
      "yul": false
    }
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"contract ISoulboundIdentity","name":"soulboundIdentity","type":"address"},{"components":[{"internalType":"address","name":"swapRouter","type":"address"},{"internalType":"address","name":"wrappedNativeToken","type":"address"},{"internalType":"address","name":"stableCoin","type":"address"},{"internalType":"address","name":"masaToken","type":"address"},{"internalType":"address","name":"reserveWallet","type":"address"}],"internalType":"struct PaymentGateway.PaymentParams","name":"paymentParams","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyAdded","type":"error"},{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"AuthorityNotExists","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"CallerNotOwner","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"InsufficientEthAmount","type":"error"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"}],"name":"InvalidPaymentMethod","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"InvalidToken","type":"error"},{"inputs":[{"internalType":"address","name":"erc20token","type":"address"}],"name":"NonExistingErc20Token","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"NotAuthorized","type":"error"},{"inputs":[],"name":"NotLinkedToAnIdentitySBT","type":"error"},{"inputs":[],"name":"RefundFailed","type":"error"},{"inputs":[],"name":"SameValue","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"authorityAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"signatureDate","type":"uint256"},{"indexed":false,"internalType":"address","name":"paymentMethod","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"SoulboundGreenMintedToAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"identityId","type":"uint256"},{"indexed":false,"internalType":"address","name":"authorityAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"signatureDate","type":"uint256"},{"indexed":false,"internalType":"address","name":"paymentMethod","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"SoulboundGreenMintedToIdentity","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_authority","type":"address"}],"name":"addAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addLinkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLinkPriceMASA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorities","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentMethod","type":"address"}],"name":"disablePaymentMethod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentMethod","type":"address"}],"name":"enablePaymentMethod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"enabledPaymentMethod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"enabledPaymentMethods","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEnabledPaymentMethods","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getIdentityId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masaToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"},{"internalType":"uint256","name":"identityId","type":"uint256"},{"internalType":"address","name":"authorityAddress","type":"address"},{"internalType":"uint256","name":"signatureDate","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"paymentMethod","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"authorityAddress","type":"address"},{"internalType":"uint256","name":"signatureDate","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPriceMASA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"queryLinkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"queryLinkPriceMASA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_authority","type":"address"}],"name":"removeAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_addLinkPrice","type":"uint256"}],"name":"setAddLinkPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_addLinkPriceMASA","type":"uint256"}],"name":"setAddLinkPriceMASA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_masaToken","type":"address"}],"name":"setMasaToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPriceMASA","type":"uint256"}],"name":"setMintPriceMASA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_queryLinkPrice","type":"uint256"}],"name":"setQueryLinkPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_queryLinkPriceMASA","type":"uint256"}],"name":"setQueryLinkPriceMASA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_reserveWallet","type":"address"}],"name":"setReserveWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISoulboundIdentity","name":"_soulboundIdentity","type":"address"}],"name":"setSoulboundIdentity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stableCoin","type":"address"}],"name":"setStableCoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_swapRouter","type":"address"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wrappedNativeToken","type":"address"}],"name":"setWrappedNativeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soulboundIdentity","outputs":[{"internalType":"contract ISoulboundIdentity","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stableCoin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wrappedNativeToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6101406040523480156200001257600080fd5b50604051620042a5380380620042a58339810160408190526200003591620005ab565b836040518060400160405280600a81526020016926b0b9b09023b932b2b760b11b815250604051806040016040528060068152602001654d472d32464160d01b8152508585856040518060400160405280600e81526020016d29b7bab63137bab73223b932b2b760911b815250604051806040016040528060058152602001640312e302e360dc1b815250878787878b8784848160009080519060200190620000e0929190620003de565b508051620000f6906001906020840190620003de565b505081516001600160a01b031615159050620001255760405163d92e233d60e01b815260040160405180910390fd5b60208101516001600160a01b0316620001515760405163d92e233d60e01b815260040160405180910390fd5b60408101516001600160a01b03166200017d5760405163d92e233d60e01b815260040160405180910390fd5b60808101516001600160a01b0316620001a95760405163d92e233d60e01b815260040160405180910390fd5b620001b6600083620002ea565b8051600980546001600160a01b03199081166001600160a01b03938416179091556020830151600a805483169184169190911790556040830151600b805483169184169190911790556060830151600c80548316918416919091179055608090920151600f805490931691161790555062000233600085620002ea565b805162000248906010906020840190620003de565b5050845160208087019190912085519186019190912060e08290526101008190524660a05290935091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f9050620002a281848462000375565b6080523060601b60c052610120525050601680546001600160a01b0319166001600160a01b03959095169490941790935550506001601a555062000803975050505050505050565b620002f68282620003b1565b620003715760008281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003303390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60008383834630604051602001620003929594939291906200064e565b6040516020818303038152906040528051906020012090509392505050565b60008281526008602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b828054620003ec9062000745565b90600052602060002090601f0160209004810192826200041057600085556200045b565b82601f106200042b57805160ff19168380011785556200045b565b828001600101855582156200045b579182015b828111156200045b5782518255916020019190600101906200043e565b50620004699291506200046d565b5090565b5b808211156200046957600081556001016200046e565b60006200049b6200049584620006c3565b620006a4565b905082815260208101848484011115620004b857620004b8600080fd5b620004c584828562000712565b509392505050565b8051620003d881620007de565b8051620003d881620007f8565b600082601f830112620004fd57620004fd600080fd5b81516200050f84826020860162000484565b949350505050565b600060a082840312156200052e576200052e600080fd5b6200053a60a0620006a4565b905060006200054a8484620004cd565b82525060206200055d84848301620004cd565b60208301525060406200057384828501620004cd565b60408301525060606200058984828501620004cd565b60608301525060806200059f84828501620004cd565b60808301525092915050565b6000806000806101008587031215620005c757620005c7600080fd5b6000620005d58787620004cd565b94505060208501516001600160401b03811115620005f657620005f6600080fd5b6200060487828801620004e7565b93505060406200061787828801620004da565b92505060606200062a8782880162000517565b91505092959194509250565b6200064181620006f3565b82525050565b8062000641565b60a081016200065e828862000647565b6200066d602083018762000647565b6200067c604083018662000647565b6200068b606083018562000647565b6200069a608083018462000636565b9695505050505050565b6000620006b060405190565b9050620006be828262000776565b919050565b60006001600160401b03821115620006df57620006df620007be565b620006ea82620007d4565b60200192915050565b60006001600160a01b038216620003d8565b6000620003d882620006f3565b60005b838110156200072f57818101518382015260200162000715565b838111156200073f576000848401525b50505050565b6002810460018216806200075a57607f821691505b60208210811415620007705762000770620007a8565b50919050565b6200078182620007d4565b81018181106001600160401b0382111715620007a157620007a1620007be565b6040525050565b634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f01601f191690565b620007e981620006f3565b8114620007f557600080fd5b50565b620007e98162000705565b60805160a05160c05160601c60e0516101005161012051613a4f62000856600039600061227a015260006122bc0152600061229b015260006121ff01526000612229015260006122530152613a4f6000f3fe60806040526004361061025a5760003560e01c806301ffc9a71461025f5780630513c3e91461029557806306fdde03146102c257806310200519146102e457806313150b481461030657806317fcb39b1461032957806318160ddd146103495780631830e8811461035e5780631f37c1241461037457806320d558aa1461038a57806323af4e171461039d578063248a9ca3146103bf57806326defa73146103df578063289c686b146103ff5780632f2ff15d1461041f5780632f745c591461043f57806336568abe1461045f5780633ad3033e1461047f5780633c72ae701461049f57806341273657146104bf57806342966c68146104df5780634962a158146104ff5780634f558e791461051f5780634f6ccce71461053f5780636352211e1461055f5780636817c76c1461057f57806370a0823114610595578063719d0f2b146105b557806376ad1997146105d5578063776d1a54146105f557806377bed5ed1461060b5780637a0d1646146106385780637ad09dff146106685780637db8cb681461067b57806391223d691461069b57806391d14854146106cb57806394a665e9146106eb57806395d89b411461070b578063992642e514610720578063a217fddf14610740578063b97d6b2314610755578063c1177d191461076b578063c31c9c071461078b578063c86aadb6146107ab578063c87b56dd146107cb578063d544e010146107eb578063d547741f1461080b578063d72b11bd1461082b578063da058ae31461084b578063dda4fa8f1461086b578063ebda43961461088b578063f4a0a528146108ab578063fd48ac83146108cb575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612f66565b6108eb565b60405161028c9190613561565b60405180910390f35b3480156102a157600080fd5b506102b56102b0366004612f12565b6108fc565b60405161028c919061351a565b3480156102ce57600080fd5b506102d7610926565b60405161028c919061364e565b3480156102f057600080fd5b506102f96109b8565b60405161028c9190613550565b34801561031257600080fd5b5061031c60145481565b60405161028c919061356f565b34801561033557600080fd5b50600a546102b5906001600160a01b031681565b34801561035557600080fd5b5060065461031c565b34801561036a57600080fd5b5061031c60185481565b34801561038057600080fd5b5061031c60115481565b61031c610398366004612e7e565b610a19565b3480156103a957600080fd5b506103bd6103b8366004612d6a565b610ba0565b005b3480156103cb57600080fd5b5061031c6103da366004612f12565b610c24565b3480156103eb57600080fd5b506103bd6103fa366004612d6a565b610c39565b34801561040b57600080fd5b506103bd61041a366004612f12565b610cca565b34801561042b57600080fd5b506103bd61043a366004612f33565b610cfe565b34801561044b57600080fd5b5061031c61045a366004612e41565b610d1f565b34801561046b57600080fd5b506103bd61047a366004612f33565b610d71565b34801561048b57600080fd5b506103bd61049a366004612f87565b610da7565b3480156104ab57600080fd5b506103bd6104ba366004612f12565b610e04565b3480156104cb57600080fd5b506103bd6104da366004612d6a565b610e38565b3480156104eb57600080fd5b506103bd6104fa366004612f12565b610ebc565b34801561050b57600080fd5b506103bd61051a366004612f12565b610eee565b34801561052b57600080fd5b5061027f61053a366004612f12565b610f22565b34801561054b57600080fd5b5061031c61055a366004612f12565b610f2d565b34801561056b57600080fd5b506102b561057a366004612f12565b610f7b565b34801561058b57600080fd5b5061031c60175481565b3480156105a157600080fd5b5061031c6105b0366004612d6a565b610fb0565b3480156105c157600080fd5b5061031c6105d0366004612d6a565b610ff4565b3480156105e157600080fd5b506103bd6105f0366004612d6a565b6110f4565b34801561060157600080fd5b5061031c60125481565b34801561061757600080fd5b5060165461062b906001600160a01b031681565b60405161028c9190613640565b34801561064457600080fd5b5061027f610653366004612d6a565b600d6020526000908152604090205460ff1681565b61031c610676366004612dac565b611151565b34801561068757600080fd5b506103bd610696366004612f12565b61121d565b3480156106a757600080fd5b5061027f6106b6366004612d6a565b60196020526000908152604090205460ff1681565b3480156106d757600080fd5b5061027f6106e6366004612f33565b611251565b3480156106f757600080fd5b506103bd610706366004612d6a565b61127c565b34801561071757600080fd5b506102d76113e9565b34801561072c57600080fd5b50600b546102b5906001600160a01b031681565b34801561074c57600080fd5b5061031c600081565b34801561076157600080fd5b5061031c60135481565b34801561077757600080fd5b5061031c610786366004612f12565b6113f8565b34801561079757600080fd5b506009546102b5906001600160a01b031681565b3480156107b757600080fd5b506103bd6107c6366004612d6a565b6114b7565b3480156107d757600080fd5b506102d76107e6366004612f12565b611563565b3480156107f757600080fd5b506103bd610806366004612d6a565b6115c9565b34801561081757600080fd5b506103bd610826366004612f33565b611658565b34801561083757600080fd5b50600f546102b5906001600160a01b031681565b34801561085757600080fd5b506103bd610866366004612d6a565b611674565b34801561087757600080fd5b506103bd610886366004612d6a565b6116f8565b34801561089757600080fd5b50600c546102b5906001600160a01b031681565b3480156108b757600080fd5b506103bd6108c6366004612f12565b61177c565b3480156108d757600080fd5b506103bd6108e6366004612f12565b6117b0565b60006108f6826117e4565b92915050565b600e818154811061090c57600080fd5b6000918252602090912001546001600160a01b0316905081565b606060008054610935906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054610961906138db565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b6060600e8054806020026020016040519081016040528092919081815260200182805480156109ae57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116109f2575050505050905090565b6000610a236117ef565b6016546040516331a9108f60e11b81526000916001600160a01b031690636352211e90610a54908a9060040161356f565b60206040518083038186803b158015610a6c57600080fd5b505afa158015610a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa49190612d8b565b90506001600160a01b0381163314610adb57335b60405163060296c760e31b8152600401610ad2919061351a565b60405180910390fd5b610b27610ae9888888611819565b85858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508b9250611878915050565b610b3988610b348a610ff4565b6118f9565b6000610b4482611a9f565b90507fdc7a913fb88ef84b4edaae2c1ccc524475744905088d5c1362bab12c676f9e97818989898d601754604051610b81969594939291906137ce565b60405180910390a1915050610b966001601a55565b9695505050505050565b6000610bab81611ac5565b6001600160a01b038216610bd25760405163d92e233d60e01b815260040160405180910390fd5b600b546001600160a01b0383811691161415610c015760405163c23f6ccb60e01b815260040160405180910390fd5b50600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60009081526008602052604090206001015490565b6000610c4481611ac5565b6001600160a01b038216610c6b5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1615610ca55760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000908152601960205260409020805460ff19166001179055565b6000610cd581611ac5565b816011541415610cf85760405163c23f6ccb60e01b815260040160405180910390fd5b50601155565b610d0782610c24565b610d1081611ac5565b610d1a8383611acf565b505050565b6000610d2a83610fb0565b8210610d485760405162461bcd60e51b8152600401610ad29061369f565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b6001600160a01b0381163314610d995760405162461bcd60e51b8152600401610ad29061374f565b610da38282611b55565b5050565b6000610db281611ac5565b6016546001600160a01b0383811691161415610de15760405163c23f6ccb60e01b815260040160405180910390fd5b50601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e0f81611ac5565b816012541415610e325760405163c23f6ccb60e01b815260040160405180910390fd5b50601255565b6000610e4381611ac5565b6001600160a01b038216610e6a5760405163d92e233d60e01b815260040160405180910390fd5b6009546001600160a01b0383811691161415610e995760405163c23f6ccb60e01b815260040160405180910390fd5b50600980546001600160a01b0319166001600160a01b0392909216919091179055565b610ec63382611bbc565b610ee25760405162461bcd60e51b8152600401610ad2906136df565b610eeb81611bdf565b50565b6000610ef981611ac5565b816018541415610f1c5760405163c23f6ccb60e01b815260040160405180910390fd5b50601855565b60006108f682611c79565b6000610f3860065490565b8210610f565760405162461bcd60e51b8152600401610ad29061372f565b60068281548110610f6957610f696139a8565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108f65760405162461bcd60e51b8152600401610ad2906136ff565b60006001600160a01b038216610fd85760405162461bcd60e51b8152600401610ad2906136cf565b506001600160a01b031660009081526003602052604090205490565b600060175460001480156110085750601854155b1561101557506000919050565b600c546001600160a01b03838116911614801561104a57506001600160a01b0382166000908152600d602052604090205460ff165b801561105857506000601854115b1561106557505060185490565b600b546001600160a01b03838116911614801561109a57506001600160a01b0382166000908152600d602052604090205460ff165b156110a757505060175490565b6001600160a01b0382166000908152600d602052604090205460ff16156110d4576108f682601754611c96565b81604051630ac29ab760e31b8152600401610ad2919061351a565b919050565b60006110ff81611ac5565b600c546001600160a01b038381169116141561112e5760405163c23f6ccb60e01b815260040160405180910390fd5b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03861633146111695733610ab8565b6111b5611177878787611d35565b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a9250611878915050565b6111c287610b3489610ff4565b60006111cd87611a9f565b90507f7650948236619e679e44bf502d527ec950d1d58336e6babf229f483c57d04672818888888c60175460405161120a9695949392919061375f565b60405180910390a1979650505050505050565b600061122881611ac5565b81601454141561124b5760405163c23f6ccb60e01b815260040160405180910390fd5b50601455565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600061128781611ac5565b6001600160a01b0382166000908152600d602052604090205460ff166112c257816040516318317bd560e01b8152600401610ad2919061351a565b6001600160a01b0382166000908152600d60205260408120805460ff191690555b600e54811015610d1a57826001600160a01b0316600e828154811061130a5761130a6139a8565b6000918252602090912001546001600160a01b031614156113d757600e80546113359060019061385a565b81548110611345576113456139a8565b600091825260209091200154600e80546001600160a01b039092169183908110611371576113716139a8565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600e8054806113b0576113b0613992565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b806113e181613935565b9150506112e3565b606060018054610935906138db565b6016546000906001600160a01b031661142457604051630d7fe67b60e41b815260040160405180910390fd5b600061142f83610f7b565b60165460405163294cdf0d60e01b81529192506001600160a01b03169063294cdf0d9061146090849060040161351a565b60206040518083038186803b15801561147857600080fd5b505afa15801561148c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b09190612fa8565b9392505050565b60006114c281611ac5565b6001600160a01b0382166000908152600d602052604090205460ff16156114fc5760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b606061156e82611d71565b6000611578611d96565b9050600081511161159857604051806020016040528060008152506114b0565b806115a284611da5565b6040516020016115b3929190613461565b6040516020818303038152906040529392505050565b60006115d481611ac5565b6001600160a01b0382166115fb5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1661163657816040516324b1f80560e21b8152600401610ad2919061351a565b506001600160a01b03166000908152601960205260409020805460ff19169055565b61166182610c24565b61166a81611ac5565b610d1a8383611b55565b600061167f81611ac5565b6001600160a01b0382166116a65760405163d92e233d60e01b815260040160405180910390fd5b600a546001600160a01b03838116911614156116d55760405163c23f6ccb60e01b815260040160405180910390fd5b50600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061170381611ac5565b6001600160a01b03821661172a5760405163d92e233d60e01b815260040160405180910390fd5b600f546001600160a01b03838116911614156117595760405163c23f6ccb60e01b815260040160405180910390fd5b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600061178781611ac5565b8160175414156117aa5760405163c23f6ccb60e01b815260040160405180910390fd5b50601755565b60006117bb81611ac5565b8160135414156117de5760405163c23f6ccb60e01b815260040160405180910390fd5b50601355565b60006108f682611e41565b6002601a5414156118125760405162461bcd60e51b8152600401610ad29061373f565b6002601a55565b60006118707f94b1435871abae349525e55cb9a064ad0eac0fab877fee876ed90f72fcf33cce85858560405160200161185594939291906135fd565b60405160208183030381529060405280519060200120611e66565b949350505050565b60006118848484611e79565b9050816001600160a01b0316816001600160a01b0316146118b857604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b03811660009081526019602052604090205460ff166118f35780604051634a0bfec160e01b8152600401610ad2919061351a565b50505050565b80611902575050565b6001600160a01b0382166000908152600d602052604090205460ff1661193d5781604051630ac29ab760e31b8152600401610ad2919061351a565b6001600160a01b038216611a83578034101561196e578060405163091a6d0f60e01b8152600401610ad2919061356f565b600f546040516000916001600160a01b031690839061198c906134c0565b60006040518083038185875af1925050503d80600081146119c9576040519150601f19603f3d011682016040523d82523d6000602084013e6119ce565b606091505b50509050806119f0576040516312171d8360e31b815260040160405180910390fd5b81341115610d1a576000611a043484611e95565b9050336001600160a01b031681604051611a1d906134c0565b60006040518083038185875af1925050503d8060008114611a5a576040519150601f19603f3d011682016040523d82523d6000602084013e611a5f565b606091505b505080925050816118f357604051633c31275160e21b815260040160405180910390fd5b600f54610da3906001600160a01b038481169133911684611ea1565b600080611aab60155490565b9050611abb601580546001019055565b6108f68382611ef9565b610eeb8133611fd5565b611ad98282611251565b610da35760008281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b113390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611b5f8282611251565b15610da35760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600080611bc883610f7b565b6001600160a01b0385811691161491505092915050565b6000611bea82610f7b565b9050611bf88160008461202e565b6001600160a01b0381166000908152600360205260408120805460019290611c2190849061385a565b909155505060008281526002602052604080822080546001600160a01b03191690555183916001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59190a35050565b6000908152600260205260409020546001600160a01b0316151590565b6001600160a01b0382166000908152600d602052604081205460ff161580611ccb5750600b546001600160a01b038481169116145b15611ceb578260405163961c9a4f60e01b8152600401610ad2919061351a565b6001600160a01b038316611d1d57600a54600b54611d16916001600160a01b03908116911684612039565b90506108f6565b600b54611d169084906001600160a01b031684612039565b60006118707f885d61cd569c3c85a110715a0d188c45590cf3f8a77e71714f4f0211ead7ac8c858585604051602001611855949392919061357d565b611d7a81611c79565b610eeb5760405162461bcd60e51b8152600401610ad2906136ff565b606060108054610935906138db565b60606000611db2836120f7565b60010190506000816001600160401b03811115611dd157611dd16139be565b6040519080825280601f01601f191660200182016040528015611dfb576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611e3457611e39565b611e05565b509392505050565b60006001600160e01b03198216637965db0b60e01b14806108f657506108f6826121cd565b60006108f6611e736121f2565b836122e5565b6000806000611e888585612318565b91509150611e398161235e565b60006114b0828461385a565b6118f3846323b872dd60e01b858585604051602401611ec293929190613528565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612411565b6001600160a01b038216611f1f5760405162461bcd60e51b8152600401610ad29061368f565b611f2881611c79565b15611f455760405162461bcd60e51b8152600401610ad2906136ef565b611f516000838361202e565b6001600160a01b0382166000908152600360205260408120805460019290611f7a908490613823565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688591a35050565b611fdf8282611251565b610da357611fec816124a0565b611ff78360206124b2565b6040516020016120089291906134c8565b60408051601f198184030181529082905262461bcd60e51b8252610ad29160040161364e565b610d1a83838361261d565b600060608061204886866126d5565b6009546040516307c0329d60e21b81529192506001600160a01b031690631f00ca749061207b90879085906004016137ae565b60006040518083038186803b15801561209357600080fd5b505afa1580156120a7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120cf9190810190612eb7565b9150816000815181106120e4576120e46139a8565b6020026020010151925050509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121365772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310612160576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061217e57662386f26fc10000830492506010015b6305f5e1008310612196576305f5e100830492506008015b61271083106121aa57612710830492506004015b606483106121bc576064830492506002015b600a83106108f65760010192915050565b60006001600160e01b0319821663780e9d6360e01b14806108f657506108f682612867565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561224b57507f000000000000000000000000000000000000000000000000000000000000000046145b1561227557507f000000000000000000000000000000000000000000000000000000000000000090565b6122e07f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006128b7565b905090565b600082826040516020016122fa92919061348f565b60405160208183030381529060405280519060200120905092915050565b60008082516041141561234f5760208301516040840151606085015160001a612343878285856128f1565b94509450505050612357565b506000905060025b9250929050565b600081600481111561237257612372613966565b141561237b5750565b600181600481111561238f5761238f613966565b14156123ad5760405162461bcd60e51b8152600401610ad29061365f565b60028160048111156123c1576123c1613966565b14156123df5760405162461bcd60e51b8152600401610ad29061367f565b60038160048111156123f3576123f3613966565b1415610eeb5760405162461bcd60e51b8152600401610ad2906136af565b6000612466826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661299e9092919063ffffffff16565b805190915015610d1a57808060200190518101906124849190612ef1565b610d1a5760405162461bcd60e51b8152600401610ad29061371f565b60606108f66001600160a01b03831660145b606060006124c183600261383b565b6124cc906002613823565b6001600160401b038111156124e3576124e36139be565b6040519080825280601f01601f19166020018201604052801561250d576020820181803683370190505b509050600360fc1b81600081518110612528576125286139a8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612557576125576139a8565b60200101906001600160f81b031916908160001a905350600061257b84600261383b565b612586906001613823565b90505b60018111156125fe576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106125ba576125ba6139a8565b1a60f81b8282815181106125d0576125d06139a8565b60200101906001600160f81b031916908160001a90535060049490941c936125f7816138c4565b9050612589565b5083156114b05760405162461bcd60e51b8152600401610ad29061366f565b6001600160a01b0383166126785761267381600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b61269b565b816001600160a01b0316836001600160a01b03161461269b5761269b83826129ad565b6001600160a01b0382166126b257610d1a81612a4a565b826001600160a01b0316826001600160a01b031614610d1a57610d1a8282612af9565b600a546060906001600160a01b03848116911614806127015750600a546001600160a01b038381169116145b156127cb5760408051600280825260608201835260009260208301908036833701905050600a549091506001600160a01b038581169116146127435783612750565b600a546001600160a01b03165b81600081518110612763576127636139a8565b6001600160a01b039283166020918202929092010152600a5484821691161461278c5782612799565b600a546001600160a01b03165b816001815181106127ac576127ac6139a8565b6001600160a01b039092166020928302919091019091015290506108f6565b60408051600380825260808201909252600091602082016060803683370190505090508381600081518110612802576128026139a8565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110612833576128336139a8565b60200260200101906001600160a01b031690816001600160a01b03168152505082816002815181106127ac576127ac6139a8565b60006001600160e01b031982166313f2a32f60e01b148061289857506001600160e01b03198216635b5e139f60e01b145b806108f657506301ffc9a760e01b6001600160e01b03198316146108f6565b600083838346306040516020016128d29594939291906135bb565b6040516020818303038152906040528051906020012090509392505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b0383111561291e5750600090506003612995565b6000600187878787604051600081526020016040526040516129439493929190613618565b6020604051602081039080840390855afa158015612965573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661298e57600060019250925050612995565b9150600090505b94509492505050565b60606118708484600085612b3d565b600060016129ba84610fb0565b6129c4919061385a565b600083815260056020526040902054909150808214612a17576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b600654600090612a5c9060019061385a565b60008381526007602052604081205460068054939450909284908110612a8457612a846139a8565b906000526020600020015490508060068381548110612aa557612aa56139a8565b6000918252602080832090910192909255828152600790915260408082208490558582528120556006805480612add57612add613992565b6001900381819060005260206000200160009055905550505050565b6000612b0483610fb0565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b606082471015612b5f5760405162461bcd60e51b8152600401610ad2906136bf565b600080866001600160a01b03168587604051612b7b9190613455565b60006040518083038185875af1925050503d8060008114612bb8576040519150601f19603f3d011682016040523d82523d6000602084013e612bbd565b606091505b5091509150612bce87838387612bd9565b979650505050505050565b60608315612c15578251612c0e576001600160a01b0385163b612c0e5760405162461bcd60e51b8152600401610ad29061370f565b5081611870565b6118708383815115612c2a5781518083602001fd5b8060405162461bcd60e51b8152600401610ad2919061364e565b6000612c57612c5284613800565b6137e9565b90508083825260208201905082856020860282011115612c7957612c79600080fd5b60005b85811015612ca55781612c8f8882612d5f565b8452506020928301929190910190600101612c7c565b5050509392505050565b80356108f6816139de565b80516108f6816139de565b600082601f830112612cd957612cd9600080fd5b8151611870848260208601612c44565b80516108f6816139f2565b80356108f6816139fa565b80356108f681613a00565b60008083601f840112612d1f57612d1f600080fd5b5081356001600160401b03811115612d3957612d39600080fd5b60208301915083600182028301111561235757612357600080fd5b80356108f681613a10565b80516108f6816139fa565b600060208284031215612d7f57612d7f600080fd5b60006118708484612caf565b600060208284031215612da057612da0600080fd5b60006118708484612cba565b60008060008060008060a08789031215612dc857612dc8600080fd5b6000612dd48989612caf565b9650506020612de589828a01612caf565b9550506040612df689828a01612caf565b9450506060612e0789828a01612cf4565b93505060808701356001600160401b03811115612e2657612e26600080fd5b612e3289828a01612d0a565b92509250509295509295509295565b60008060408385031215612e5757612e57600080fd5b6000612e638585612caf565b9250506020612e7485828601612cf4565b9150509250929050565b60008060008060008060a08789031215612e9a57612e9a600080fd5b6000612ea68989612caf565b9650506020612de589828a01612cf4565b600060208284031215612ecc57612ecc600080fd5b81516001600160401b03811115612ee557612ee5600080fd5b61187084828501612cc5565b600060208284031215612f0657612f06600080fd5b60006118708484612ce9565b600060208284031215612f2757612f27600080fd5b60006118708484612cf4565b60008060408385031215612f4957612f49600080fd5b6000612f558585612cf4565b9250506020612e7485828601612caf565b600060208284031215612f7b57612f7b600080fd5b60006118708484612cff565b600060208284031215612f9c57612f9c600080fd5b60006118708484612d54565b600060208284031215612fbd57612fbd600080fd5b60006118708484612d5f565b6000612fd58383612fdd565b505060200190565b612fe681613871565b82525050565b6000612ff6825190565b80845260209384019383018060005b8381101561302a5781516130198882612fc9565b975060208301925050600101613005565b509495945050505050565b801515612fe6565b80612fe6565b600061304d825190565b61305b818560208601613898565b9290920192915050565b612fe68161388d565b6000613078825190565b80845260208401935061308f818560208601613898565b613098816139d4565b9093019392505050565b601881526000602082017745434453413a20696e76616c6964207369676e617475726560401b815291505b5060200190565b60208082527f537472696e67733a20686578206c656e67746820696e73756666696369656e74910190815260006130cd565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e67746800815291506130cd565b601d81526000602082017f5342543a206d696e7420746f20746865207a65726f2061646472657373000000815291506130cd565b602881526000602082017f534254456e756d657261626c653a206f776e657220696e646578206f7574206f8152676620626f756e647360c01b602082015291505b5060400190565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b602082015291506131af565b602681526000602082017f416464726573733a20696e73756666696369656e742062616c616e636520666f8152651c8818d85b1b60d21b602082015291506131af565b602681526000602082017f5342543a2061646472657373207a65726f206973206e6f7420612076616c69648152651037bbb732b960d11b602082015291506131af565b601e81526000602082017f5342543a2063616c6c6572206973206e6f7420746f6b656e206f776e65720000815291506130cd565b601981526000602082017814d0950e881d1bdad95b88185b1c9958591e481b5a5b9d1959603a1b815291506130cd565b601581526000602082017414d0950e881a5b9d985b1a59081d1bdad95b881251605a1b815291506130cd565b601d81526000602082017f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000815291506130cd565b602a81526000602082017f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b602082015291506131af565b602981526000602082017f534254456e756d657261626c653a20676c6f62616c20696e646578206f7574208152686f6620626f756e647360b81b602082015291506131af565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815291506130cd565b602f81526000602082017f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636581526e103937b632b9903337b91039b2b63360891b602082015291506131af565b60ff8116612fe6565b60006114b08284613043565b600061346d8285613043565b91506134798284613043565b64173539b7b760d91b8152915060058201611870565b61190160f01b815260020160006134a6828561303d565b6020820191506134b6828461303d565b5060200192915050565b6000816108f6565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260170160006134f48285613043565b7001034b99036b4b9b9b4b733903937b6329607d1b815260110191506118708284613043565b602081016108f68284612fdd565b606081016135368286612fdd565b6135436020830185612fdd565b611870604083018461303d565b602080825281016114b08184612fec565b602081016108f68284613035565b602081016108f6828461303d565b6080810161358b828761303d565b6135986020830186612fdd565b6135a56040830185612fdd565b6135b2606083018461303d565b95945050505050565b60a081016135c9828861303d565b6135d6602083018761303d565b6135e3604083018661303d565b6135f0606083018561303d565b610b966080830184612fdd565b6080810161360b828761303d565b613598602083018661303d565b60808101613626828761303d565b613633602083018661344c565b6135a5604083018561303d565b602081016108f68284613065565b602080825281016114b0818461306e565b602080825281016108f6816130a2565b602080825281016108f6816130d4565b602080825281016108f681613106565b602080825281016108f68161313a565b602080825281016108f68161316e565b602080825281016108f6816131b6565b602080825281016108f6816131f5565b602080825281016108f681613238565b602080825281016108f68161327b565b602080825281016108f6816132af565b602080825281016108f6816132df565b602080825281016108f68161330b565b602080825281016108f68161333f565b602080825281016108f681613386565b602080825281016108f6816133cc565b602080825281016108f681613400565b60c0810161376d828961303d565b61377a6020830188612fdd565b6137876040830187612fdd565b613794606083018661303d565b6137a16080830185612fdd565b612bce60a083018461303d565b604081016137bc828561303d565b81810360208301526118708184612fec565b60c081016137dc828961303d565b61377a602083018861303d565b60006137f460405190565b90506110ef8282613908565b60006001600160401b03821115613819576138196139be565b5060209081020190565b6000821982111561383657613836613950565b500190565b600081600019048311821515161561385557613855613950565b500290565b60008282101561386c5761386c613950565b500390565b60006001600160a01b0382166108f6565b60006108f682613871565b60006108f682613882565b60005b838110156138b357818101518382015260200161389b565b838111156118f35750506000910152565b6000816138d3576138d3613950565b506000190190565b6002810460018216806138ef57607f821691505b602082108114156139025761390261397c565b50919050565b613911826139d4565b81018181106001600160401b038211171561392e5761392e6139be565b6040525050565b600060001982141561394957613949613950565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f01601f191690565b6139e781613871565b8114610eeb57600080fd5b8015156139e7565b806139e7565b6001600160e01b031981166139e7565b6139e78161388256fea264697066735822122062f5e3d5fc9770a9207e0d76c7f9d1a3ae8cb5d734c185f376a6ae1cd882c82964736f6c63430008070033000000000000000000000000bb4125c48e8c69b0f06e0c635dfcd0aa250fcbf900000000000000000000000000000000000000000000000000000000000001000000000000000000000000008903d8d4f4c06814d7ecb42b1258e2209d53a7d40000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ccfa6a842151f53e18a5d56edfd0177fa8c8d7f5000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6d657461646174612e6d6173612e66696e616e63652f76312e302f677265656e2f6d61696e6e65742f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025a5760003560e01c806301ffc9a71461025f5780630513c3e91461029557806306fdde03146102c257806310200519146102e457806313150b481461030657806317fcb39b1461032957806318160ddd146103495780631830e8811461035e5780631f37c1241461037457806320d558aa1461038a57806323af4e171461039d578063248a9ca3146103bf57806326defa73146103df578063289c686b146103ff5780632f2ff15d1461041f5780632f745c591461043f57806336568abe1461045f5780633ad3033e1461047f5780633c72ae701461049f57806341273657146104bf57806342966c68146104df5780634962a158146104ff5780634f558e791461051f5780634f6ccce71461053f5780636352211e1461055f5780636817c76c1461057f57806370a0823114610595578063719d0f2b146105b557806376ad1997146105d5578063776d1a54146105f557806377bed5ed1461060b5780637a0d1646146106385780637ad09dff146106685780637db8cb681461067b57806391223d691461069b57806391d14854146106cb57806394a665e9146106eb57806395d89b411461070b578063992642e514610720578063a217fddf14610740578063b97d6b2314610755578063c1177d191461076b578063c31c9c071461078b578063c86aadb6146107ab578063c87b56dd146107cb578063d544e010146107eb578063d547741f1461080b578063d72b11bd1461082b578063da058ae31461084b578063dda4fa8f1461086b578063ebda43961461088b578063f4a0a528146108ab578063fd48ac83146108cb575b600080fd5b34801561026b57600080fd5b5061027f61027a366004612f66565b6108eb565b60405161028c9190613561565b60405180910390f35b3480156102a157600080fd5b506102b56102b0366004612f12565b6108fc565b60405161028c919061351a565b3480156102ce57600080fd5b506102d7610926565b60405161028c919061364e565b3480156102f057600080fd5b506102f96109b8565b60405161028c9190613550565b34801561031257600080fd5b5061031c60145481565b60405161028c919061356f565b34801561033557600080fd5b50600a546102b5906001600160a01b031681565b34801561035557600080fd5b5060065461031c565b34801561036a57600080fd5b5061031c60185481565b34801561038057600080fd5b5061031c60115481565b61031c610398366004612e7e565b610a19565b3480156103a957600080fd5b506103bd6103b8366004612d6a565b610ba0565b005b3480156103cb57600080fd5b5061031c6103da366004612f12565b610c24565b3480156103eb57600080fd5b506103bd6103fa366004612d6a565b610c39565b34801561040b57600080fd5b506103bd61041a366004612f12565b610cca565b34801561042b57600080fd5b506103bd61043a366004612f33565b610cfe565b34801561044b57600080fd5b5061031c61045a366004612e41565b610d1f565b34801561046b57600080fd5b506103bd61047a366004612f33565b610d71565b34801561048b57600080fd5b506103bd61049a366004612f87565b610da7565b3480156104ab57600080fd5b506103bd6104ba366004612f12565b610e04565b3480156104cb57600080fd5b506103bd6104da366004612d6a565b610e38565b3480156104eb57600080fd5b506103bd6104fa366004612f12565b610ebc565b34801561050b57600080fd5b506103bd61051a366004612f12565b610eee565b34801561052b57600080fd5b5061027f61053a366004612f12565b610f22565b34801561054b57600080fd5b5061031c61055a366004612f12565b610f2d565b34801561056b57600080fd5b506102b561057a366004612f12565b610f7b565b34801561058b57600080fd5b5061031c60175481565b3480156105a157600080fd5b5061031c6105b0366004612d6a565b610fb0565b3480156105c157600080fd5b5061031c6105d0366004612d6a565b610ff4565b3480156105e157600080fd5b506103bd6105f0366004612d6a565b6110f4565b34801561060157600080fd5b5061031c60125481565b34801561061757600080fd5b5060165461062b906001600160a01b031681565b60405161028c9190613640565b34801561064457600080fd5b5061027f610653366004612d6a565b600d6020526000908152604090205460ff1681565b61031c610676366004612dac565b611151565b34801561068757600080fd5b506103bd610696366004612f12565b61121d565b3480156106a757600080fd5b5061027f6106b6366004612d6a565b60196020526000908152604090205460ff1681565b3480156106d757600080fd5b5061027f6106e6366004612f33565b611251565b3480156106f757600080fd5b506103bd610706366004612d6a565b61127c565b34801561071757600080fd5b506102d76113e9565b34801561072c57600080fd5b50600b546102b5906001600160a01b031681565b34801561074c57600080fd5b5061031c600081565b34801561076157600080fd5b5061031c60135481565b34801561077757600080fd5b5061031c610786366004612f12565b6113f8565b34801561079757600080fd5b506009546102b5906001600160a01b031681565b3480156107b757600080fd5b506103bd6107c6366004612d6a565b6114b7565b3480156107d757600080fd5b506102d76107e6366004612f12565b611563565b3480156107f757600080fd5b506103bd610806366004612d6a565b6115c9565b34801561081757600080fd5b506103bd610826366004612f33565b611658565b34801561083757600080fd5b50600f546102b5906001600160a01b031681565b34801561085757600080fd5b506103bd610866366004612d6a565b611674565b34801561087757600080fd5b506103bd610886366004612d6a565b6116f8565b34801561089757600080fd5b50600c546102b5906001600160a01b031681565b3480156108b757600080fd5b506103bd6108c6366004612f12565b61177c565b3480156108d757600080fd5b506103bd6108e6366004612f12565b6117b0565b60006108f6826117e4565b92915050565b600e818154811061090c57600080fd5b6000918252602090912001546001600160a01b0316905081565b606060008054610935906138db565b80601f0160208091040260200160405190810160405280929190818152602001828054610961906138db565b80156109ae5780601f10610983576101008083540402835291602001916109ae565b820191906000526020600020905b81548152906001019060200180831161099157829003601f168201915b5050505050905090565b6060600e8054806020026020016040519081016040528092919081815260200182805480156109ae57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116109f2575050505050905090565b6000610a236117ef565b6016546040516331a9108f60e11b81526000916001600160a01b031690636352211e90610a54908a9060040161356f565b60206040518083038186803b158015610a6c57600080fd5b505afa158015610a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa49190612d8b565b90506001600160a01b0381163314610adb57335b60405163060296c760e31b8152600401610ad2919061351a565b60405180910390fd5b610b27610ae9888888611819565b85858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508b9250611878915050565b610b3988610b348a610ff4565b6118f9565b6000610b4482611a9f565b90507fdc7a913fb88ef84b4edaae2c1ccc524475744905088d5c1362bab12c676f9e97818989898d601754604051610b81969594939291906137ce565b60405180910390a1915050610b966001601a55565b9695505050505050565b6000610bab81611ac5565b6001600160a01b038216610bd25760405163d92e233d60e01b815260040160405180910390fd5b600b546001600160a01b0383811691161415610c015760405163c23f6ccb60e01b815260040160405180910390fd5b50600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60009081526008602052604090206001015490565b6000610c4481611ac5565b6001600160a01b038216610c6b5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1615610ca55760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000908152601960205260409020805460ff19166001179055565b6000610cd581611ac5565b816011541415610cf85760405163c23f6ccb60e01b815260040160405180910390fd5b50601155565b610d0782610c24565b610d1081611ac5565b610d1a8383611acf565b505050565b6000610d2a83610fb0565b8210610d485760405162461bcd60e51b8152600401610ad29061369f565b506001600160a01b03919091166000908152600460209081526040808320938352929052205490565b6001600160a01b0381163314610d995760405162461bcd60e51b8152600401610ad29061374f565b610da38282611b55565b5050565b6000610db281611ac5565b6016546001600160a01b0383811691161415610de15760405163c23f6ccb60e01b815260040160405180910390fd5b50601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e0f81611ac5565b816012541415610e325760405163c23f6ccb60e01b815260040160405180910390fd5b50601255565b6000610e4381611ac5565b6001600160a01b038216610e6a5760405163d92e233d60e01b815260040160405180910390fd5b6009546001600160a01b0383811691161415610e995760405163c23f6ccb60e01b815260040160405180910390fd5b50600980546001600160a01b0319166001600160a01b0392909216919091179055565b610ec63382611bbc565b610ee25760405162461bcd60e51b8152600401610ad2906136df565b610eeb81611bdf565b50565b6000610ef981611ac5565b816018541415610f1c5760405163c23f6ccb60e01b815260040160405180910390fd5b50601855565b60006108f682611c79565b6000610f3860065490565b8210610f565760405162461bcd60e51b8152600401610ad29061372f565b60068281548110610f6957610f696139a8565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806108f65760405162461bcd60e51b8152600401610ad2906136ff565b60006001600160a01b038216610fd85760405162461bcd60e51b8152600401610ad2906136cf565b506001600160a01b031660009081526003602052604090205490565b600060175460001480156110085750601854155b1561101557506000919050565b600c546001600160a01b03838116911614801561104a57506001600160a01b0382166000908152600d602052604090205460ff165b801561105857506000601854115b1561106557505060185490565b600b546001600160a01b03838116911614801561109a57506001600160a01b0382166000908152600d602052604090205460ff165b156110a757505060175490565b6001600160a01b0382166000908152600d602052604090205460ff16156110d4576108f682601754611c96565b81604051630ac29ab760e31b8152600401610ad2919061351a565b919050565b60006110ff81611ac5565b600c546001600160a01b038381169116141561112e5760405163c23f6ccb60e01b815260040160405180910390fd5b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b03861633146111695733610ab8565b6111b5611177878787611d35565b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a9250611878915050565b6111c287610b3489610ff4565b60006111cd87611a9f565b90507f7650948236619e679e44bf502d527ec950d1d58336e6babf229f483c57d04672818888888c60175460405161120a9695949392919061375f565b60405180910390a1979650505050505050565b600061122881611ac5565b81601454141561124b5760405163c23f6ccb60e01b815260040160405180910390fd5b50601455565b60009182526008602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600061128781611ac5565b6001600160a01b0382166000908152600d602052604090205460ff166112c257816040516318317bd560e01b8152600401610ad2919061351a565b6001600160a01b0382166000908152600d60205260408120805460ff191690555b600e54811015610d1a57826001600160a01b0316600e828154811061130a5761130a6139a8565b6000918252602090912001546001600160a01b031614156113d757600e80546113359060019061385a565b81548110611345576113456139a8565b600091825260209091200154600e80546001600160a01b039092169183908110611371576113716139a8565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600e8054806113b0576113b0613992565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b806113e181613935565b9150506112e3565b606060018054610935906138db565b6016546000906001600160a01b031661142457604051630d7fe67b60e41b815260040160405180910390fd5b600061142f83610f7b565b60165460405163294cdf0d60e01b81529192506001600160a01b03169063294cdf0d9061146090849060040161351a565b60206040518083038186803b15801561147857600080fd5b505afa15801561148c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b09190612fa8565b9392505050565b60006114c281611ac5565b6001600160a01b0382166000908152600d602052604090205460ff16156114fc5760405163f411c32760e01b815260040160405180910390fd5b506001600160a01b03166000818152600d60205260408120805460ff19166001908117909155600e805491820181559091527fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319169091179055565b606061156e82611d71565b6000611578611d96565b9050600081511161159857604051806020016040528060008152506114b0565b806115a284611da5565b6040516020016115b3929190613461565b6040516020818303038152906040529392505050565b60006115d481611ac5565b6001600160a01b0382166115fb5760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b03821660009081526019602052604090205460ff1661163657816040516324b1f80560e21b8152600401610ad2919061351a565b506001600160a01b03166000908152601960205260409020805460ff19169055565b61166182610c24565b61166a81611ac5565b610d1a8383611b55565b600061167f81611ac5565b6001600160a01b0382166116a65760405163d92e233d60e01b815260040160405180910390fd5b600a546001600160a01b03838116911614156116d55760405163c23f6ccb60e01b815260040160405180910390fd5b50600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061170381611ac5565b6001600160a01b03821661172a5760405163d92e233d60e01b815260040160405180910390fd5b600f546001600160a01b03838116911614156117595760405163c23f6ccb60e01b815260040160405180910390fd5b50600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600061178781611ac5565b8160175414156117aa5760405163c23f6ccb60e01b815260040160405180910390fd5b50601755565b60006117bb81611ac5565b8160135414156117de5760405163c23f6ccb60e01b815260040160405180910390fd5b50601355565b60006108f682611e41565b6002601a5414156118125760405162461bcd60e51b8152600401610ad29061373f565b6002601a55565b60006118707f94b1435871abae349525e55cb9a064ad0eac0fab877fee876ed90f72fcf33cce85858560405160200161185594939291906135fd565b60405160208183030381529060405280519060200120611e66565b949350505050565b60006118848484611e79565b9050816001600160a01b0316816001600160a01b0316146118b857604051638baa579f60e01b815260040160405180910390fd5b6001600160a01b03811660009081526019602052604090205460ff166118f35780604051634a0bfec160e01b8152600401610ad2919061351a565b50505050565b80611902575050565b6001600160a01b0382166000908152600d602052604090205460ff1661193d5781604051630ac29ab760e31b8152600401610ad2919061351a565b6001600160a01b038216611a83578034101561196e578060405163091a6d0f60e01b8152600401610ad2919061356f565b600f546040516000916001600160a01b031690839061198c906134c0565b60006040518083038185875af1925050503d80600081146119c9576040519150601f19603f3d011682016040523d82523d6000602084013e6119ce565b606091505b50509050806119f0576040516312171d8360e31b815260040160405180910390fd5b81341115610d1a576000611a043484611e95565b9050336001600160a01b031681604051611a1d906134c0565b60006040518083038185875af1925050503d8060008114611a5a576040519150601f19603f3d011682016040523d82523d6000602084013e611a5f565b606091505b505080925050816118f357604051633c31275160e21b815260040160405180910390fd5b600f54610da3906001600160a01b038481169133911684611ea1565b600080611aab60155490565b9050611abb601580546001019055565b6108f68382611ef9565b610eeb8133611fd5565b611ad98282611251565b610da35760008281526008602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611b113390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b611b5f8282611251565b15610da35760008281526008602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600080611bc883610f7b565b6001600160a01b0385811691161491505092915050565b6000611bea82610f7b565b9050611bf88160008461202e565b6001600160a01b0381166000908152600360205260408120805460019290611c2190849061385a565b909155505060008281526002602052604080822080546001600160a01b03191690555183916001600160a01b038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca59190a35050565b6000908152600260205260409020546001600160a01b0316151590565b6001600160a01b0382166000908152600d602052604081205460ff161580611ccb5750600b546001600160a01b038481169116145b15611ceb578260405163961c9a4f60e01b8152600401610ad2919061351a565b6001600160a01b038316611d1d57600a54600b54611d16916001600160a01b03908116911684612039565b90506108f6565b600b54611d169084906001600160a01b031684612039565b60006118707f885d61cd569c3c85a110715a0d188c45590cf3f8a77e71714f4f0211ead7ac8c858585604051602001611855949392919061357d565b611d7a81611c79565b610eeb5760405162461bcd60e51b8152600401610ad2906136ff565b606060108054610935906138db565b60606000611db2836120f7565b60010190506000816001600160401b03811115611dd157611dd16139be565b6040519080825280601f01601f191660200182016040528015611dfb576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611e3457611e39565b611e05565b509392505050565b60006001600160e01b03198216637965db0b60e01b14806108f657506108f6826121cd565b60006108f6611e736121f2565b836122e5565b6000806000611e888585612318565b91509150611e398161235e565b60006114b0828461385a565b6118f3846323b872dd60e01b858585604051602401611ec293929190613528565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612411565b6001600160a01b038216611f1f5760405162461bcd60e51b8152600401610ad29061368f565b611f2881611c79565b15611f455760405162461bcd60e51b8152600401610ad2906136ef565b611f516000838361202e565b6001600160a01b0382166000908152600360205260408120805460019290611f7a908490613823565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038616908117909155905183927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688591a35050565b611fdf8282611251565b610da357611fec816124a0565b611ff78360206124b2565b6040516020016120089291906134c8565b60408051601f198184030181529082905262461bcd60e51b8252610ad29160040161364e565b610d1a83838361261d565b600060608061204886866126d5565b6009546040516307c0329d60e21b81529192506001600160a01b031690631f00ca749061207b90879085906004016137ae565b60006040518083038186803b15801561209357600080fd5b505afa1580156120a7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120cf9190810190612eb7565b9150816000815181106120e4576120e46139a8565b6020026020010151925050509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121365772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b8310612160576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061217e57662386f26fc10000830492506010015b6305f5e1008310612196576305f5e100830492506008015b61271083106121aa57612710830492506004015b606483106121bc576064830492506002015b600a83106108f65760010192915050565b60006001600160e01b0319821663780e9d6360e01b14806108f657506108f682612867565b6000306001600160a01b037f000000000000000000000000eb05dca1a7e0e37e364b938d989fc0273ff3bfca1614801561224b57507f000000000000000000000000000000000000000000000000000000000000000146145b1561227557507fef37907c94305110ced3db2c6640443260930e10d3da04131b27b62d6b64d0ae90565b6122e07f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f80329b427b128ca841b2d96fb8ca9afac75fe6f5795784dff6667cfdc4467fbf7f06c015bd22b4c69690933c1058878ebdfef31f9aaae40bbe86d8a09fe1b2972c6128b7565b905090565b600082826040516020016122fa92919061348f565b60405160208183030381529060405280519060200120905092915050565b60008082516041141561234f5760208301516040840151606085015160001a612343878285856128f1565b94509450505050612357565b506000905060025b9250929050565b600081600481111561237257612372613966565b141561237b5750565b600181600481111561238f5761238f613966565b14156123ad5760405162461bcd60e51b8152600401610ad29061365f565b60028160048111156123c1576123c1613966565b14156123df5760405162461bcd60e51b8152600401610ad29061367f565b60038160048111156123f3576123f3613966565b1415610eeb5760405162461bcd60e51b8152600401610ad2906136af565b6000612466826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661299e9092919063ffffffff16565b805190915015610d1a57808060200190518101906124849190612ef1565b610d1a5760405162461bcd60e51b8152600401610ad29061371f565b60606108f66001600160a01b03831660145b606060006124c183600261383b565b6124cc906002613823565b6001600160401b038111156124e3576124e36139be565b6040519080825280601f01601f19166020018201604052801561250d576020820181803683370190505b509050600360fc1b81600081518110612528576125286139a8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612557576125576139a8565b60200101906001600160f81b031916908160001a905350600061257b84600261383b565b612586906001613823565b90505b60018111156125fe576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106125ba576125ba6139a8565b1a60f81b8282815181106125d0576125d06139a8565b60200101906001600160f81b031916908160001a90535060049490941c936125f7816138c4565b9050612589565b5083156114b05760405162461bcd60e51b8152600401610ad29061366f565b6001600160a01b0383166126785761267381600680546000838152600760205260408120829055600182018355919091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0155565b61269b565b816001600160a01b0316836001600160a01b03161461269b5761269b83826129ad565b6001600160a01b0382166126b257610d1a81612a4a565b826001600160a01b0316826001600160a01b031614610d1a57610d1a8282612af9565b600a546060906001600160a01b03848116911614806127015750600a546001600160a01b038381169116145b156127cb5760408051600280825260608201835260009260208301908036833701905050600a549091506001600160a01b038581169116146127435783612750565b600a546001600160a01b03165b81600081518110612763576127636139a8565b6001600160a01b039283166020918202929092010152600a5484821691161461278c5782612799565b600a546001600160a01b03165b816001815181106127ac576127ac6139a8565b6001600160a01b039092166020928302919091019091015290506108f6565b60408051600380825260808201909252600091602082016060803683370190505090508381600081518110612802576128026139a8565b6001600160a01b039283166020918202929092010152600a54825191169082906001908110612833576128336139a8565b60200260200101906001600160a01b031690816001600160a01b03168152505082816002815181106127ac576127ac6139a8565b60006001600160e01b031982166313f2a32f60e01b148061289857506001600160e01b03198216635b5e139f60e01b145b806108f657506301ffc9a760e01b6001600160e01b03198316146108f6565b600083838346306040516020016128d29594939291906135bb565b6040516020818303038152906040528051906020012090509392505050565b6000806fa2a8918ca85bafe22016d0b997e4df60600160ff1b0383111561291e5750600090506003612995565b6000600187878787604051600081526020016040526040516129439493929190613618565b6020604051602081039080840390855afa158015612965573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661298e57600060019250925050612995565b9150600090505b94509492505050565b60606118708484600085612b3d565b600060016129ba84610fb0565b6129c4919061385a565b600083815260056020526040902054909150808214612a17576001600160a01b03841660009081526004602090815260408083208584528252808320548484528184208190558352600590915290208190555b5060009182526005602090815260408084208490556001600160a01b039094168352600481528383209183525290812055565b600654600090612a5c9060019061385a565b60008381526007602052604081205460068054939450909284908110612a8457612a846139a8565b906000526020600020015490508060068381548110612aa557612aa56139a8565b6000918252602080832090910192909255828152600790915260408082208490558582528120556006805480612add57612add613992565b6001900381819060005260206000200160009055905550505050565b6000612b0483610fb0565b6001600160a01b039093166000908152600460209081526040808320868452825280832085905593825260059052919091209190915550565b606082471015612b5f5760405162461bcd60e51b8152600401610ad2906136bf565b600080866001600160a01b03168587604051612b7b9190613455565b60006040518083038185875af1925050503d8060008114612bb8576040519150601f19603f3d011682016040523d82523d6000602084013e612bbd565b606091505b5091509150612bce87838387612bd9565b979650505050505050565b60608315612c15578251612c0e576001600160a01b0385163b612c0e5760405162461bcd60e51b8152600401610ad29061370f565b5081611870565b6118708383815115612c2a5781518083602001fd5b8060405162461bcd60e51b8152600401610ad2919061364e565b6000612c57612c5284613800565b6137e9565b90508083825260208201905082856020860282011115612c7957612c79600080fd5b60005b85811015612ca55781612c8f8882612d5f565b8452506020928301929190910190600101612c7c565b5050509392505050565b80356108f6816139de565b80516108f6816139de565b600082601f830112612cd957612cd9600080fd5b8151611870848260208601612c44565b80516108f6816139f2565b80356108f6816139fa565b80356108f681613a00565b60008083601f840112612d1f57612d1f600080fd5b5081356001600160401b03811115612d3957612d39600080fd5b60208301915083600182028301111561235757612357600080fd5b80356108f681613a10565b80516108f6816139fa565b600060208284031215612d7f57612d7f600080fd5b60006118708484612caf565b600060208284031215612da057612da0600080fd5b60006118708484612cba565b60008060008060008060a08789031215612dc857612dc8600080fd5b6000612dd48989612caf565b9650506020612de589828a01612caf565b9550506040612df689828a01612caf565b9450506060612e0789828a01612cf4565b93505060808701356001600160401b03811115612e2657612e26600080fd5b612e3289828a01612d0a565b92509250509295509295509295565b60008060408385031215612e5757612e57600080fd5b6000612e638585612caf565b9250506020612e7485828601612cf4565b9150509250929050565b60008060008060008060a08789031215612e9a57612e9a600080fd5b6000612ea68989612caf565b9650506020612de589828a01612cf4565b600060208284031215612ecc57612ecc600080fd5b81516001600160401b03811115612ee557612ee5600080fd5b61187084828501612cc5565b600060208284031215612f0657612f06600080fd5b60006118708484612ce9565b600060208284031215612f2757612f27600080fd5b60006118708484612cf4565b60008060408385031215612f4957612f49600080fd5b6000612f558585612cf4565b9250506020612e7485828601612caf565b600060208284031215612f7b57612f7b600080fd5b60006118708484612cff565b600060208284031215612f9c57612f9c600080fd5b60006118708484612d54565b600060208284031215612fbd57612fbd600080fd5b60006118708484612d5f565b6000612fd58383612fdd565b505060200190565b612fe681613871565b82525050565b6000612ff6825190565b80845260209384019383018060005b8381101561302a5781516130198882612fc9565b975060208301925050600101613005565b509495945050505050565b801515612fe6565b80612fe6565b600061304d825190565b61305b818560208601613898565b9290920192915050565b612fe68161388d565b6000613078825190565b80845260208401935061308f818560208601613898565b613098816139d4565b9093019392505050565b601881526000602082017745434453413a20696e76616c6964207369676e617475726560401b815291505b5060200190565b60208082527f537472696e67733a20686578206c656e67746820696e73756666696369656e74910190815260006130cd565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e67746800815291506130cd565b601d81526000602082017f5342543a206d696e7420746f20746865207a65726f2061646472657373000000815291506130cd565b602881526000602082017f534254456e756d657261626c653a206f776e657220696e646578206f7574206f8152676620626f756e647360c01b602082015291505b5060400190565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b602082015291506131af565b602681526000602082017f416464726573733a20696e73756666696369656e742062616c616e636520666f8152651c8818d85b1b60d21b602082015291506131af565b602681526000602082017f5342543a2061646472657373207a65726f206973206e6f7420612076616c69648152651037bbb732b960d11b602082015291506131af565b601e81526000602082017f5342543a2063616c6c6572206973206e6f7420746f6b656e206f776e65720000815291506130cd565b601981526000602082017814d0950e881d1bdad95b88185b1c9958591e481b5a5b9d1959603a1b815291506130cd565b601581526000602082017414d0950e881a5b9d985b1a59081d1bdad95b881251605a1b815291506130cd565b601d81526000602082017f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000815291506130cd565b602a81526000602082017f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b602082015291506131af565b602981526000602082017f534254456e756d657261626c653a20676c6f62616c20696e646578206f7574208152686f6620626f756e647360b81b602082015291506131af565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815291506130cd565b602f81526000602082017f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636581526e103937b632b9903337b91039b2b63360891b602082015291506131af565b60ff8116612fe6565b60006114b08284613043565b600061346d8285613043565b91506134798284613043565b64173539b7b760d91b8152915060058201611870565b61190160f01b815260020160006134a6828561303d565b6020820191506134b6828461303d565b5060200192915050565b6000816108f6565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260170160006134f48285613043565b7001034b99036b4b9b9b4b733903937b6329607d1b815260110191506118708284613043565b602081016108f68284612fdd565b606081016135368286612fdd565b6135436020830185612fdd565b611870604083018461303d565b602080825281016114b08184612fec565b602081016108f68284613035565b602081016108f6828461303d565b6080810161358b828761303d565b6135986020830186612fdd565b6135a56040830185612fdd565b6135b2606083018461303d565b95945050505050565b60a081016135c9828861303d565b6135d6602083018761303d565b6135e3604083018661303d565b6135f0606083018561303d565b610b966080830184612fdd565b6080810161360b828761303d565b613598602083018661303d565b60808101613626828761303d565b613633602083018661344c565b6135a5604083018561303d565b602081016108f68284613065565b602080825281016114b0818461306e565b602080825281016108f6816130a2565b602080825281016108f6816130d4565b602080825281016108f681613106565b602080825281016108f68161313a565b602080825281016108f68161316e565b602080825281016108f6816131b6565b602080825281016108f6816131f5565b602080825281016108f681613238565b602080825281016108f68161327b565b602080825281016108f6816132af565b602080825281016108f6816132df565b602080825281016108f68161330b565b602080825281016108f68161333f565b602080825281016108f681613386565b602080825281016108f6816133cc565b602080825281016108f681613400565b60c0810161376d828961303d565b61377a6020830188612fdd565b6137876040830187612fdd565b613794606083018661303d565b6137a16080830185612fdd565b612bce60a083018461303d565b604081016137bc828561303d565b81810360208301526118708184612fec565b60c081016137dc828961303d565b61377a602083018861303d565b60006137f460405190565b90506110ef8282613908565b60006001600160401b03821115613819576138196139be565b5060209081020190565b6000821982111561383657613836613950565b500190565b600081600019048311821515161561385557613855613950565b500290565b60008282101561386c5761386c613950565b500390565b60006001600160a01b0382166108f6565b60006108f682613871565b60006108f682613882565b60005b838110156138b357818101518382015260200161389b565b838111156118f35750506000910152565b6000816138d3576138d3613950565b506000190190565b6002810460018216806138ef57607f821691505b602082108114156139025761390261397c565b50919050565b613911826139d4565b81018181106001600160401b038211171561392e5761392e6139be565b6040525050565b600060001982141561394957613949613950565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b601f01601f191690565b6139e781613871565b8114610eeb57600080fd5b8015156139e7565b806139e7565b6001600160e01b031981166139e7565b6139e78161388256fea264697066735822122062f5e3d5fc9770a9207e0d76c7f9d1a3ae8cb5d734c185f376a6ae1cd882c82964736f6c63430008070033

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

000000000000000000000000bb4125c48e8c69b0f06e0c635dfcd0aa250fcbf900000000000000000000000000000000000000000000000000000000000001000000000000000000000000008903d8d4f4c06814d7ecb42b1258e2209d53a7d40000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ccfa6a842151f53e18a5d56edfd0177fa8c8d7f5000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f6d657461646174612e6d6173612e66696e616e63652f76312e302f677265656e2f6d61696e6e65742f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : admin (address): 0xBb4125C48e8c69b0F06E0c635dfCd0Aa250fcbF9
Arg [1] : baseTokenURI (string): https://metadata.masa.finance/v1.0/green/mainnet/
Arg [2] : soulboundIdentity (address): 0x8903D8D4F4c06814D7ecb42b1258E2209d53A7d4
Arg [3] : paymentParams (tuple):
Arg [1] : swapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : wrappedNativeToken (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [3] : stableCoin (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [4] : masaToken (address): 0x0000000000000000000000000000000000000000
Arg [5] : reserveWallet (address): 0xccfA6a842151F53e18a5D56eDfD0177fA8C8D7F5


-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000bb4125c48e8c69b0f06e0c635dfcd0aa250fcbf9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000008903d8d4f4c06814d7ecb42b1258e2209d53a7d4
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [5] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000ccfa6a842151f53e18a5d56edfd0177fa8c8d7f5
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [9] : 68747470733a2f2f6d657461646174612e6d6173612e66696e616e63652f7631
Arg [10] : 2e302f677265656e2f6d61696e6e65742f000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.