APE Price: $1.14 (+3.59%)

Contract

0xC9926ED037B9D0507e2E33141E73686564A7e2A4

Overview

APE Balance

Apechain LogoApechain LogoApechain Logo0 APE

APE Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60a0604014998572024-10-24 17:13:1527 days ago1729789995IN
 Create: Credits
0 APE0.0945032425.42069

Parent Transaction Hash Block From To
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Credits

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
Yes with 10 runs

Other Settings:
paris EvmVersion
File 1 of 34 : Credits.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {AccessControlDefaultAdminRulesUpgradeable} from "@openzeppelin/contracts-upgradeable/access/extensions/AccessControlDefaultAdminRulesUpgradeable.sol";

import {ICredits} from "./ICredits.sol";
import {IWETH} from "../../interfaces/IWETH.sol";
import {IBonusCash} from "../bonusCash/IBonusCash.sol";
import {ITickets} from "../tickets/ITickets.sol";
import {ITokenRegistry} from "../tokenRegistry/ITokenRegistry.sol";
import {ISemiFungibleSoulboundTokenUpgradeable} from "../sfst/ISemiFungibleSoulboundTokenUpgradeable.sol";
import {IPlaythroughTracker} from "../../game/playthroughTracker/IPlaythroughTracker.sol";
import {PVMath} from "../../libraries/PVMath.sol";
import {SemiFungibleSoulboundTokenSupplyUpgradeable, SemiFungibleSoulboundTokenUpgradeable} from "../sfst/SemiFungibleSoulboundTokenSupplyUpgradeable.sol";
import {ISwapExecutor} from "../../interfaces/ISwapExecutor.sol";
import {ITournamentRegistry} from "../../game/tournament/ITournamentRegistry.sol";

/**
 * @title Responsible for minting and handling credits
 *
 * @author Niftydude, Jack Chuma
 *
 * @notice This contract defines the Credits system, a core currency of the Reboot Protocol
 *
 * Credits are soulbound, non-liquid arcade credits primarily utilized for tournament entries.
 * They must be fully backed by an underlying ERC20 collateral.
 * The governance body of Reboot has the authority to modify the list of acceptable ERC20 collateral contracts.
 * Upon the creation of a credit type, a specific collateral ratio is established, setting the conversion rate between the credits and their supporting collateral.
 * When credits are spent on entry fees, they are burned, and the corresponding collateral is transferred from the Credit contract to the Protocol's treasury.
 */
contract Credits is ICredits, UUPSUpgradeable, SemiFungibleSoulboundTokenSupplyUpgradeable {
    using PVMath for uint256;
    using SafeERC20 for IERC20;

    bytes32 public constant PROTOCOL_ROLE = keccak256("PROTOCOL_ROLE");
    bytes32 public constant SWAPPER_ROLE = keccak256("SWAPPER_ROLE");
    bytes32 public constant RELAYER_ROLE = keccak256("RELAYER_ROLE");

    address public wAPE;

    IPlaythroughTracker public playthroughTracker;
    ITokenRegistry public tokenRegistry;
    ITournamentRegistry public tournamentRegistry;
    ITickets public tickets;
    IBonusCash public bonusCash;

    mapping(address => uint256) public govAllowance;
    mapping(address => uint256) public tokenPerCreditRatio;
    mapping(address => bool) public swapImplEnabled;

    constructor() {
        _disableInitializers();
    }

    function __Credits_init(
        address _governor,
        address _wape,
        IBonusCash _bonusCash,
        ITokenRegistry _tokenRegistry,
        IPlaythroughTracker _playthroughTracker,
        ITickets _tickets,
        ITournamentRegistry _tournamentRegistry
    ) public initializer {
        __AccessControlDefaultAdminRules_init(0, _governor);

        if (
            _wape == address(0) ||
            address(_bonusCash) == address(0) ||
            address(_playthroughTracker) == address(0) ||
            address(_tokenRegistry) == address(0) ||
            address(_tickets) == address(0) ||
            address(_tournamentRegistry) == address(0)
        ) {
            revert Credits__ZeroAddress();
        }

        wAPE = _wape;
        bonusCash = _bonusCash;
        playthroughTracker = _playthroughTracker;
        tokenRegistry = _tokenRegistry;
        tournamentRegistry = _tournamentRegistry;
        tickets = _tickets;
    }

    receive() external payable {}

    /**
     * @notice Governance function to configure a credit type
     *
     * @param _tokenContract Address of collateral token
     * @param _tokenPerCreditRatio amount of tokens in wei per credit - can only be set ONCE
     */
    function setCreditRatio(address _tokenContract, uint256 _tokenPerCreditRatio) external onlyRole(GOVERNOR_ROLE) {
        require(tokenRegistry.isApproved(_tokenContract), "C: InvalidToken");
        require(tokenPerCreditRatio[_tokenContract] == 0, "C: RatioAlreadySet");
        require(_tokenPerCreditRatio > 0, "C: InvalidRatio");

        tokenPerCreditRatio[_tokenContract] = _tokenPerCreditRatio;
        emit CreditTypeConfigured(_tokenContract, tokenPerCreditRatio[_tokenContract]);

        tickets.configureTicketType(_tokenContract, _tokenPerCreditRatio);
    }

    /**
     * @notice Governance function to set the bonus cash contract
     *
     * @param _bonusCash BonusCash contract address
     */
    function setBonusCash(IBonusCash _bonusCash) external onlyRole(GOVERNOR_ROLE) {
        require(address(_bonusCash) != address(0), "C: ZeroAddress");
        bonusCash = _bonusCash;
        emit BonusCashSet(address(_bonusCash));
    }

    /**
     * @notice Governance function to set the playthrough tracker contract
     *
     * @param _playthroughTracker PlaythroughTracker contract address
     */
    function setPlaythroughTracker(IPlaythroughTracker _playthroughTracker) external onlyRole(GOVERNOR_ROLE) {
        require(address(_playthroughTracker) != address(0), "C: ZeroAddress");
        playthroughTracker = _playthroughTracker;
        emit PlaythroughTrackerSet(address(_playthroughTracker));
    }

    /**
     * @notice Governance function to set the tickets contract
     *
     * @param _tickets Tickets contract address
     */
    function setTickets(ITickets _tickets) external onlyRole(GOVERNOR_ROLE) {
        require(address(_tickets) != address(0), "C: ZeroAddress");
        tickets = _tickets;
        emit TicketsSet(address(_tickets));
    }

    /**
     * @notice Governance function to set the wrapped APE contract
     *
     * @param _wape wAPE contract address
     */
    function setWape(address _wape) external onlyRole(GOVERNOR_ROLE) {
        require(_wape != address(0), "C: ZeroAddress");
        wAPE = _wape;
        emit WapeSet(_wape);
    }

    /**
     * @notice Governance function to withdraw collateral from allowance
     *
     * @param _token collateral token to withdraw
     * @param _receiver token receiver address
     * @param _amount amount to withdraw
     */
    function withdrawFromAllowance(
        address _token,
        address _receiver,
        uint256 _amount
    ) external onlyRole(GOVERNOR_ROLE) {
        require(govAllowance[_token] >= _amount, "C: InsufficientAllowance");

        govAllowance[_token] -= _amount;
        emit AllowanceWithdrawal(_token, _receiver, _amount);

        IERC20(_token).safeTransfer(_receiver, _amount);
    }

    /**
     * @notice Withdraw excess tokens not being used as collateral
     *
     * @param _token token address
     * @param _to token receiver address
     */
    function withdrawExcess(address _token, address _to) external onlyRole(GOVERNOR_ROLE) {
        uint256 _excessAmount = IERC20(_token).balanceOf(address(this)) -
            (totalSupply(uint256(uint160(_token))) * tokenPerCreditRatio[_token]);

        require(_excessAmount != 0, "C: NoExcess");

        IERC20(_token).safeTransfer(_to, _excessAmount);

        emit ExcessTokensWithdrawn(_token, _to, _excessAmount);
    }

    function swap(
        address _fromToken,
        address _toToken,
        address _account,
        uint256 _creditsRequired,
        uint256 _deadline,
        uint256 _maxAmountTokensIn,
        ISwapExecutor _swapImpl
    ) external {
        require(tournamentRegistry.isApproved(msg.sender) || hasRole(SWAPPER_ROLE, msg.sender), "C: NotApproved");
        require(swapImplEnabled[address(_swapImpl)], "S: Invalid executor");

        uint256 _finalAmountIn = _swapImpl.executeSwap(
            _fromToken,
            _toToken,
            _creditsRequired * tokenPerCreditRatio[_fromToken],
            _deadline,
            _maxAmountTokensIn
        );

        _burn(_account, uint256(uint160(_fromToken)), _finalAmountIn / tokenPerCreditRatio[_fromToken]);
        _mint(_account, uint256(uint160(_toToken)), _creditsRequired);

        uint256 _remainder = _finalAmountIn % tokenPerCreditRatio[_fromToken];

        if (_remainder > 0) {
            govAllowance[_fromToken] += _remainder;
        }

        emit CreditsSwapped(_fromToken, _toToken, _finalAmountIn, _creditsRequired);
    }

    function setSwapImplEnabled(address _swapImpl, bool _enabled) external onlyRole(GOVERNOR_ROLE) {
        swapImplEnabled[_swapImpl] = _enabled;

        emit SwapImplEnabledChanged(_swapImpl, _enabled);
    }

    /**
     * @notice Public function to purchase credits
     *
     * @param _amount Amount of credits to mint
     * @param _mintTo Address to mint credits to
     * @param _token Collateral token address
     */
    function purchaseCredits(uint256 _amount, address _mintTo, address _token, address _payFrom) external payable {
        require(tokenRegistry.isApproved(_token), "C: InvalidToken");

        _transferCollateral(_token, _payFrom, _amount * tokenPerCreditRatio[_token]);

        _mint(_mintTo, uint256(uint160(_token)), _amount);

        emit CreditsPurchased(_token, msg.sender, _mintTo, _amount);
    }

    /**
     * @notice Public function to purchase credits
     *
     * @param _collateralAmount amount of collateral to buy credits with
     * @param _mintTo address to mint credits to
     * @param _token Collateral token address
     */
    function purchaseCreditsWithGivenCollateral(
        uint256 _collateralAmount,
        address _mintTo,
        address _token,
        address _payFrom
    ) external payable returns (uint256 _amountCredits) {
        require(tokenRegistry.isApproved(_token), "C: InvalidToken");

        _transferCollateral(_token, _payFrom, _collateralAmount);

        uint256 _ratio = tokenPerCreditRatio[_token];

        _amountCredits = _collateralAmount / _ratio;

        uint256 _remainder = _collateralAmount - _amountCredits * _ratio;

        if (_remainder > 0) {
            govAllowance[_token] += _remainder;
        }

        _mint(_mintTo, uint256(uint160(_token)), _amountCredits);

        emit CreditsPurchased(_token, msg.sender, _mintTo, _amountCredits);
    }

    /**
     * @notice Public function to batch purchase credits
     *
     * @param _amount amount of credits to mint
     * @param _mintTo address to mint credits to
     * @param _token Collateral token address
     */
    function purchaseCreditsBatch(
        uint256[] calldata _amount,
        address[] calldata _mintTo,
        address _token,
        address _payFrom
    ) external payable {
        require(tokenRegistry.isApproved(_token), "C: InvalidToken");

        uint256 _totalCollateral;
        uint256 _ratio = tokenPerCreditRatio[_token];

        for (uint256 i; i < _amount.length; i++) {
            _totalCollateral += _amount[i] * _ratio;
            _mint(_mintTo[i], uint256(uint160(_token)), _amount[i]);

            emit CreditsPurchased(_token, msg.sender, _mintTo[i], _amount[i]);
        }

        _transferCollateral(_token, _payFrom, _totalCollateral);
    }

    /**
     * @notice Protocol function for minting credits (payouts)
     *
     * @param _token Collateral token address
     * @param _players Array of player addresses
     * @param _amounts Array of credit amounts to mint
     */
    function mintBatch(address _token, address[] memory _players, uint256[] memory _amounts) external {
        require(tournamentRegistry.isApproved(msg.sender) || hasRole(PROTOCOL_ROLE, msg.sender), "C: NoPermission");

        require(_players.length == _amounts.length, "C: InvalidLength");
        require(tokenRegistry.isApproved(_token), "C: InvalidToken");
        require(_players.length > 0, "C: ZeroLength");

        uint256 _collateralNeeded;
        uint256 _ratio = tokenPerCreditRatio[_token];

        for (uint256 i; i < _players.length; i++) {
            if (_amounts[i] == 0) continue;

            _collateralNeeded += _amounts[i] * _ratio;

            _mint(_players[i], uint256(uint160(_token)), _amounts[i]);
        }

        if (_collateralNeeded > 0) {
            IERC20(_token).safeTransferFrom(msg.sender, address(this), _collateralNeeded);
        }
    }

    /**
     * @notice Burn extractable credits and release collateral tokens to configured target
     *
     * @param _from address to burn credits from
     * @param _token collateral token address
     * @param _amount amount of credits to mint
     */
    function release(address _from, address _token, uint256 _amount) external returns (uint256 _releasedAmount) {
        require(tournamentRegistry.isApproved(msg.sender) || hasRole(PROTOCOL_ROLE, msg.sender), "C: NoPermission");
        require(!playthroughTracker.isLocked(_from, _token), "C: CreditLocked");

        _burn(_from, uint256(uint160(_token)), _amount);

        _releasedAmount = _amount * tokenPerCreditRatio[_token];

        emit CreditsReleased(_from, msg.sender, _token, _amount);

        IERC20(_token).safeTransfer(msg.sender, _releasedAmount);
    }

    function balanceOf(address account, address token) public view returns (uint256) {
        return balanceOf(account, uint256(uint160(token)));
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view override(SemiFungibleSoulboundTokenUpgradeable, IERC165) returns (bool) {
        return
            interfaceId == type(ISemiFungibleSoulboundTokenUpgradeable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function _transferCollateral(address _token, address _payFrom, uint256 _amount) private {
        require(_payFrom == msg.sender || hasRole(RELAYER_ROLE, msg.sender), "C: NoPermission");

        if (_token == wAPE && msg.value == _amount) {
            IWETH(wAPE).deposit{value: msg.value}();
        } else if (msg.value > 0) {
            revert("C: InvalidPurchase");
        } else {
            IERC20(_token).safeTransferFrom(_payFrom, address(this), _amount);
        }
    }

    function _authorizeUpgrade(address newImplementation) internal override onlyRole(GOVERNOR_ROLE) {}
}

File 2 of 34 : AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)

pragma solidity ^0.8.20;

import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";
import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol";
import {ERC165Upgradeable} from "../utils/introspection/ERC165Upgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.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:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControl, ERC165Upgradeable {
    struct RoleData {
        mapping(address account => bool) hasRole;
        bytes32 adminRole;
    }

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;


    /// @custom:storage-location erc7201:openzeppelin.storage.AccessControl
    struct AccessControlStorage {
        mapping(bytes32 role => RoleData) _roles;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.AccessControl")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant AccessControlStorageLocation = 0x02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800;

    function _getAccessControlStorage() private pure returns (AccessControlStorage storage $) {
        assembly {
            $.slot := AccessControlStorageLocation
        }
    }

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

    function __AccessControl_init() internal onlyInitializing {
    }

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

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

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

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

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

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

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

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

        _revokeRole(role, callerConfirmation);
    }

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

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

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

File 3 of 34 : AccessControlDefaultAdminRulesUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/extensions/AccessControlDefaultAdminRules.sol)

pragma solidity ^0.8.20;

import {IAccessControlDefaultAdminRules} from "@openzeppelin/contracts/access/extensions/IAccessControlDefaultAdminRules.sol";
import {AccessControlUpgradeable} from "../AccessControlUpgradeable.sol";
import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";
import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol";
import {Math} from "@openzeppelin/contracts/utils/math/Math.sol";
import {IERC5313} from "@openzeppelin/contracts/interfaces/IERC5313.sol";
import {Initializable} from "../../proxy/utils/Initializable.sol";

/**
 * @dev Extension of {AccessControl} that allows specifying special rules to manage
 * the `DEFAULT_ADMIN_ROLE` holder, which is a sensitive role with special permissions
 * over other roles that may potentially have privileged rights in the system.
 *
 * If a specific role doesn't have an admin role assigned, the holder of the
 * `DEFAULT_ADMIN_ROLE` will have the ability to grant it and revoke it.
 *
 * This contract implements the following risk mitigations on top of {AccessControl}:
 *
 * * Only one account holds the `DEFAULT_ADMIN_ROLE` since deployment until it's potentially renounced.
 * * Enforces a 2-step process to transfer the `DEFAULT_ADMIN_ROLE` to another account.
 * * Enforces a configurable delay between the two steps, with the ability to cancel before the transfer is accepted.
 * * The delay can be changed by scheduling, see {changeDefaultAdminDelay}.
 * * It is not possible to use another role to manage the `DEFAULT_ADMIN_ROLE`.
 *
 * Example usage:
 *
 * ```solidity
 * contract MyToken is AccessControlDefaultAdminRules {
 *   constructor() AccessControlDefaultAdminRules(
 *     3 days,
 *     msg.sender // Explicit initial `DEFAULT_ADMIN_ROLE` holder
 *    ) {}
 * }
 * ```
 */
abstract contract AccessControlDefaultAdminRulesUpgradeable is Initializable, IAccessControlDefaultAdminRules, IERC5313, AccessControlUpgradeable {
    /// @custom:storage-location erc7201:openzeppelin.storage.AccessControlDefaultAdminRules
    struct AccessControlDefaultAdminRulesStorage {
        // pending admin pair read/written together frequently
        address _pendingDefaultAdmin;
        uint48 _pendingDefaultAdminSchedule; // 0 == unset

        uint48 _currentDelay;
        address _currentDefaultAdmin;

        // pending delay pair read/written together frequently
        uint48 _pendingDelay;
        uint48 _pendingDelaySchedule; // 0 == unset
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.AccessControlDefaultAdminRules")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant AccessControlDefaultAdminRulesStorageLocation = 0xeef3dac4538c82c8ace4063ab0acd2d15cdb5883aa1dff7c2673abb3d8698400;

    function _getAccessControlDefaultAdminRulesStorage() private pure returns (AccessControlDefaultAdminRulesStorage storage $) {
        assembly {
            $.slot := AccessControlDefaultAdminRulesStorageLocation
        }
    }

    /**
     * @dev Sets the initial values for {defaultAdminDelay} and {defaultAdmin} address.
     */
    function __AccessControlDefaultAdminRules_init(uint48 initialDelay, address initialDefaultAdmin) internal onlyInitializing {
        __AccessControlDefaultAdminRules_init_unchained(initialDelay, initialDefaultAdmin);
    }

    function __AccessControlDefaultAdminRules_init_unchained(uint48 initialDelay, address initialDefaultAdmin) internal onlyInitializing {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        if (initialDefaultAdmin == address(0)) {
            revert AccessControlInvalidDefaultAdmin(address(0));
        }
        $._currentDelay = initialDelay;
        _grantRole(DEFAULT_ADMIN_ROLE, initialDefaultAdmin);
    }

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

    /**
     * @dev See {IERC5313-owner}.
     */
    function owner() public view virtual returns (address) {
        return defaultAdmin();
    }

    ///
    /// Override AccessControl role management
    ///

    /**
     * @dev See {AccessControl-grantRole}. Reverts for `DEFAULT_ADMIN_ROLE`.
     */
    function grantRole(bytes32 role, address account) public virtual override(AccessControlUpgradeable, IAccessControl) {
        if (role == DEFAULT_ADMIN_ROLE) {
            revert AccessControlEnforcedDefaultAdminRules();
        }
        super.grantRole(role, account);
    }

    /**
     * @dev See {AccessControl-revokeRole}. Reverts for `DEFAULT_ADMIN_ROLE`.
     */
    function revokeRole(bytes32 role, address account) public virtual override(AccessControlUpgradeable, IAccessControl) {
        if (role == DEFAULT_ADMIN_ROLE) {
            revert AccessControlEnforcedDefaultAdminRules();
        }
        super.revokeRole(role, account);
    }

    /**
     * @dev See {AccessControl-renounceRole}.
     *
     * For the `DEFAULT_ADMIN_ROLE`, it only allows renouncing in two steps by first calling
     * {beginDefaultAdminTransfer} to the `address(0)`, so it's required that the {pendingDefaultAdmin} schedule
     * has also passed when calling this function.
     *
     * After its execution, it will not be possible to call `onlyRole(DEFAULT_ADMIN_ROLE)` functions.
     *
     * NOTE: Renouncing `DEFAULT_ADMIN_ROLE` will leave the contract without a {defaultAdmin},
     * thereby disabling any functionality that is only available for it, and the possibility of reassigning a
     * non-administrated role.
     */
    function renounceRole(bytes32 role, address account) public virtual override(AccessControlUpgradeable, IAccessControl) {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        if (role == DEFAULT_ADMIN_ROLE && account == defaultAdmin()) {
            (address newDefaultAdmin, uint48 schedule) = pendingDefaultAdmin();
            if (newDefaultAdmin != address(0) || !_isScheduleSet(schedule) || !_hasSchedulePassed(schedule)) {
                revert AccessControlEnforcedDefaultAdminDelay(schedule);
            }
            delete $._pendingDefaultAdminSchedule;
        }
        super.renounceRole(role, account);
    }

    /**
     * @dev See {AccessControl-_grantRole}.
     *
     * For `DEFAULT_ADMIN_ROLE`, it only allows granting if there isn't already a {defaultAdmin} or if the
     * role has been previously renounced.
     *
     * NOTE: Exposing this function through another mechanism may make the `DEFAULT_ADMIN_ROLE`
     * assignable again. Make sure to guarantee this is the expected behavior in your implementation.
     */
    function _grantRole(bytes32 role, address account) internal virtual override returns (bool) {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        if (role == DEFAULT_ADMIN_ROLE) {
            if (defaultAdmin() != address(0)) {
                revert AccessControlEnforcedDefaultAdminRules();
            }
            $._currentDefaultAdmin = account;
        }
        return super._grantRole(role, account);
    }

    /**
     * @dev See {AccessControl-_revokeRole}.
     */
    function _revokeRole(bytes32 role, address account) internal virtual override returns (bool) {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        if (role == DEFAULT_ADMIN_ROLE && account == defaultAdmin()) {
            delete $._currentDefaultAdmin;
        }
        return super._revokeRole(role, account);
    }

    /**
     * @dev See {AccessControl-_setRoleAdmin}. Reverts for `DEFAULT_ADMIN_ROLE`.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual override {
        if (role == DEFAULT_ADMIN_ROLE) {
            revert AccessControlEnforcedDefaultAdminRules();
        }
        super._setRoleAdmin(role, adminRole);
    }

    ///
    /// AccessControlDefaultAdminRules accessors
    ///

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function defaultAdmin() public view virtual returns (address) {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        return $._currentDefaultAdmin;
    }

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function pendingDefaultAdmin() public view virtual returns (address newAdmin, uint48 schedule) {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        return ($._pendingDefaultAdmin, $._pendingDefaultAdminSchedule);
    }

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function defaultAdminDelay() public view virtual returns (uint48) {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        uint48 schedule = $._pendingDelaySchedule;
        return (_isScheduleSet(schedule) && _hasSchedulePassed(schedule)) ? $._pendingDelay : $._currentDelay;
    }

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function pendingDefaultAdminDelay() public view virtual returns (uint48 newDelay, uint48 schedule) {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        schedule = $._pendingDelaySchedule;
        return (_isScheduleSet(schedule) && !_hasSchedulePassed(schedule)) ? ($._pendingDelay, schedule) : (0, 0);
    }

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function defaultAdminDelayIncreaseWait() public view virtual returns (uint48) {
        return 5 days;
    }

    ///
    /// AccessControlDefaultAdminRules public and internal setters for defaultAdmin/pendingDefaultAdmin
    ///

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function beginDefaultAdminTransfer(address newAdmin) public virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _beginDefaultAdminTransfer(newAdmin);
    }

    /**
     * @dev See {beginDefaultAdminTransfer}.
     *
     * Internal function without access restriction.
     */
    function _beginDefaultAdminTransfer(address newAdmin) internal virtual {
        uint48 newSchedule = SafeCast.toUint48(block.timestamp) + defaultAdminDelay();
        _setPendingDefaultAdmin(newAdmin, newSchedule);
        emit DefaultAdminTransferScheduled(newAdmin, newSchedule);
    }

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function cancelDefaultAdminTransfer() public virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _cancelDefaultAdminTransfer();
    }

    /**
     * @dev See {cancelDefaultAdminTransfer}.
     *
     * Internal function without access restriction.
     */
    function _cancelDefaultAdminTransfer() internal virtual {
        _setPendingDefaultAdmin(address(0), 0);
    }

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function acceptDefaultAdminTransfer() public virtual {
        (address newDefaultAdmin, ) = pendingDefaultAdmin();
        if (_msgSender() != newDefaultAdmin) {
            // Enforce newDefaultAdmin explicit acceptance.
            revert AccessControlInvalidDefaultAdmin(_msgSender());
        }
        _acceptDefaultAdminTransfer();
    }

    /**
     * @dev See {acceptDefaultAdminTransfer}.
     *
     * Internal function without access restriction.
     */
    function _acceptDefaultAdminTransfer() internal virtual {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        (address newAdmin, uint48 schedule) = pendingDefaultAdmin();
        if (!_isScheduleSet(schedule) || !_hasSchedulePassed(schedule)) {
            revert AccessControlEnforcedDefaultAdminDelay(schedule);
        }
        _revokeRole(DEFAULT_ADMIN_ROLE, defaultAdmin());
        _grantRole(DEFAULT_ADMIN_ROLE, newAdmin);
        delete $._pendingDefaultAdmin;
        delete $._pendingDefaultAdminSchedule;
    }

    ///
    /// AccessControlDefaultAdminRules public and internal setters for defaultAdminDelay/pendingDefaultAdminDelay
    ///

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function changeDefaultAdminDelay(uint48 newDelay) public virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _changeDefaultAdminDelay(newDelay);
    }

    /**
     * @dev See {changeDefaultAdminDelay}.
     *
     * Internal function without access restriction.
     */
    function _changeDefaultAdminDelay(uint48 newDelay) internal virtual {
        uint48 newSchedule = SafeCast.toUint48(block.timestamp) + _delayChangeWait(newDelay);
        _setPendingDelay(newDelay, newSchedule);
        emit DefaultAdminDelayChangeScheduled(newDelay, newSchedule);
    }

    /**
     * @inheritdoc IAccessControlDefaultAdminRules
     */
    function rollbackDefaultAdminDelay() public virtual onlyRole(DEFAULT_ADMIN_ROLE) {
        _rollbackDefaultAdminDelay();
    }

    /**
     * @dev See {rollbackDefaultAdminDelay}.
     *
     * Internal function without access restriction.
     */
    function _rollbackDefaultAdminDelay() internal virtual {
        _setPendingDelay(0, 0);
    }

    /**
     * @dev Returns the amount of seconds to wait after the `newDelay` will
     * become the new {defaultAdminDelay}.
     *
     * The value returned guarantees that if the delay is reduced, it will go into effect
     * after a wait that honors the previously set delay.
     *
     * See {defaultAdminDelayIncreaseWait}.
     */
    function _delayChangeWait(uint48 newDelay) internal view virtual returns (uint48) {
        uint48 currentDelay = defaultAdminDelay();

        // When increasing the delay, we schedule the delay change to occur after a period of "new delay" has passed, up
        // to a maximum given by defaultAdminDelayIncreaseWait, by default 5 days. For example, if increasing from 1 day
        // to 3 days, the new delay will come into effect after 3 days. If increasing from 1 day to 10 days, the new
        // delay will come into effect after 5 days. The 5 day wait period is intended to be able to fix an error like
        // using milliseconds instead of seconds.
        //
        // When decreasing the delay, we wait the difference between "current delay" and "new delay". This guarantees
        // that an admin transfer cannot be made faster than "current delay" at the time the delay change is scheduled.
        // For example, if decreasing from 10 days to 3 days, the new delay will come into effect after 7 days.
        return
            newDelay > currentDelay
                ? uint48(Math.min(newDelay, defaultAdminDelayIncreaseWait())) // no need to safecast, both inputs are uint48
                : currentDelay - newDelay;
    }

    ///
    /// Private setters
    ///

    /**
     * @dev Setter of the tuple for pending admin and its schedule.
     *
     * May emit a DefaultAdminTransferCanceled event.
     */
    function _setPendingDefaultAdmin(address newAdmin, uint48 newSchedule) private {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        (, uint48 oldSchedule) = pendingDefaultAdmin();

        $._pendingDefaultAdmin = newAdmin;
        $._pendingDefaultAdminSchedule = newSchedule;

        // An `oldSchedule` from `pendingDefaultAdmin()` is only set if it hasn't been accepted.
        if (_isScheduleSet(oldSchedule)) {
            // Emit for implicit cancellations when another default admin was scheduled.
            emit DefaultAdminTransferCanceled();
        }
    }

    /**
     * @dev Setter of the tuple for pending delay and its schedule.
     *
     * May emit a DefaultAdminDelayChangeCanceled event.
     */
    function _setPendingDelay(uint48 newDelay, uint48 newSchedule) private {
        AccessControlDefaultAdminRulesStorage storage $ = _getAccessControlDefaultAdminRulesStorage();
        uint48 oldSchedule = $._pendingDelaySchedule;

        if (_isScheduleSet(oldSchedule)) {
            if (_hasSchedulePassed(oldSchedule)) {
                // Materialize a virtual delay
                $._currentDelay = $._pendingDelay;
            } else {
                // Emit for implicit cancellations when another delay was scheduled.
                emit DefaultAdminDelayChangeCanceled();
            }
        }

        $._pendingDelay = newDelay;
        $._pendingDelaySchedule = newSchedule;
    }

    ///
    /// Private helpers
    ///

    /**
     * @dev Defines if an `schedule` is considered set. For consistency purposes.
     */
    function _isScheduleSet(uint48 schedule) private pure returns (bool) {
        return schedule != 0;
    }

    /**
     * @dev Defines if an `schedule` is considered passed. For consistency purposes.
     */
    function _hasSchedulePassed(uint48 schedule) private view returns (bool) {
        return schedule < block.timestamp;
    }
}

File 4 of 34 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Storage of the initializable contract.
     *
     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
     * when using with upgradeable contracts.
     *
     * @custom:storage-location erc7201:openzeppelin.storage.Initializable
     */
    struct InitializableStorage {
        /**
         * @dev Indicates that the contract has been initialized.
         */
        uint64 _initialized;
        /**
         * @dev Indicates that the contract is in the process of being initialized.
         */
        bool _initializing;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;

    /**
     * @dev The contract is already initialized.
     */
    error InvalidInitialization();

    /**
     * @dev The contract is not initializing.
     */
    error NotInitializing();

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint64 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
     * production.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        // Cache values to avoid duplicated sloads
        bool isTopLevelCall = !$._initializing;
        uint64 initialized = $._initialized;

        // Allowed calls:
        // - initialSetup: the contract is not in the initializing state and no previous version was
        //                 initialized
        // - construction: the contract is initialized at version 1 (no reininitialization) and the
        //                 current contract is just being deployed
        bool initialSetup = initialized == 0 && isTopLevelCall;
        bool construction = initialized == 1 && address(this).code.length == 0;

        if (!initialSetup && !construction) {
            revert InvalidInitialization();
        }
        $._initialized = 1;
        if (isTopLevelCall) {
            $._initializing = true;
        }
        _;
        if (isTopLevelCall) {
            $._initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint64 version) {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing || $._initialized >= version) {
            revert InvalidInitialization();
        }
        $._initialized = version;
        $._initializing = true;
        _;
        $._initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        _checkInitializing();
        _;
    }

    /**
     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
     */
    function _checkInitializing() internal view virtual {
        if (!_isInitializing()) {
            revert NotInitializing();
        }
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing) {
            revert InvalidInitialization();
        }
        if ($._initialized != type(uint64).max) {
            $._initialized = type(uint64).max;
            emit Initialized(type(uint64).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint64) {
        return _getInitializableStorage()._initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _getInitializableStorage()._initializing;
    }

    /**
     * @dev Returns a pointer to the storage namespace.
     */
    // solhint-disable-next-line var-name-mixedcase
    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
        assembly {
            $.slot := INITIALIZABLE_STORAGE
        }
    }
}

File 5 of 34 : UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol)

pragma solidity ^0.8.20;

import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol";
import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol";
import {Initializable} from "./Initializable.sol";

/**
 * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
 * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
 *
 * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
 * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
 * `UUPSUpgradeable` with a custom implementation of upgrades.
 *
 * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
 */
abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable
    address private immutable __self = address(this);

    /**
     * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`
     * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,
     * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.
     * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must
     * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function
     * during an upgrade.
     */
    string public constant UPGRADE_INTERFACE_VERSION = "5.0.0";

    /**
     * @dev The call is from an unauthorized context.
     */
    error UUPSUnauthorizedCallContext();

    /**
     * @dev The storage `slot` is unsupported as a UUID.
     */
    error UUPSUnsupportedProxiableUUID(bytes32 slot);

    /**
     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is
     * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
     * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
     * fail.
     */
    modifier onlyProxy() {
        _checkProxy();
        _;
    }

    /**
     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be
     * callable on the implementing contract but not through proxies.
     */
    modifier notDelegated() {
        _checkNotDelegated();
        _;
    }

    function __UUPSUpgradeable_init() internal onlyInitializing {
    }

    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
     */
    function proxiableUUID() external view virtual notDelegated returns (bytes32) {
        return ERC1967Utils.IMPLEMENTATION_SLOT;
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
     * encoded in `data`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     *
     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, data);
    }

    /**
     * @dev Reverts if the execution is not performed via delegatecall or the execution
     * context is not of a proxy with an ERC1967-compliant implementation pointing to self.
     * See {_onlyProxy}.
     */
    function _checkProxy() internal view virtual {
        if (
            address(this) == __self || // Must be called through delegatecall
            ERC1967Utils.getImplementation() != __self // Must be called through an active proxy
        ) {
            revert UUPSUnauthorizedCallContext();
        }
    }

    /**
     * @dev Reverts if the execution is performed via delegatecall.
     * See {notDelegated}.
     */
    function _checkNotDelegated() internal view virtual {
        if (address(this) != __self) {
            // Must not be called through delegatecall
            revert UUPSUnauthorizedCallContext();
        }
    }

    /**
     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
     * {upgradeToAndCall}.
     *
     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
     *
     * ```solidity
     * function _authorizeUpgrade(address) internal onlyOwner {}
     * ```
     */
    function _authorizeUpgrade(address newImplementation) internal virtual;

    /**
     * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.
     *
     * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value
     * is expected to be the implementation slot in ERC1967.
     *
     * Emits an {IERC1967-Upgraded} event.
     */
    function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {
        try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
            if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {
                revert UUPSUnsupportedProxiableUUID(slot);
            }
            ERC1967Utils.upgradeToAndCall(newImplementation, data);
        } catch {
            // The implementation is not UUPS
            revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);
        }
    }
}

File 6 of 34 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

File 7 of 34 : ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {Initializable} from "../../proxy/utils/Initializable.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);
 * }
 * ```
 */
abstract contract ERC165Upgradeable is Initializable, IERC165 {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 8 of 34 : IAccessControlDefaultAdminRules.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/extensions/IAccessControlDefaultAdminRules.sol)

pragma solidity ^0.8.20;

import {IAccessControl} from "../IAccessControl.sol";

/**
 * @dev External interface of AccessControlDefaultAdminRules declared to support ERC165 detection.
 */
interface IAccessControlDefaultAdminRules is IAccessControl {
    /**
     * @dev The new default admin is not a valid default admin.
     */
    error AccessControlInvalidDefaultAdmin(address defaultAdmin);

    /**
     * @dev At least one of the following rules was violated:
     *
     * - The `DEFAULT_ADMIN_ROLE` must only be managed by itself.
     * - The `DEFAULT_ADMIN_ROLE` must only be held by one account at the time.
     * - Any `DEFAULT_ADMIN_ROLE` transfer must be in two delayed steps.
     */
    error AccessControlEnforcedDefaultAdminRules();

    /**
     * @dev The delay for transferring the default admin delay is enforced and
     * the operation must wait until `schedule`.
     *
     * NOTE: `schedule` can be 0 indicating there's no transfer scheduled.
     */
    error AccessControlEnforcedDefaultAdminDelay(uint48 schedule);

    /**
     * @dev Emitted when a {defaultAdmin} transfer is started, setting `newAdmin` as the next
     * address to become the {defaultAdmin} by calling {acceptDefaultAdminTransfer} only after `acceptSchedule`
     * passes.
     */
    event DefaultAdminTransferScheduled(address indexed newAdmin, uint48 acceptSchedule);

    /**
     * @dev Emitted when a {pendingDefaultAdmin} is reset if it was never accepted, regardless of its schedule.
     */
    event DefaultAdminTransferCanceled();

    /**
     * @dev Emitted when a {defaultAdminDelay} change is started, setting `newDelay` as the next
     * delay to be applied between default admin transfer after `effectSchedule` has passed.
     */
    event DefaultAdminDelayChangeScheduled(uint48 newDelay, uint48 effectSchedule);

    /**
     * @dev Emitted when a {pendingDefaultAdminDelay} is reset if its schedule didn't pass.
     */
    event DefaultAdminDelayChangeCanceled();

    /**
     * @dev Returns the address of the current `DEFAULT_ADMIN_ROLE` holder.
     */
    function defaultAdmin() external view returns (address);

    /**
     * @dev Returns a tuple of a `newAdmin` and an accept schedule.
     *
     * After the `schedule` passes, the `newAdmin` will be able to accept the {defaultAdmin} role
     * by calling {acceptDefaultAdminTransfer}, completing the role transfer.
     *
     * A zero value only in `acceptSchedule` indicates no pending admin transfer.
     *
     * NOTE: A zero address `newAdmin` means that {defaultAdmin} is being renounced.
     */
    function pendingDefaultAdmin() external view returns (address newAdmin, uint48 acceptSchedule);

    /**
     * @dev Returns the delay required to schedule the acceptance of a {defaultAdmin} transfer started.
     *
     * This delay will be added to the current timestamp when calling {beginDefaultAdminTransfer} to set
     * the acceptance schedule.
     *
     * NOTE: If a delay change has been scheduled, it will take effect as soon as the schedule passes, making this
     * function returns the new delay. See {changeDefaultAdminDelay}.
     */
    function defaultAdminDelay() external view returns (uint48);

    /**
     * @dev Returns a tuple of `newDelay` and an effect schedule.
     *
     * After the `schedule` passes, the `newDelay` will get into effect immediately for every
     * new {defaultAdmin} transfer started with {beginDefaultAdminTransfer}.
     *
     * A zero value only in `effectSchedule` indicates no pending delay change.
     *
     * NOTE: A zero value only for `newDelay` means that the next {defaultAdminDelay}
     * will be zero after the effect schedule.
     */
    function pendingDefaultAdminDelay() external view returns (uint48 newDelay, uint48 effectSchedule);

    /**
     * @dev Starts a {defaultAdmin} transfer by setting a {pendingDefaultAdmin} scheduled for acceptance
     * after the current timestamp plus a {defaultAdminDelay}.
     *
     * Requirements:
     *
     * - Only can be called by the current {defaultAdmin}.
     *
     * Emits a DefaultAdminRoleChangeStarted event.
     */
    function beginDefaultAdminTransfer(address newAdmin) external;

    /**
     * @dev Cancels a {defaultAdmin} transfer previously started with {beginDefaultAdminTransfer}.
     *
     * A {pendingDefaultAdmin} not yet accepted can also be cancelled with this function.
     *
     * Requirements:
     *
     * - Only can be called by the current {defaultAdmin}.
     *
     * May emit a DefaultAdminTransferCanceled event.
     */
    function cancelDefaultAdminTransfer() external;

    /**
     * @dev Completes a {defaultAdmin} transfer previously started with {beginDefaultAdminTransfer}.
     *
     * After calling the function:
     *
     * - `DEFAULT_ADMIN_ROLE` should be granted to the caller.
     * - `DEFAULT_ADMIN_ROLE` should be revoked from the previous holder.
     * - {pendingDefaultAdmin} should be reset to zero values.
     *
     * Requirements:
     *
     * - Only can be called by the {pendingDefaultAdmin}'s `newAdmin`.
     * - The {pendingDefaultAdmin}'s `acceptSchedule` should've passed.
     */
    function acceptDefaultAdminTransfer() external;

    /**
     * @dev Initiates a {defaultAdminDelay} update by setting a {pendingDefaultAdminDelay} scheduled for getting
     * into effect after the current timestamp plus a {defaultAdminDelay}.
     *
     * This function guarantees that any call to {beginDefaultAdminTransfer} done between the timestamp this
     * method is called and the {pendingDefaultAdminDelay} effect schedule will use the current {defaultAdminDelay}
     * set before calling.
     *
     * The {pendingDefaultAdminDelay}'s effect schedule is defined in a way that waiting until the schedule and then
     * calling {beginDefaultAdminTransfer} with the new delay will take at least the same as another {defaultAdmin}
     * complete transfer (including acceptance).
     *
     * The schedule is designed for two scenarios:
     *
     * - When the delay is changed for a larger one the schedule is `block.timestamp + newDelay` capped by
     * {defaultAdminDelayIncreaseWait}.
     * - When the delay is changed for a shorter one, the schedule is `block.timestamp + (current delay - new delay)`.
     *
     * A {pendingDefaultAdminDelay} that never got into effect will be canceled in favor of a new scheduled change.
     *
     * Requirements:
     *
     * - Only can be called by the current {defaultAdmin}.
     *
     * Emits a DefaultAdminDelayChangeScheduled event and may emit a DefaultAdminDelayChangeCanceled event.
     */
    function changeDefaultAdminDelay(uint48 newDelay) external;

    /**
     * @dev Cancels a scheduled {defaultAdminDelay} change.
     *
     * Requirements:
     *
     * - Only can be called by the current {defaultAdmin}.
     *
     * May emit a DefaultAdminDelayChangeCanceled event.
     */
    function rollbackDefaultAdminDelay() external;

    /**
     * @dev Maximum time in seconds for an increase to {defaultAdminDelay} (that is scheduled using {changeDefaultAdminDelay})
     * to take effect. Default to 5 days.
     *
     * When the {defaultAdminDelay} is scheduled to be increased, it goes into effect after the new delay has passed with
     * the purpose of giving enough time for reverting any accidental change (i.e. using milliseconds instead of seconds)
     * that may lock the contract. However, to avoid excessive schedules, the wait is capped by this function and it can
     * be overrode for a custom {defaultAdminDelay} increase scheduling.
     *
     * IMPORTANT: Make sure to add a reasonable amount of time while overriding this value, otherwise,
     * there's a risk of setting a high new delay that goes into effect almost immediately without the
     * possibility of human intervention in the case of an input error (eg. set milliseconds instead of seconds).
     */
    function defaultAdminDelayIncreaseWait() external view returns (uint48);
}

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

File 10 of 34 : draft-IERC1822.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol)

pragma solidity ^0.8.20;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822Proxiable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}

File 11 of 34 : IERC5313.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5313.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface for the Light Contract Ownership Standard.
 *
 * A standardized minimal interface required to identify an account that controls a contract
 */
interface IERC5313 {
    /**
     * @dev Gets the address of the owner.
     */
    function owner() external view returns (address);
}

File 12 of 34 : IBeacon.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {UpgradeableBeacon} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

File 13 of 34 : ERC1967Utils.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)

pragma solidity ^0.8.20;

import {IBeacon} from "../beacon/IBeacon.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 */
library ERC1967Utils {
    // We re-declare ERC-1967 events here because they can't be used directly from IERC1967.
    // This will be fixed in Solidity 0.8.21. At that point we should remove these events.
    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Emitted when the beacon is changed.
     */
    event BeaconUpgraded(address indexed beacon);

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev The `implementation` of the proxy is invalid.
     */
    error ERC1967InvalidImplementation(address implementation);

    /**
     * @dev The `admin` of the proxy is invalid.
     */
    error ERC1967InvalidAdmin(address admin);

    /**
     * @dev The `beacon` of the proxy is invalid.
     */
    error ERC1967InvalidBeacon(address beacon);

    /**
     * @dev An upgrade function sees `msg.value > 0` that may be lost.
     */
    error ERC1967NonPayable();

    /**
     * @dev Returns the current implementation address.
     */
    function getImplementation() internal view returns (address) {
        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        if (newImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(newImplementation);
        }
        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Performs implementation upgrade with additional setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);

        if (data.length > 0) {
            Address.functionDelegateCall(newImplementation, data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Returns the current admin.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using
     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
     */
    function getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        if (newAdmin == address(0)) {
            revert ERC1967InvalidAdmin(address(0));
        }
        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {IERC1967-AdminChanged} event.
     */
    function changeAdmin(address newAdmin) internal {
        emit AdminChanged(getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Returns the current beacon.
     */
    function getBeacon() internal view returns (address) {
        return StorageSlot.getAddressSlot(BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        if (newBeacon.code.length == 0) {
            revert ERC1967InvalidBeacon(newBeacon);
        }

        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;

        address beaconImplementation = IBeacon(newBeacon).implementation();
        if (beaconImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(beaconImplementation);
        }
    }

    /**
     * @dev Change the beacon and trigger a setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-BeaconUpgraded} event.
     *
     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
     * efficiency.
     */
    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);

        if (data.length > 0) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
     * if an upgrade doesn't perform an initialization call.
     */
    function _checkNonPayable() private {
        if (msg.value > 0) {
            revert ERC1967NonPayable();
        }
    }
}

File 14 of 34 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
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].
     *
     * CAUTION: See Security Considerations above.
     */
    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);
}

File 15 of 34 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 16 of 34 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../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;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @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);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 17 of 34 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

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

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

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 18 of 34 : Arrays.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Arrays.sol)

pragma solidity ^0.8.20;

import {StorageSlot} from "./StorageSlot.sol";
import {Math} from "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    using StorageSlot for bytes32;

    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        uint256 low = 0;
        uint256 high = array.length;

        if (high == 0) {
            return 0;
        }

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds towards zero (it does integer division with truncation).
            if (unsafeAccess(array, mid).value > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && unsafeAccess(array, low - 1).value == element) {
            return low - 1;
        } else {
            return low;
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getAddressSlot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getBytes32Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
        bytes32 slot;
        // We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
        // following https://docs.soliditylang.org/en/v0.8.20/internals/layout_in_storage.html#mappings-and-dynamic-arrays.

        /// @solidity memory-safe-assembly
        assembly {
            mstore(0, arr.slot)
            slot := add(keccak256(0, 0x20), pos)
        }
        return slot.getUint256Slot();
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(uint256[] memory arr, uint256 pos) internal pure returns (uint256 res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }

    /**
     * @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
     *
     * WARNING: Only use if you are certain `pos` is lower than the array length.
     */
    function unsafeMemoryAccess(address[] memory arr, uint256 pos) internal pure returns (address res) {
        assembly {
            res := mload(add(add(arr, 0x20), mul(pos, 0x20)))
        }
    }
}

File 19 of 34 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

File 20 of 34 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 21 of 34 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeCast {
    /**
     * @dev Value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);

    /**
     * @dev An int value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedIntToUint(int256 value);

    /**
     * @dev Value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);

    /**
     * @dev An uint value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedUintToInt(uint256 value);

    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        if (value > type(uint248).max) {
            revert SafeCastOverflowedUintDowncast(248, value);
        }
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        if (value > type(uint240).max) {
            revert SafeCastOverflowedUintDowncast(240, value);
        }
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        if (value > type(uint232).max) {
            revert SafeCastOverflowedUintDowncast(232, value);
        }
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        if (value > type(uint224).max) {
            revert SafeCastOverflowedUintDowncast(224, value);
        }
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        if (value > type(uint216).max) {
            revert SafeCastOverflowedUintDowncast(216, value);
        }
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        if (value > type(uint208).max) {
            revert SafeCastOverflowedUintDowncast(208, value);
        }
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        if (value > type(uint200).max) {
            revert SafeCastOverflowedUintDowncast(200, value);
        }
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        if (value > type(uint192).max) {
            revert SafeCastOverflowedUintDowncast(192, value);
        }
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        if (value > type(uint184).max) {
            revert SafeCastOverflowedUintDowncast(184, value);
        }
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        if (value > type(uint176).max) {
            revert SafeCastOverflowedUintDowncast(176, value);
        }
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        if (value > type(uint168).max) {
            revert SafeCastOverflowedUintDowncast(168, value);
        }
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        if (value > type(uint160).max) {
            revert SafeCastOverflowedUintDowncast(160, value);
        }
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        if (value > type(uint152).max) {
            revert SafeCastOverflowedUintDowncast(152, value);
        }
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        if (value > type(uint144).max) {
            revert SafeCastOverflowedUintDowncast(144, value);
        }
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        if (value > type(uint136).max) {
            revert SafeCastOverflowedUintDowncast(136, value);
        }
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        if (value > type(uint128).max) {
            revert SafeCastOverflowedUintDowncast(128, value);
        }
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        if (value > type(uint120).max) {
            revert SafeCastOverflowedUintDowncast(120, value);
        }
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        if (value > type(uint112).max) {
            revert SafeCastOverflowedUintDowncast(112, value);
        }
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        if (value > type(uint104).max) {
            revert SafeCastOverflowedUintDowncast(104, value);
        }
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        if (value > type(uint96).max) {
            revert SafeCastOverflowedUintDowncast(96, value);
        }
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        if (value > type(uint88).max) {
            revert SafeCastOverflowedUintDowncast(88, value);
        }
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        if (value > type(uint80).max) {
            revert SafeCastOverflowedUintDowncast(80, value);
        }
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        if (value > type(uint72).max) {
            revert SafeCastOverflowedUintDowncast(72, value);
        }
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        if (value > type(uint64).max) {
            revert SafeCastOverflowedUintDowncast(64, value);
        }
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        if (value > type(uint56).max) {
            revert SafeCastOverflowedUintDowncast(56, value);
        }
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        if (value > type(uint48).max) {
            revert SafeCastOverflowedUintDowncast(48, value);
        }
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        if (value > type(uint40).max) {
            revert SafeCastOverflowedUintDowncast(40, value);
        }
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        if (value > type(uint32).max) {
            revert SafeCastOverflowedUintDowncast(32, value);
        }
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        if (value > type(uint24).max) {
            revert SafeCastOverflowedUintDowncast(24, value);
        }
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        if (value > type(uint16).max) {
            revert SafeCastOverflowedUintDowncast(16, value);
        }
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        if (value > type(uint8).max) {
            revert SafeCastOverflowedUintDowncast(8, value);
        }
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        if (value < 0) {
            revert SafeCastOverflowedIntToUint(value);
        }
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(248, value);
        }
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(240, value);
        }
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(232, value);
        }
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(224, value);
        }
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(216, value);
        }
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(208, value);
        }
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(200, value);
        }
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(192, value);
        }
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(184, value);
        }
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(176, value);
        }
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(168, value);
        }
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(160, value);
        }
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(152, value);
        }
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(144, value);
        }
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(136, value);
        }
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(128, value);
        }
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(120, value);
        }
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(112, value);
        }
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(104, value);
        }
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(96, value);
        }
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(88, value);
        }
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(80, value);
        }
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(72, value);
        }
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(64, value);
        }
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(56, value);
        }
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(48, value);
        }
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(40, value);
        }
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(32, value);
        }
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(24, value);
        }
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(16, value);
        }
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(8, value);
        }
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        if (value > uint256(type(int256).max)) {
            revert SafeCastOverflowedUintToInt(value);
        }
        return int256(value);
    }
}

File 22 of 34 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

File 23 of 34 : IPlaythroughTracker.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

interface IPlaythroughTracker {
    struct State {
        uint256 total;
        mapping(uint256 offeringId => uint256) totalPerOffering;
    }

    event RequirementAdded(address account, address creditId, uint256 offeringId, uint256 amount);
    event AccountProgressed(address account, address creditId, uint256 amount);
    event RequirementsAdded(address[] accounts, uint256[] amounts, address creditId, uint256 offeringId);
    event BonusCashSet(address bonusCash);

    function isLocked(address _account, address _creditId) external view returns (bool);

    function addRequirements(
        address[] calldata _accounts,
        uint256[] calldata _amounts,
        address _creditId,
        uint256 _offeringId
    ) external;

    function progressAccount(address _account, address _creditId, address _gameAddress, uint256 _amount) external;

    function progressAccount(uint256 _offeringId, address _creditId, address _account, uint256 _amount) external;

    function progressAccounts(
        uint256 _offeringId,
        address _creditId,
        address[] calldata _accounts,
        uint256[] memory _amounts
    ) external;

    function undoOffering(uint256 _offeringId, address _creditId, address _account) external;

    function undoOfferings(uint256 _offeringId, address _creditId, address[] calldata _accounts) external;
}

File 24 of 34 : ITournamentRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

interface ITournamentRegistry {
    struct TournamentData {
        bool isApproved;
        bool hasItems;
    }

    event TournamentApprovalUpdated(address tournament, bool approved);
    event TournamentItemsRegistered(address tournament);

    function setApproved(address _tournament, bool _approved) external;

    function registerItems(address _tournament) external;

    function isApproved(address _token) external view returns (bool);

    function getTournamentData(address _tournament) external view returns (TournamentData memory);
}

File 25 of 34 : ISwapExecutor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

interface ISwapExecutor {
    error ZeroAddress();

    event FeeSet(uint24 fee);

    function executeSwap(
        address _fromToken,
        address _toToken,
        uint256 _amount,
        uint256 _deadline,
        uint256 _amountOutMinimum
    ) external returns (uint256);
}

File 26 of 34 : IWETH.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;

    function transfer(address to, uint value) external returns (bool);

    function withdraw(uint) external;

    function transferFrom(address from, address to, uint value) external returns (bool);

    function balanceOf(address) external view returns (uint256);
}

File 27 of 34 : PVMath.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

library PVMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return (a * b) / 1e18;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return (a * 1e18) / b;
    }
}

File 28 of 34 : IBonusCash.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

import {ICredits} from "../credits/ICredits.sol";

interface IBonusCash {
    struct BonusCashInfo {
        uint256 totalSupply;
        address creditId;
        uint256 creditRatio;
        uint256 collateral;
        uint256 targetEntryPct;
        uint256 activeCount;
        address admin;
        bool invalidated;
        // gameAddress => isIncluded
        mapping(address => bool) included;
        // playerAddress => startingBalance
        mapping(address => uint256) startingBalance;
        // gameAddress => tournamentId => hasActiveTournament
        mapping(address => mapping(uint256 => bool)) isActive;
        // gameAddress => tournamentId => pendingBonusCashAmount
        mapping(address => mapping(uint256 => uint256)) pendingSupply;
    }
    struct Distribution {
        uint256 offeringId;
        address[] players;
        uint256[] amounts;
        uint256[] playthroughRequirements;
        bytes[] sigs;
    }

    event MinCollateralRatioSet(uint256 minCollateralRatio);
    event OfferingUpdated(
        uint256 offeringId,
        address creditId,
        uint256 collateral,
        uint256 targetEntryPct,
        address[] gamesAdded,
        address[] gamesRemoved,
        address admin
    );
    event PlaythroughUndone(uint256 offeringId, address[] players);
    event BonusCashDistributed(uint256 offeringId, address[] players, uint256[] amounts);
    event BonusCashSpent(uint256 offeringId, uint256 tournamentId, address game, address player, uint256 amount);
    event CollateralSent(uint256 offeringId, uint256 tournamentId, uint256 amount, address game);
    event TournamentEnded(address game, uint256 tournamentId);
    event OfferingInvalidated(uint256 offeringId);
    event CollateralWithdrawn(uint256 offeringId, address to, uint256 amount);
    event CreditsSet(ICredits credits);
    event PlaythroughTrackerSet(address playthroughTracker);
    event MaxAllowedPlaythroughSet(uint256 playthrough);
    event PlayerOptedOut(address player, uint256 offeringId);

    function creditToGameToOfferingId(address creditId, address game) external view returns (uint256);

    function gameBalanceOf(address game, address creditId, address player) external view returns (uint256);

    function gameTargetEntryPct(address game, address creditId) external view returns (uint256);

    function spendRequiredAmount(
        address _account,
        address _token,
        uint256 _amountTickets,
        uint256 _amountCredits,
        uint256 _tournamentId,
        uint256 _fee
    ) external returns (uint256);

    function getBonusCashForEntry(
        address _account,
        address _token,
        uint256 _ticketBalance,
        uint256 _creditBalance,
        uint256 _entryFee
    ) external view returns (uint256 _requiredAmount);

    function collateralPayout(address _creditId, uint256 _tournamentId, uint256 _amount) external;

    function endTournament(address _creditId, uint256 _tournamentId, uint256 _collateralToReturn) external;
}

File 29 of 34 : ICredits.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";

import {ISemiFungibleSoulboundTokenUpgradeable} from "../sfst/ISemiFungibleSoulboundTokenUpgradeable.sol";
import {ISwapExecutor} from "../../interfaces/ISwapExecutor.sol";

interface ICredits is IAccessControl, ISemiFungibleSoulboundTokenUpgradeable {
    error Credits__ZeroAddress();

    event WapeSet(address wape);
    event PlaythroughTrackerSet(address playthroughTracker);
    event AllowanceWithdrawal(address token, address receiver, uint256 amount);
    event CreditsPurchased(address token, address payFrom, address mintTo, uint256 amount);
    event CreditTypeConfigured(address token, uint256 ratio);
    event BonusCashSet(address bonusCash);
    event TicketsSet(address tickets);
    event CreditsReleased(address _from, address _to, address _token, uint256 _amount);
    event FeeReleased(
        address account,
        address token,
        uint256 amount,
        uint256 tournamentId,
        uint256 collateralAmount,
        uint256 amountLiquid,
        uint256 amountIlliquid
    );
    event ExcessTokensWithdrawn(address token, address to, uint256 excessAmount);

    event CreditsSwapped(address fromToken, address toToken, uint256 tokensIn, uint256 creditsOut);
    event SwapImplEnabledChanged(address indexed swapImpl, bool enabled);

    function release(address _from, address _token, uint256 _amount) external returns (uint256 _releasedAmount);

    function purchaseCredits(uint256 _amount, address _mintTo, address _token, address _payFrom) external payable;

    function mintBatch(address _creditId, address[] memory _players, uint256[] memory _amounts) external;

    function tokenPerCreditRatio(address _creditId) external view returns (uint256);

    function purchaseCreditsWithGivenCollateral(
        uint256 _collateralAmount,
        address _mintTo,
        address _tokenAddress,
        address _payFrom
    ) external payable returns (uint256);

    function swap(
        address _fromToken,
        address _toToken,
        address _account,
        uint256 _creditsRequired,
        uint256 _deadline,
        uint256 _maxAmountTokensIn,
        ISwapExecutor _swapImpl
    ) external;

    function swapImplEnabled(address _swapImpl) external view returns (bool);

    function balanceOf(address account, address token) external view returns (uint256);
}

File 30 of 34 : ISemiFungibleSoulboundTokenUpgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

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

interface ISemiFungibleSoulboundTokenUpgradeable is IERC165 {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

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

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

    /**
     * @dev Indicates a failure with the token `value`. Used in transfers.
     * @param value value of tokens to transfer.
     */
    error InvalidValue(uint256 value);

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

    /**
     * @dev Emitted when `value` amount of tokens of type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Returns the value of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev Batched version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] calldata accounts,
        uint256[] calldata ids
    ) external view returns (uint256[] memory);

    /**
     * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `value` amount.
     */
    function transferFrom(address from, address to, uint256 id, uint256 value) external;

    /**
     * Emits either a {TransferSingle} or a {TransferBatch} event, depending on the length of the array arguments.
     *
     * Requirements:
     *
     * - `ids` and `values` must have the same length.
     */
    function batchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata values) external;
}

File 31 of 34 : SemiFungibleSoulboundTokenSupplyUpgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

import {SemiFungibleSoulboundTokenUpgradeable} from "./SemiFungibleSoulboundTokenUpgradeable.sol";

/**
 * @dev Extension of SemiFungibleSoulboundToken that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 *
 * NOTE: This contract implies a global limit of 2**256 - 1 to the number of tokens
 * that can be minted.
 *
 * CAUTION: This extension should not be added in an upgrade to an already deployed contract.
 */
abstract contract SemiFungibleSoulboundTokenSupplyUpgradeable is Initializable, SemiFungibleSoulboundTokenUpgradeable {
    /// @custom:storage-location erc7201:reboot.storage.Supply
    struct SupplyStorage {
        mapping(uint256 id => uint256) _totalSupply;
        uint256 _totalSupplyAll;
    }

    // keccak256(abi.encode(uint256(keccak256("reboot.storage.Supply")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant SupplyStorageLocation = 0x4e55d81dc4eb0cd46630d521688a8afca3df196dfda92ac786604a850941da00;

    function _getSupplyStorage() private pure returns (SupplyStorage storage $) {
        assembly {
            $.slot := SupplyStorageLocation
        }
    }

    /**
     * @dev Total value of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        SupplyStorage storage $ = _getSupplyStorage();
        return $._totalSupply[id];
    }

    /**
     * @dev Total value of tokens.
     */
    function totalSupply() public view virtual returns (uint256) {
        SupplyStorage storage $ = _getSupplyStorage();
        return $._totalSupplyAll;
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_update}.
     */
    function _update(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values
    ) internal virtual override {
        SupplyStorage storage $ = _getSupplyStorage();
        super._update(from, to, ids, values);

        if (from == address(0)) {
            uint256 totalMintValue = 0;
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 value = values[i];
                // Overflow check required: The rest of the code assumes that totalSupply never overflows
                $._totalSupply[ids[i]] += value;
                totalMintValue += value;
            }
            // Overflow check required: The rest of the code assumes that totalSupplyAll never overflows
            $._totalSupplyAll += totalMintValue;
        }

        if (to == address(0)) {
            uint256 totalBurnValue = 0;
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 value = values[i];

                unchecked {
                    // Overflow not possible: values[i] <= balanceOf(from, ids[i]) <= totalSupply(ids[i])
                    $._totalSupply[ids[i]] -= value;
                    // Overflow not possible: sum_i(values[i]) <= sum_i(totalSupply(ids[i])) <= totalSupplyAll
                    totalBurnValue += value;
                }
            }
            unchecked {
                // Overflow not possible: totalBurnValue = sum_i(values[i]) <= sum_i(totalSupply(ids[i])) <= totalSupplyAll
                $._totalSupplyAll -= totalBurnValue;
            }
        }
    }
}

File 32 of 34 : SemiFungibleSoulboundTokenUpgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

import {ContextUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {ERC165Upgradeable} from "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";
import {Arrays} from "@openzeppelin/contracts/utils/Arrays.sol";
import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import {AccessControlDefaultAdminRulesUpgradeable} from "@openzeppelin/contracts-upgradeable/access/extensions/AccessControlDefaultAdminRulesUpgradeable.sol";
import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";

import {ISemiFungibleSoulboundTokenUpgradeable} from "./ISemiFungibleSoulboundTokenUpgradeable.sol";

/**
 * @dev Implementation of a soulbound multi-token.
 * Originally based on code by OpenZeppelin: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol
 */
abstract contract SemiFungibleSoulboundTokenUpgradeable is
    Initializable,
    ContextUpgradeable,
    ERC165Upgradeable,
    AccessControlDefaultAdminRulesUpgradeable,
    ISemiFungibleSoulboundTokenUpgradeable
{
    using Arrays for uint256[];
    using Arrays for address[];

    bytes32 public constant GOVERNOR_ROLE = 0x00;
    bytes32 public constant TRANSFER_ROLE = keccak256("TRANSFER_ROLE");

    /// @custom:storage-location erc7201:openzeppelin.storage.Token
    struct TokenStorage {
        mapping(uint256 id => mapping(address account => uint256)) _balances;
        mapping(address account => mapping(address operator => bool)) _operatorApprovals;
    }

    // keccak256(abi.encode(uint256(keccak256("reboot.storage.Token")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant TokenStorageLocation = 0x3487ca777fe86250bb0b5cc12e94513947700c89dfa1fbaf3d5e12571161bd00;

    function _getTokenStorage() private pure returns (TokenStorage storage $) {
        assembly {
            $.slot := TokenStorageLocation
        }
    }

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

    /**
     * @dev See {ISemiFungibleSoulboundTokenUpgradeable-balanceOf}.
     */
    function balanceOf(address account, uint256 id) public view virtual returns (uint256) {
        TokenStorage storage $ = _getTokenStorage();
        return $._balances[id][account];
    }

    /**
     * @dev See {ISemiFungibleSoulboundTokenUpgradeable-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    ) public view virtual returns (uint256[] memory) {
        if (accounts.length != ids.length) {
            revert InvalidArrayLength(ids.length, accounts.length);
        }

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts.unsafeMemoryAccess(i), ids.unsafeMemoryAccess(i));
        }

        return batchBalances;
    }

    /**
     * @dev See {ISemiFungibleSoulboundTokenUpgradeable-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 id, uint256 value) public onlyRole(TRANSFER_ROLE) {
        _transferFrom(from, to, id, value);
    }

    /**
     * @dev See {ISemiFungibleSoulboundTokenUpgradeable-batchTransferFrom}.
     */
    function batchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory values
    ) public onlyRole(TRANSFER_ROLE) {
        _batchTransferFrom(from, to, ids, values);
    }

    /**
     * @dev Transfers a `value` amount of tokens of type `id` from `from` to `to`. Will mint (or burn) if `from`
     * (or `to`) is the zero address.
     *
     * Emits a {TransferSingle} event if the arrays contain one element, and {TransferBatch} otherwise.
     *
     */
    function _update(address from, address to, uint256[] memory ids, uint256[] memory values) internal virtual {
        TokenStorage storage $ = _getTokenStorage();
        if (ids.length != values.length) {
            revert InvalidArrayLength(ids.length, values.length);
        }

        address operator = _msgSender();

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids.unsafeMemoryAccess(i);
            uint256 value = values.unsafeMemoryAccess(i);

            if (from != address(0)) {
                uint256 fromBalance = $._balances[id][from];
                if (fromBalance < value) {
                    revert InsufficientBalance(from, fromBalance, value, id);
                }
                unchecked {
                    // Overflow not possible: value <= fromBalance
                    $._balances[id][from] = fromBalance - value;
                }
            }

            if (to != address(0)) {
                $._balances[id][to] += value;
            }
        }

        if (ids.length == 1) {
            uint256 id = ids.unsafeMemoryAccess(0);
            uint256 value = values.unsafeMemoryAccess(0);
            emit TransferSingle(operator, from, to, id, value);
        } else {
            emit TransferBatch(operator, from, to, ids, values);
        }
    }

    /**
     * @dev Transfers a `value` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `value` amount.
     */
    function _transferFrom(address from, address to, uint256 id, uint256 value) internal {
        if (to == address(0)) {
            revert InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _update(from, to, ids, values);
    }

    /**
     * @dev Batched version of {_transferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `values` must have the same length.
     */
    function _batchTransferFrom(address from, address to, uint256[] memory ids, uint256[] memory values) internal {
        if (to == address(0)) {
            revert InvalidReceiver(address(0));
        }
        if (from == address(0)) {
            revert InvalidSender(address(0));
        }
        _update(from, to, ids, values);
    }

    /**
     * @dev Creates a `value` amount of tokens of type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address to, uint256 id, uint256 value) internal {
        if (to == address(0)) {
            revert InvalidReceiver(address(0));
        }
        if (value == 0) {
            revert InvalidValue(value);
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _update(address(0), to, ids, values);
    }

    /**
     * @dev Batched version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `values` must have the same length.
     * - `to` cannot be the zero address.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory values) internal {
        if (to == address(0)) {
            revert InvalidReceiver(address(0));
        }
        _update(address(0), to, ids, values);
    }

    /**
     * @dev Destroys a `value` amount of tokens of type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     */
    function _burn(address from, uint256 id, uint256 value) internal {
        if (from == address(0)) {
            revert InvalidSender(address(0));
        }
        (uint256[] memory ids, uint256[] memory values) = _asSingletonArrays(id, value);
        _update(from, address(0), ids, values);
    }

    /**
     * @dev Batched version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `value` amount of tokens of type `id`.
     * - `ids` and `values` must have the same length.
     */
    function _burnBatch(address from, uint256[] memory ids, uint256[] memory values) internal {
        if (from == address(0)) {
            revert InvalidSender(address(0));
        }
        _update(from, address(0), ids, values);
    }

    /**
     * @dev Creates an array in memory with only one value for each of the elements provided.
     */
    function _asSingletonArrays(
        uint256 element1,
        uint256 element2
    ) private pure returns (uint256[] memory array1, uint256[] memory array2) {
        /// @solidity memory-safe-assembly
        assembly {
            // Load the free memory pointer
            array1 := mload(0x40)
            // Set array length to 1
            mstore(array1, 1)
            // Store the single element at the next word after the length (where content starts)
            mstore(add(array1, 0x20), element1)

            // Repeat for next array locating it right after the first array
            array2 := add(array1, 0x40)
            mstore(array2, 1)
            mstore(add(array2, 0x20), element2)

            // Update the free memory pointer by pointing after the second array
            mstore(0x40, add(array2, 0x40))
        }
    }
}

File 33 of 34 : ITickets.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

import {ISemiFungibleSoulboundTokenUpgradeable} from "../sfst/ISemiFungibleSoulboundTokenUpgradeable.sol";

interface ITickets is ISemiFungibleSoulboundTokenUpgradeable {
    event TicketTypeConfigured(address token, uint256 ratio);
    event WapeSet(address wape);
    event PlaythroughTrackerSet(address playthroughTracker);
    event ExcessTokensWithdrawn(address token, address to, uint256 excessAmount);

    function tokensPerTicket(address token) external view returns (uint256);

    function mintBatch(address _token, address[] memory _players, uint256[] memory _amounts) external;

    function release(
        address _from,
        address _to,
        address _token,
        uint256 _amount,
        bool _nativeApe
    ) external returns (uint256 _releasedAmount);

    function configureTicketType(address _tokenContract, uint256 _tokenPerCreditRatio) external;

    function balanceOf(address account, address token) external view returns (uint256);
}

File 34 of 34 : ITokenRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;

import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol";

interface ITokenRegistry is IAccessControl {
    event TokenUpdated(address token, bool approved);

    function isApproved(address _token) external view returns (bool);
}

Settings
{
  "viaIR": false,
  "optimizer": {
    "enabled": true,
    "runs": 10
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"uint48","name":"schedule","type":"uint48"}],"name":"AccessControlEnforcedDefaultAdminDelay","type":"error"},{"inputs":[],"name":"AccessControlEnforcedDefaultAdminRules","type":"error"},{"inputs":[{"internalType":"address","name":"defaultAdmin","type":"address"}],"name":"AccessControlInvalidDefaultAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"Credits__ZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"InvalidArrayLength","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AllowanceWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bonusCash","type":"address"}],"name":"BonusCashSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"ratio","type":"uint256"}],"name":"CreditTypeConfigured","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"payFrom","type":"address"},{"indexed":false,"internalType":"address","name":"mintTo","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CreditsPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"address","name":"_token","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"CreditsReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"fromToken","type":"address"},{"indexed":false,"internalType":"address","name":"toToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"creditsOut","type":"uint256"}],"name":"CreditsSwapped","type":"event"},{"anonymous":false,"inputs":[],"name":"DefaultAdminDelayChangeCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint48","name":"newDelay","type":"uint48"},{"indexed":false,"internalType":"uint48","name":"effectSchedule","type":"uint48"}],"name":"DefaultAdminDelayChangeScheduled","type":"event"},{"anonymous":false,"inputs":[],"name":"DefaultAdminTransferCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"},{"indexed":false,"internalType":"uint48","name":"acceptSchedule","type":"uint48"}],"name":"DefaultAdminTransferScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"excessAmount","type":"uint256"}],"name":"ExcessTokensWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tournamentId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountLiquid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountIlliquid","type":"uint256"}],"name":"FeeReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"playthroughTracker","type":"address"}],"name":"PlaythroughTrackerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"swapImpl","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapImplEnabledChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tickets","type":"address"}],"name":"TicketsSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wape","type":"address"}],"name":"WapeSet","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOVERNOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROTOCOL_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RELAYER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SWAPPER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_governor","type":"address"},{"internalType":"address","name":"_wape","type":"address"},{"internalType":"contract IBonusCash","name":"_bonusCash","type":"address"},{"internalType":"contract ITokenRegistry","name":"_tokenRegistry","type":"address"},{"internalType":"contract IPlaythroughTracker","name":"_playthroughTracker","type":"address"},{"internalType":"contract ITickets","name":"_tickets","type":"address"},{"internalType":"contract ITournamentRegistry","name":"_tournamentRegistry","type":"address"}],"name":"__Credits_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptDefaultAdminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"beginDefaultAdminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bonusCash","outputs":[{"internalType":"contract IBonusCash","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelDefaultAdminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"newDelay","type":"uint48"}],"name":"changeDefaultAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultAdminDelay","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultAdminDelayIncreaseWait","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"govAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address[]","name":"_players","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingDefaultAdmin","outputs":[{"internalType":"address","name":"newAdmin","type":"address"},{"internalType":"uint48","name":"schedule","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingDefaultAdminDelay","outputs":[{"internalType":"uint48","name":"newDelay","type":"uint48"},{"internalType":"uint48","name":"schedule","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"playthroughTracker","outputs":[{"internalType":"contract IPlaythroughTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_mintTo","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_payFrom","type":"address"}],"name":"purchaseCredits","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_amount","type":"uint256[]"},{"internalType":"address[]","name":"_mintTo","type":"address[]"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_payFrom","type":"address"}],"name":"purchaseCreditsBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collateralAmount","type":"uint256"},{"internalType":"address","name":"_mintTo","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_payFrom","type":"address"}],"name":"purchaseCreditsWithGivenCollateral","outputs":[{"internalType":"uint256","name":"_amountCredits","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"release","outputs":[{"internalType":"uint256","name":"_releasedAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rollbackDefaultAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IBonusCash","name":"_bonusCash","type":"address"}],"name":"setBonusCash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_tokenPerCreditRatio","type":"uint256"}],"name":"setCreditRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPlaythroughTracker","name":"_playthroughTracker","type":"address"}],"name":"setPlaythroughTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_swapImpl","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapImplEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ITickets","name":"_tickets","type":"address"}],"name":"setTickets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wape","type":"address"}],"name":"setWape","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_fromToken","type":"address"},{"internalType":"address","name":"_toToken","type":"address"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_creditsRequired","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint256","name":"_maxAmountTokensIn","type":"uint256"},{"internalType":"contract ISwapExecutor","name":"_swapImpl","type":"address"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"swapImplEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tickets","outputs":[{"internalType":"contract ITickets","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenPerCreditRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenRegistry","outputs":[{"internalType":"contract ITokenRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tournamentRegistry","outputs":[{"internalType":"contract ITournamentRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wAPE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawExcess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawFromAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523060805234801561001457600080fd5b5061001d610022565b6100d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100725760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d15780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6080516141c66100fd600039600081816126f701528181612720015261285b01526141c66000f3fe6080604052600436106102945760003560e01c8062fdd58e146102a0578063019ca073146102d357806301ffc9a7146102f5578063022d63fb1461032557806302768de41461034457806302ca821214610366578063089eb4e4146103865780630aa6220b1461039957806317fad7fc146103ae57806318160ddd146103ce578063206b60f9146103e3578063209c8cfe146104055780632185852114610425578063248a9ca3146104525780632f2ff15d1461047257806336568abe14610492578063369c57e2146104b2578063477e66f9146104d25780634da91757146104f25780634e1273f4146105125780634f1ef2861461053f5780634f558e79146105525780635096c6ac1461057257806352d1902d14610592578063634e93da146105a7578063649a5ec7146105c7578063683097ea146105e757806384ef8ffc146106075780638a62b0e41461061c5780638baf4d8a1461063c5780638bfb07c91461064f5780638da5cb5b1461066f578063918a29531461068457806391d1485414610697578063926d7d7f146106b75780639bbef064146106d95780639d23c4c714610706578063a07ce6ca14610726578063a1c0e2f214610746578063a1eda53c14610776578063a217fddf14610799578063ad3cb1cc146107ae578063bd36924c146107ec578063bd85b0391461080c578063cc8463c81461082c578063ccc5749014610799578063cefc142914610841578063cf6eefb714610856578063d4437c2014610891578063d547741f146108b1578063d602b9fd146108d1578063df668eca146108e6578063df709adb14610908578063ef2d856914610935578063f7888aec14610955578063f7c6254b14610975578063fde9cc2a14610995578063fe99049a146109b557600080fd5b3661029b57005b600080fd5b3480156102ac57600080fd5b506102c06102bb36600461364f565b6109d5565b6040519081526020015b60405180910390f35b3480156102df57600080fd5b506102f36102ee36600461367b565b610a0a565b005b34801561030157600080fd5b50610315610310366004613698565b610a9b565b60405190151581526020016102ca565b34801561033157600080fd5b50620697805b6040516102ca91906136c2565b34801561035057600080fd5b506102c060008051602061415183398151915281565b34801561037257600080fd5b506102f361038136600461367b565b610ac0565b6102f3610394366004613720565b610b3c565b3480156103a557600080fd5b506102f3610cf5565b3480156103ba57600080fd5b506102f36103c936600461388e565b610d0b565b3480156103da57600080fd5b506102c0610d36565b3480156103ef57600080fd5b506102c06000805160206140d183398151915281565b34801561041157600080fd5b506102f361042036600461391a565b610d4b565b34801561043157600080fd5b50600454610445906001600160a01b031681565b6040516102ca9190613953565b34801561045e57600080fd5b506102c061046d366004613967565b610e90565b34801561047e57600080fd5b506102f361048d366004613980565b610eb0565b34801561049e57600080fd5b506102f36104ad366004613980565b610edc565b3480156104be57600080fd5b50600154610445906001600160a01b031681565b3480156104de57600080fd5b506102f36104ed366004613a0c565b610f93565b3480156104fe57600080fd5b506102f361050d366004613a85565b611231565b34801561051e57600080fd5b5061053261052d366004613b00565b611510565b6040516102ca9190613ba3565b6102f361054d366004613bb6565b6115d8565b34801561055e57600080fd5b5061031561056d366004613967565b6115f3565b34801561057e57600080fd5b50600554610445906001600160a01b031681565b34801561059e57600080fd5b506102c0611606565b3480156105b357600080fd5b506102f36105c236600461367b565b611623565b3480156105d357600080fd5b506102f36105e2366004613c61565b611637565b3480156105f357600080fd5b506102f361060236600461367b565b61164b565b34801561061357600080fd5b506104456116c7565b34801561062857600080fd5b50600054610445906001600160a01b031681565b6102c061064a366004613c89565b6116e5565b34801561065b57600080fd5b506102c061066a366004613cdc565b611838565b34801561067b57600080fd5b50610445611a2a565b6102f3610692366004613c89565b611a39565b3480156106a357600080fd5b506103156106b2366004613980565b611b2d565b3480156106c357600080fd5b506102c06000805160206140f183398151915281565b3480156106e557600080fd5b506102c06106f436600461367b565b60076020526000908152604090205481565b34801561071257600080fd5b50600254610445906001600160a01b031681565b34801561073257600080fd5b506102f361074136600461364f565b611b63565b34801561075257600080fd5b5061031561076136600461367b565b60086020526000908152604090205460ff1681565b34801561078257600080fd5b5061078b611d55565b6040516102ca929190613d1d565b3480156107a557600080fd5b506102c0600081565b3480156107ba57600080fd5b506107df604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516102ca9190613d5a565b3480156107f857600080fd5b506102f3610807366004613d9b565b611dba565b34801561081857600080fd5b506102c0610827366004613967565b611e25565b34801561083857600080fd5b50610337611e42565b34801561084d57600080fd5b506102f3611ead565b34801561086257600080fd5b5061086b611eed565b604080516001600160a01b03909316835265ffffffffffff9091166020830152016102ca565b34801561089d57600080fd5b506102f36108ac36600461367b565b611f1d565b3480156108bd57600080fd5b506102f36108cc366004613980565b611f99565b3480156108dd57600080fd5b506102f3611fc1565b3480156108f257600080fd5b506102c060008051602061417183398151915281565b34801561091457600080fd5b506102c061092336600461367b565b60066020526000908152604090205481565b34801561094157600080fd5b506102f3610950366004613cdc565b611fd4565b34801561096157600080fd5b506102c061097036600461391a565b6120c5565b34801561098157600080fd5b50600354610445906001600160a01b031681565b3480156109a157600080fd5b506102f36109b0366004613dc9565b6120da565b3480156109c157600080fd5b506102f36109d0366004613e4f565b6122c0565b6000806109e06122e4565b6000848152602091825260408082206001600160a01b038816835290925220549150505b92915050565b6000610a1581612308565b6001600160a01b038216610a445760405162461bcd60e51b8152600401610a3b90613e95565b60405180910390fd5b600480546001600160a01b0319166001600160a01b0384161790556040517f95051352f31221f3a0bfca2d59e5827b0a9ef1a5198e4049e91142d7acc76ed990610a8f908490613953565b60405180910390a15050565b60006001600160e01b031982166329e31d4760e21b1480610a045750610a0482612312565b6000610acb81612308565b6001600160a01b038216610af15760405162461bcd60e51b8152600401610a3b90613e95565b600080546001600160a01b0319166001600160a01b0384161790556040517f1cd4a9f0f17dfc2c0fb2ee6b253c1ffcffd25a85fba5ec1c8ba89896c9bcba3690610a8f908490613953565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd90610b6c908590600401613953565b602060405180830381865afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190613ebd565b610bc95760405162461bcd60e51b8152600401610a3b90613eda565b6001600160a01b038216600090815260076020526040812054815b87811015610cdf5781898983818110610bff57610bff613f03565b90506020020135610c109190613f2f565b610c1a9084613f46565b9250610c6e878783818110610c3157610c31613f03565b9050602002016020810190610c46919061367b565b866001600160a01b03168b8b85818110610c6257610c62613f03565b90506020020135612352565b6000805160206141118339815191528533898985818110610c9157610c91613f03565b9050602002016020810190610ca6919061367b565b8c8c86818110610cb857610cb8613f03565b90506020020135604051610ccf9493929190613f59565b60405180910390a1600101610be4565b50610ceb8484846123be565b5050505050505050565b6000610d0081612308565b610d086124df565b50565b6000805160206140d1833981519152610d2381612308565b610d2f858585856124ec565b5050505050565b600080610d4161254c565b6001015492915050565b6000610d5681612308565b6001600160a01b0383166000818152600760205260408120549091610d7a90611e25565b610d849190613f2f565b6040516370a0823160e01b81526001600160a01b038616906370a0823190610db0903090600401613953565b602060405180830381865afa158015610dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df19190613f83565b610dfb9190613f9c565b905080600003610e3b5760405162461bcd60e51b815260206004820152600b60248201526a433a204e6f45786365737360a81b6044820152606401610a3b565b610e4f6001600160a01b0385168483612570565b7f753e7e8be98e512034401050a36a864823ca659d2f3cf27d19bcbe51e64f150e848483604051610e8293929190613faf565b60405180910390a150505050565b600080610e9b6125c8565b60009384526020525050604090206001015490565b81610ece57604051631fe1e13d60e11b815260040160405180910390fd5b610ed882826125ec565b5050565b6000610ee6612608565b905082158015610f0e5750610ef96116c7565b6001600160a01b0316826001600160a01b0316145b15610f8457600080610f1e611eed565b90925090506001600160a01b038216151580610f40575065ffffffffffff8116155b80610f515750610f4f8161262c565b155b15610f7157806040516319ca5ebb60e01b8152600401610a3b91906136c2565b5050805465ffffffffffff60a01b191681555b610f8e838361263b565b505050565b60035460405163673448dd60e01b81526001600160a01b039091169063673448dd90610fc3903390600401613953565b602060405180830381865afa158015610fe0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110049190613ebd565b80611022575061102260008051602061415183398151915233611b2d565b61103e5760405162461bcd60e51b8152600401610a3b90613fd3565b80518251146110825760405162461bcd60e51b815260206004820152601060248201526f086744092dcecc2d8d2c898cadccee8d60831b6044820152606401610a3b565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd906110b2908690600401613953565b602060405180830381865afa1580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190613ebd565b61110f5760405162461bcd60e51b8152600401610a3b90613eda565b60008251116111505760405162461bcd60e51b815260206004820152600d60248201526c0867440b4cae4de98cadccee8d609b1b6044820152606401610a3b565b6001600160a01b038316600090815260076020526040812054815b84518110156112155783818151811061118657611186613f03565b60200260200101516000031561120d57818482815181106111a9576111a9613f03565b60200260200101516111bb9190613f2f565b6111c59084613f46565b925061120d8582815181106111dc576111dc613f03565b6020026020010151876001600160a01b031686848151811061120057611200613f03565b6020026020010151612352565b60010161116b565b508115610d2f57610d2f6001600160a01b03861633308561266e565b60035460405163673448dd60e01b81526001600160a01b039091169063673448dd90611261903390600401613953565b602060405180830381865afa15801561127e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a29190613ebd565b806112c057506112c060008051602061417183398151915233611b2d565b6112fd5760405162461bcd60e51b815260206004820152600e60248201526d10ce88139bdd105c1c1c9bdd995960921b6044820152606401610a3b565b6001600160a01b03811660009081526008602052604090205460ff1661135b5760405162461bcd60e51b8152602060048201526013602482015272299d1024b73b30b634b21032bc32b1baba37b960691b6044820152606401610a3b565b6001600160a01b0387811660009081526007602052604081205490918316906376eb8964908a908a9061138e908a613f2f565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606481018790526084810186905260a4016020604051808303816000875af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114149190613f83565b6001600160a01b038916600081815260076020526040902054919250611446918891906114419085614012565b612696565b61145a86886001600160a01b031687612352565b6001600160a01b03881660009081526007602052604081205461147d9083614026565b905080156114b3576001600160a01b038916600090815260066020526040812080548392906114ad908490613f46565b90915550505b604080516001600160a01b03808c1682528a166020820152908101839052606081018790527f486a69d60d9fecd956b72c0b1997defc1e2b5521b8857105053a841fc8ddb4be9060800160405180910390a1505050505050505050565b606081518351146115415781518351604051633b5cfc6960e21b815260048101929092526024820152604401610a3b565b600083516001600160401b0381111561155c5761155c6137b8565b604051908082528060200260200182016040528015611585578160200160208202803683370190505b50905060005b84518110156115d0576115ab6115a186836126de565b6102bb86846126de565b8282815181106115bd576115bd613f03565b602090810291909101015260010161158b565b509392505050565b6115e06126ec565b6115e982612791565b610ed8828261279c565b6000806115ff83611e25565b1192915050565b6000611610612850565b5060008051602061413183398151915290565b600061162e81612308565b610ed882612899565b600061164281612308565b610ed882612907565b600061165681612308565b6001600160a01b03821661167c5760405162461bcd60e51b8152600401610a3b90613e95565b600580546001600160a01b0319166001600160a01b0384161790556040517f7f5d00120a926c876ce4816651370a46e09328a60953ca2001f71ff396c3ac2890610a8f908490613953565b6000806116d2612608565b600101546001600160a01b031692915050565b60025460405163673448dd60e01b81526000916001600160a01b03169063673448dd90611716908690600401613953565b602060405180830381865afa158015611733573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117579190613ebd565b6117735760405162461bcd60e51b8152600401610a3b90613eda565b61177e8383876123be565b6001600160a01b0383166000908152600760205260409020546117a18187614012565b915060006117af8284613f2f565b6117b99088613f9c565b905080156117ef576001600160a01b038516600090815260066020526040812080548392906117e9908490613f46565b90915550505b61180386866001600160a01b031685612352565b600080516020614111833981519152853388866040516118269493929190613f59565b60405180910390a15050949350505050565b60035460405163673448dd60e01b81526000916001600160a01b03169063673448dd90611869903390600401613953565b602060405180830381865afa158015611886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118aa9190613ebd565b806118c857506118c860008051602061415183398151915233611b2d565b6118e45760405162461bcd60e51b8152600401610a3b90613fd3565b600154604051638612d04960e01b81526001600160a01b038681166004830152858116602483015290911690638612d04990604401602060405180830381865afa158015611936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195a9190613ebd565b156119995760405162461bcd60e51b815260206004820152600f60248201526e10ce8810dc99591a5d131bd8dad959608a1b6044820152606401610a3b565b6119ad84846001600160a01b031684612696565b6001600160a01b0383166000908152600760205260409020546119d09083613f2f565b90507f40d7e30cc800205149221bce90559d771cee6abc9e1d6b003873d1ca9d62170384338585604051611a079493929190613f59565b60405180910390a1611a236001600160a01b0384163383612570565b9392505050565b6000611a346116c7565b905090565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd90611a69908590600401613953565b602060405180830381865afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa9190613ebd565b611ac65760405162461bcd60e51b8152600401610a3b90613eda565b6001600160a01b038216600090815260076020526040902054611af69083908390611af19088613f2f565b6123be565b611b0a83836001600160a01b031686612352565b60008051602061411183398151915282338587604051610e829493929190613f59565b600080611b386125c8565b6000948552602090815260408086206001600160a01b03959095168652939052505090205460ff1690565b6000611b6e81612308565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd90611b9e908690600401613953565b602060405180830381865afa158015611bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdf9190613ebd565b611bfb5760405162461bcd60e51b8152600401610a3b90613eda565b6001600160a01b03831660009081526007602052604090205415611c565760405162461bcd60e51b815260206004820152601260248201527110ce8814985d1a5bd05b1c9958591e54d95d60721b6044820152606401610a3b565b60008211611c985760405162461bcd60e51b815260206004820152600f60248201526e433a20496e76616c6964526174696f60881b6044820152606401610a3b565b6001600160a01b03831660009081526007602052604090819020839055517f550f6eb1072ba95efb888967e72f50b38848286d7dc972f683a2c1a48bdcb13190611ce5908590859061403a565b60405180910390a16004805460405163b2a97fb160e01b81526001600160a01b039091169163b2a97fb191611d1e91879187910161403a565b600060405180830381600087803b158015611d3857600080fd5b505af1158015611d4c573d6000803e3d6000fd5b50505050505050565b6000806000611d62612608565b6001810154600160d01b900465ffffffffffff16925090508115158015611d8f5750611d8d8261262c565b155b611d9b57600080611db1565b6001810154600160a01b900465ffffffffffff16825b92509250509091565b6000611dc581612308565b6001600160a01b038316600081815260086020908152604091829020805460ff191686151590811790915591519182527fd45d64088391089bdbf2b59ebb7ed88d6e19b36a95c42479720a180df18d7106910160405180910390a2505050565b600080611e3061254c565b60009384526020525050604090205490565b600080611e4d612608565b6001810154909150600160d01b900465ffffffffffff168015158015611e775750611e778161262c565b611e91578154600160d01b900465ffffffffffff16611ea6565b6001820154600160a01b900465ffffffffffff165b9250505090565b6000611eb7611eed565b509050336001600160a01b03821614611ee55733604051636116401160e11b8152600401610a3b9190613953565b610d08612962565b6000806000611efa612608565b546001600160a01b03811694600160a01b90910465ffffffffffff169350915050565b6000611f2881612308565b6001600160a01b038216611f4e5760405162461bcd60e51b8152600401610a3b90613e95565b600180546001600160a01b0319166001600160a01b0384161790556040517f7a3e52411bc74d5cfaf60e90dd86062fb60afb65367bf8d11444b5fbd7f258ea90610a8f908490613953565b81611fb757604051631fe1e13d60e11b815260040160405180910390fd5b610ed882826129f2565b6000611fcc81612308565b610d08612a0e565b6000611fdf81612308565b6001600160a01b0384166000908152600660205260409020548211156120425760405162461bcd60e51b8152602060048201526018602482015277433a20496e73756666696369656e74416c6c6f77616e636560401b6044820152606401610a3b565b6001600160a01b0384166000908152600660205260408120805484929061206a908490613f9c565b90915550506040517f5de7cdb113ed505d60aa5d86e343a8866c9c71666cccc811e1a0d153b02c6982906120a390869086908690613faf565b60405180910390a16120bf6001600160a01b0385168484612570565b50505050565b6000611a2383836001600160a01b03166109d5565b60006120e4612a19565b805490915060ff600160401b82041615906001600160401b031660008115801561210b5750825b90506000826001600160401b031660011480156121275750303b155b905081158015612135575080155b156121535760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561217c57845460ff60401b1916600160401b1785555b61218760008d612a3d565b6001600160a01b038b1615806121a457506001600160a01b038a16155b806121b657506001600160a01b038816155b806121c857506001600160a01b038916155b806121da57506001600160a01b038716155b806121ec57506001600160a01b038616155b1561220a57604051639091990760e01b815260040160405180910390fd5b600080546001600160a01b03199081166001600160a01b038e8116919091179092556005805482168d84161790556001805482168b84161790556002805482168c84161790556003805482168984161790556004805490911691891691909117905583156122b257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b6000805160206140d18339815191526122d881612308565b610d2f85858585612a4f565b7f3487ca777fe86250bb0b5cc12e94513947700c89dfa1fbaf3d5e12571161bd0090565b610d088133612ac8565b60006001600160e01b031982166329e31d4760e21b148061234357506001600160e01b03198216637965db0b60e01b145b80610a045750610a0482612af3565b6001600160a01b03831661237c576000604051639cfea58360e01b8152600401610a3b9190613953565b806000036123a05760405163181c9d0b60e21b815260048101829052602401610a3b565b6000806123ad8484612b18565b91509150610d2f6000868484612b40565b6001600160a01b0382163314806123e857506123e86000805160206140f183398151915233611b2d565b6124045760405162461bcd60e51b8152600401610a3b90613fd3565b6000546001600160a01b03848116911614801561242057508034145b156124875760008054906101000a90046001600160a01b03166001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561247357600080fd5b505af1158015610ceb573d6000803e3d6000fd5b34156124ca5760405162461bcd60e51b8152602060048201526012602482015271433a20496e76616c6964507572636861736560701b6044820152606401610a3b565b610f8e6001600160a01b03841683308461266e565b6124ea600080612c9b565b565b6001600160a01b038316612516576000604051639cfea58360e01b8152600401610a3b9190613953565b6001600160a01b0384166125405760006040516313053d9360e21b8152600401610a3b9190613953565b6120bf84848484612b40565b7f4e55d81dc4eb0cd46630d521688a8afca3df196dfda92ac786604a850941da0090565b610f8e83846001600160a01b031663a9059cbb858560405160240161259692919061403a565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050612d66565b7f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b62680090565b6125f582610e90565b6125fe81612308565b6120bf8383612dc0565b7feef3dac4538c82c8ace4063ab0acd2d15cdb5883aa1dff7c2673abb3d869840090565b4265ffffffffffff9091161090565b6001600160a01b03811633146126645760405163334bd91960e11b815260040160405180910390fd5b610f8e8282612e33565b6120bf84856001600160a01b03166323b872dd86868660405160240161259693929190613faf565b6001600160a01b0383166126c05760006040516313053d9360e21b8152600401610a3b9190613953565b6000806126cd8484612b18565b91509150610d2f8560008484612b40565b602090810291909101015190565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061277357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316612767600080516020614131833981519152546001600160a01b031690565b6001600160a01b031614155b156124ea5760405163703e46dd60e11b815260040160405180910390fd5b6000610ed881612308565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156127f6575060408051601f3d908101601f191682019092526127f391810190613f83565b60015b6128155781604051634c9c8ce360e01b8152600401610a3b9190613953565b600080516020614131833981519152811461284657604051632a87526960e21b815260048101829052602401610a3b565b610f8e8383612e88565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146124ea5760405163703e46dd60e11b815260040160405180910390fd5b60006128a3611e42565b6128ac42612ede565b6128b69190614053565b90506128c28282612f15565b816001600160a01b03167f3377dc44241e779dd06afab5b788a35ca5f3b778836e2990bdb26a2a4b2e5ed6826040516128fb91906136c2565b60405180910390a25050565b600061291282612f9f565b61291b42612ede565b6129259190614053565b90506129318282612c9b565b7ff1038c18cf84a56e432fdbfaf746924b7ea511dfe03a6506a0ceba4888788d9b8282604051610a8f929190613d1d565b600061296c612608565b9050600080612979611eed565b9150915061298e8165ffffffffffff16151590565b15806129a0575061299e8161262c565b155b156129c057806040516319ca5ebb60e01b8152600401610a3b91906136c2565b6129d260006129cd6116c7565b612e33565b506129de600083612dc0565b505081546001600160d01b03191690915550565b6129fb82610e90565b612a0481612308565b6120bf8383612e33565b6124ea600080612f15565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b612a45612fe7565b610ed8828261300c565b6001600160a01b038316612a79576000604051639cfea58360e01b8152600401610a3b9190613953565b6001600160a01b038416612aa35760006040516313053d9360e21b8152600401610a3b9190613953565b600080612ab08484612b18565b91509150612ac086868484612b40565b505050505050565b612ad28282611b2d565b610ed857808260405163e2517d3f60e01b8152600401610a3b92919061403a565b60006001600160e01b031982166318a4c3c360e11b1480610a045750610a0482613072565b6040805160018082526020820194909452808201938452606081019290925260808201905291565b6000612b4a61254c565b9050612b58858585856130a7565b6001600160a01b038516612c06576000805b8451811015612bea576000848281518110612b8757612b87613f03565b6020026020010151905080846000016000888581518110612baa57612baa613f03565b602002602001015181526020019081526020016000206000828254612bcf9190613f46565b90915550612bdf90508184613f46565b925050600101612b6a565b5080826001016000828254612bff9190613f46565b9091555050505b6001600160a01b038416610d2f576000805b8451811015612c87576000848281518110612c3557612c35613f03565b6020026020010151905080846000016000888581518110612c5857612c58613f03565b602090810291909101810151825281019190915260400160002080549190910390559190910190600101612c18565b506001820180549190910390555050505050565b6000612ca5612608565b6001810154909150600160d01b900465ffffffffffff168015612d2857612ccb8161262c565b15612cfe57600182015482546001600160d01b0316600160a01b90910465ffffffffffff16600160d01b02178255612d28565b6040517f2b1fa2edafe6f7b9e97c1a9e0c3660e645beb2dcaa2d45bdbf9beaf5472e1ec590600090a15b5060010180546001600160a01b0316600160a01b65ffffffffffff948516026001600160d01b031617600160d01b9290931691909102919091179055565b6000612d7b6001600160a01b038416836132de565b90508051600014158015612da0575080806020019051810190612d9e9190613ebd565b155b15610f8e5782604051635274afe760e01b8152600401610a3b9190613953565b600080612dcb612608565b905083612e21576000612ddc6116c7565b6001600160a01b031614612e0357604051631fe1e13d60e11b815260040160405180910390fd5b6001810180546001600160a01b0319166001600160a01b0385161790555b612e2b84846132ec565b949350505050565b600080612e3e612608565b905083158015612e665750612e516116c7565b6001600160a01b0316836001600160a01b0316145b15612e7e576001810180546001600160a01b03191690555b612e2b848461338d565b612e9182613405565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115612ed657610f8e8282613461565b610ed86134d7565b600065ffffffffffff821115612f11576040516306dfcc6560e41b81526030600482015260248101839052604401610a3b565b5090565b6000612f1f612608565b90506000612f2b611eed565b835465ffffffffffff8616600160a01b026001600160d01b03199091166001600160a01b038816171784559150612f6b90508165ffffffffffff16151590565b156120bf576040517f8886ebfc4259abdbc16601dd8fb5678e54878f47b3c34836cfc51154a960510990600090a150505050565b600080612faa611e42565b90508065ffffffffffff168365ffffffffffff1611612fd257612fcd8382614071565b611a23565b611a2365ffffffffffff8416620697806134f6565b612fef61350c565b6124ea57604051631afcd79f60e31b815260040160405180910390fd5b613014612fe7565b600061301e612608565b90506001600160a01b03821661304a576000604051636116401160e11b8152600401610a3b9190613953565b80546001600160d01b0316600160d01b65ffffffffffff8516021781556120bf600083612dc0565b60006001600160e01b03198216637965db0b60e01b1480610a0457506301ffc9a760e01b6001600160e01b0319831614610a04565b60006130b16122e4565b905081518351146130e25782518251604051633b5cfc6960e21b815260048101929092526024820152604401610a3b565b3360005b84518110156131f25760006130fb86836126de565b9050600061310986846126de565b90506001600160a01b038916156131a3576000828152602086815260408083206001600160a01b038d1684529091529020548181101561317c5760405163670f004560e01b81526001600160a01b038b166004820152602481018290526044810183905260648101849052608401610a3b565b6000838152602087815260408083206001600160a01b038e16845290915290209082900390555b6001600160a01b038816156131e8576000828152602086815260408083206001600160a01b038c168452909152812080548392906131e2908490613f46565b90915550505b50506001016130e6565b50835160010361327f57600061320885826126de565b9050600061321685826126de565b9050866001600160a01b0316886001600160a01b0316846001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051613270929190918252602082015260400190565b60405180910390a45050612ac0565b846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516132ce92919061408f565b60405180910390a4505050505050565b6060611a2383836000613526565b6000806132f76125c8565b90506133038484611b2d565b613383576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556133393390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610a04565b6000915050610a04565b6000806133986125c8565b90506133a48484611b2d565b15613383576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610a04565b806001600160a01b03163b6000036134325780604051634c9c8ce360e01b8152600401610a3b9190613953565b60008051602061413183398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161347e91906140b4565b600060405180830381855af49150503d80600081146134b9576040519150601f19603f3d011682016040523d82523d6000602084013e6134be565b606091505b50915091506134ce8583836135c3565b95945050505050565b34156124ea5760405163b398979f60e01b815260040160405180910390fd5b60008183106135055781611a23565b5090919050565b6000613516612a19565b54600160401b900460ff16919050565b60608147101561354b573060405163cd78605960e01b8152600401610a3b9190613953565b600080856001600160a01b0316848660405161356791906140b4565b60006040518083038185875af1925050503d80600081146135a4576040519150601f19603f3d011682016040523d82523d6000602084013e6135a9565b606091505b50915091506135b98683836135c3565b9695505050505050565b6060826135d357612fcd82613611565b81511580156135ea57506001600160a01b0384163b155b1561360a5783604051639996b31560e01b8152600401610a3b9190613953565b5080611a23565b8051156136215780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114610d0857600080fd5b6000806040838503121561366257600080fd5b823561366d8161363a565b946020939093013593505050565b60006020828403121561368d57600080fd5b8135611a238161363a565b6000602082840312156136aa57600080fd5b81356001600160e01b031981168114611a2357600080fd5b65ffffffffffff91909116815260200190565b60008083601f8401126136e757600080fd5b5081356001600160401b038111156136fe57600080fd5b6020830191508360208260051b850101111561371957600080fd5b9250929050565b6000806000806000806080878903121561373957600080fd5b86356001600160401b0381111561374f57600080fd5b61375b89828a016136d5565b90975095505060208701356001600160401b0381111561377a57600080fd5b61378689828a016136d5565b909550935050604087013561379a8161363a565b915060608701356137aa8161363a565b809150509295509295509295565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156137f6576137f66137b8565b604052919050565b60006001600160401b03821115613817576138176137b8565b5060051b60200190565b600082601f83011261383257600080fd5b8135613845613840826137fe565b6137ce565b8082825260208201915060208360051b86010192508583111561386757600080fd5b602085015b8381101561388457803583526020928301920161386c565b5095945050505050565b600080600080608085870312156138a457600080fd5b84356138af8161363a565b935060208501356138bf8161363a565b925060408501356001600160401b038111156138da57600080fd5b6138e687828801613821565b92505060608501356001600160401b0381111561390257600080fd5b61390e87828801613821565b91505092959194509250565b6000806040838503121561392d57600080fd5b82356139388161363a565b915060208301356139488161363a565b809150509250929050565b6001600160a01b0391909116815260200190565b60006020828403121561397957600080fd5b5035919050565b6000806040838503121561399357600080fd5b8235915060208301356139488161363a565b600082601f8301126139b657600080fd5b81356139c4613840826137fe565b8082825260208201915060208360051b8601019250858311156139e657600080fd5b602085015b838110156138845780356139fe8161363a565b8352602092830192016139eb565b600080600060608486031215613a2157600080fd5b8335613a2c8161363a565b925060208401356001600160401b03811115613a4757600080fd5b613a53868287016139a5565b92505060408401356001600160401b03811115613a6f57600080fd5b613a7b86828701613821565b9150509250925092565b600080600080600080600060e0888a031215613aa057600080fd5b8735613aab8161363a565b96506020880135613abb8161363a565b95506040880135613acb8161363a565b9450606088013593506080880135925060a0880135915060c0880135613af08161363a565b8091505092959891949750929550565b60008060408385031215613b1357600080fd5b82356001600160401b03811115613b2957600080fd5b613b35858286016139a5565b92505060208301356001600160401b03811115613b5157600080fd5b613b5d85828601613821565b9150509250929050565b600081518084526020840193506020830160005b82811015613b99578151865260209586019590910190600101613b7b565b5093949350505050565b602081526000611a236020830184613b67565b60008060408385031215613bc957600080fd5b8235613bd48161363a565b915060208301356001600160401b03811115613bef57600080fd5b8301601f81018513613c0057600080fd5b80356001600160401b03811115613c1957613c196137b8565b613c2c601f8201601f19166020016137ce565b818152866020838501011115613c4157600080fd5b816020840160208301376000602083830101528093505050509250929050565b600060208284031215613c7357600080fd5b813565ffffffffffff81168114611a2357600080fd5b60008060008060808587031215613c9f57600080fd5b843593506020850135613cb18161363a565b92506040850135613cc18161363a565b91506060850135613cd18161363a565b939692955090935050565b600080600060608486031215613cf157600080fd5b8335613cfc8161363a565b92506020840135613d0c8161363a565b929592945050506040919091013590565b65ffffffffffff92831681529116602082015260400190565b60005b83811015613d51578181015183820152602001613d39565b50506000910152565b6020815260008251806020840152613d79816040850160208701613d36565b601f01601f19169190910160400192915050565b8015158114610d0857600080fd5b60008060408385031215613dae57600080fd5b8235613db98161363a565b9150602083013561394881613d8d565b600080600080600080600060e0888a031215613de457600080fd5b8735613def8161363a565b96506020880135613dff8161363a565b95506040880135613e0f8161363a565b94506060880135613e1f8161363a565b93506080880135613e2f8161363a565b925060a0880135613e3f8161363a565b915060c0880135613af08161363a565b60008060008060808587031215613e6557600080fd5b8435613e708161363a565b93506020850135613e808161363a565b93969395505050506040820135916060013590565b6020808252600e908201526d433a205a65726f4164647265737360901b604082015260600190565b600060208284031215613ecf57600080fd5b8151611a2381613d8d565b6020808252600f908201526e219d1024b73b30b634b22a37b5b2b760891b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a0457610a04613f19565b80820180821115610a0457610a04613f19565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b600060208284031215613f9557600080fd5b5051919050565b81810381811115610a0457610a04613f19565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6020808252600f908201526e219d102737a832b936b4b9b9b4b7b760891b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261402157614021613ffc565b500490565b60008261403557614035613ffc565b500690565b6001600160a01b03929092168252602082015260400190565b65ffffffffffff8181168382160190811115610a0457610a04613f19565b65ffffffffffff8281168282160390811115610a0457610a04613f19565b6040815260006140a26040830185613b67565b82810360208401526134ce8185613b67565b600082516140c6818460208701613d36565b919091019291505056fe8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6ce2b7fb3b832174769106daebcfd6d1970523240dda11281102db9363b83b0dc48c7f5bc5570da1e1566900b84b7abf69204a9d8023ec1aa37b6f293075efb36b360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcba279271fb7bbf76a6f3df3cc57bf80647fcafdea60ec3383d90f459de74e7c0724f6a44d576143e18c60911798b2b15551ca96bd8f7cb7524b8fa36253a26d8a26469706673582212202c65c3ae99370fbd856ce0b2be46ddb0f66f5bcf9533ecbf48a71bf957a324ce64736f6c634300081b0033

Deployed Bytecode

0x6080604052600436106102945760003560e01c8062fdd58e146102a0578063019ca073146102d357806301ffc9a7146102f5578063022d63fb1461032557806302768de41461034457806302ca821214610366578063089eb4e4146103865780630aa6220b1461039957806317fad7fc146103ae57806318160ddd146103ce578063206b60f9146103e3578063209c8cfe146104055780632185852114610425578063248a9ca3146104525780632f2ff15d1461047257806336568abe14610492578063369c57e2146104b2578063477e66f9146104d25780634da91757146104f25780634e1273f4146105125780634f1ef2861461053f5780634f558e79146105525780635096c6ac1461057257806352d1902d14610592578063634e93da146105a7578063649a5ec7146105c7578063683097ea146105e757806384ef8ffc146106075780638a62b0e41461061c5780638baf4d8a1461063c5780638bfb07c91461064f5780638da5cb5b1461066f578063918a29531461068457806391d1485414610697578063926d7d7f146106b75780639bbef064146106d95780639d23c4c714610706578063a07ce6ca14610726578063a1c0e2f214610746578063a1eda53c14610776578063a217fddf14610799578063ad3cb1cc146107ae578063bd36924c146107ec578063bd85b0391461080c578063cc8463c81461082c578063ccc5749014610799578063cefc142914610841578063cf6eefb714610856578063d4437c2014610891578063d547741f146108b1578063d602b9fd146108d1578063df668eca146108e6578063df709adb14610908578063ef2d856914610935578063f7888aec14610955578063f7c6254b14610975578063fde9cc2a14610995578063fe99049a146109b557600080fd5b3661029b57005b600080fd5b3480156102ac57600080fd5b506102c06102bb36600461364f565b6109d5565b6040519081526020015b60405180910390f35b3480156102df57600080fd5b506102f36102ee36600461367b565b610a0a565b005b34801561030157600080fd5b50610315610310366004613698565b610a9b565b60405190151581526020016102ca565b34801561033157600080fd5b50620697805b6040516102ca91906136c2565b34801561035057600080fd5b506102c060008051602061415183398151915281565b34801561037257600080fd5b506102f361038136600461367b565b610ac0565b6102f3610394366004613720565b610b3c565b3480156103a557600080fd5b506102f3610cf5565b3480156103ba57600080fd5b506102f36103c936600461388e565b610d0b565b3480156103da57600080fd5b506102c0610d36565b3480156103ef57600080fd5b506102c06000805160206140d183398151915281565b34801561041157600080fd5b506102f361042036600461391a565b610d4b565b34801561043157600080fd5b50600454610445906001600160a01b031681565b6040516102ca9190613953565b34801561045e57600080fd5b506102c061046d366004613967565b610e90565b34801561047e57600080fd5b506102f361048d366004613980565b610eb0565b34801561049e57600080fd5b506102f36104ad366004613980565b610edc565b3480156104be57600080fd5b50600154610445906001600160a01b031681565b3480156104de57600080fd5b506102f36104ed366004613a0c565b610f93565b3480156104fe57600080fd5b506102f361050d366004613a85565b611231565b34801561051e57600080fd5b5061053261052d366004613b00565b611510565b6040516102ca9190613ba3565b6102f361054d366004613bb6565b6115d8565b34801561055e57600080fd5b5061031561056d366004613967565b6115f3565b34801561057e57600080fd5b50600554610445906001600160a01b031681565b34801561059e57600080fd5b506102c0611606565b3480156105b357600080fd5b506102f36105c236600461367b565b611623565b3480156105d357600080fd5b506102f36105e2366004613c61565b611637565b3480156105f357600080fd5b506102f361060236600461367b565b61164b565b34801561061357600080fd5b506104456116c7565b34801561062857600080fd5b50600054610445906001600160a01b031681565b6102c061064a366004613c89565b6116e5565b34801561065b57600080fd5b506102c061066a366004613cdc565b611838565b34801561067b57600080fd5b50610445611a2a565b6102f3610692366004613c89565b611a39565b3480156106a357600080fd5b506103156106b2366004613980565b611b2d565b3480156106c357600080fd5b506102c06000805160206140f183398151915281565b3480156106e557600080fd5b506102c06106f436600461367b565b60076020526000908152604090205481565b34801561071257600080fd5b50600254610445906001600160a01b031681565b34801561073257600080fd5b506102f361074136600461364f565b611b63565b34801561075257600080fd5b5061031561076136600461367b565b60086020526000908152604090205460ff1681565b34801561078257600080fd5b5061078b611d55565b6040516102ca929190613d1d565b3480156107a557600080fd5b506102c0600081565b3480156107ba57600080fd5b506107df604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516102ca9190613d5a565b3480156107f857600080fd5b506102f3610807366004613d9b565b611dba565b34801561081857600080fd5b506102c0610827366004613967565b611e25565b34801561083857600080fd5b50610337611e42565b34801561084d57600080fd5b506102f3611ead565b34801561086257600080fd5b5061086b611eed565b604080516001600160a01b03909316835265ffffffffffff9091166020830152016102ca565b34801561089d57600080fd5b506102f36108ac36600461367b565b611f1d565b3480156108bd57600080fd5b506102f36108cc366004613980565b611f99565b3480156108dd57600080fd5b506102f3611fc1565b3480156108f257600080fd5b506102c060008051602061417183398151915281565b34801561091457600080fd5b506102c061092336600461367b565b60066020526000908152604090205481565b34801561094157600080fd5b506102f3610950366004613cdc565b611fd4565b34801561096157600080fd5b506102c061097036600461391a565b6120c5565b34801561098157600080fd5b50600354610445906001600160a01b031681565b3480156109a157600080fd5b506102f36109b0366004613dc9565b6120da565b3480156109c157600080fd5b506102f36109d0366004613e4f565b6122c0565b6000806109e06122e4565b6000848152602091825260408082206001600160a01b038816835290925220549150505b92915050565b6000610a1581612308565b6001600160a01b038216610a445760405162461bcd60e51b8152600401610a3b90613e95565b60405180910390fd5b600480546001600160a01b0319166001600160a01b0384161790556040517f95051352f31221f3a0bfca2d59e5827b0a9ef1a5198e4049e91142d7acc76ed990610a8f908490613953565b60405180910390a15050565b60006001600160e01b031982166329e31d4760e21b1480610a045750610a0482612312565b6000610acb81612308565b6001600160a01b038216610af15760405162461bcd60e51b8152600401610a3b90613e95565b600080546001600160a01b0319166001600160a01b0384161790556040517f1cd4a9f0f17dfc2c0fb2ee6b253c1ffcffd25a85fba5ec1c8ba89896c9bcba3690610a8f908490613953565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd90610b6c908590600401613953565b602060405180830381865afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190613ebd565b610bc95760405162461bcd60e51b8152600401610a3b90613eda565b6001600160a01b038216600090815260076020526040812054815b87811015610cdf5781898983818110610bff57610bff613f03565b90506020020135610c109190613f2f565b610c1a9084613f46565b9250610c6e878783818110610c3157610c31613f03565b9050602002016020810190610c46919061367b565b866001600160a01b03168b8b85818110610c6257610c62613f03565b90506020020135612352565b6000805160206141118339815191528533898985818110610c9157610c91613f03565b9050602002016020810190610ca6919061367b565b8c8c86818110610cb857610cb8613f03565b90506020020135604051610ccf9493929190613f59565b60405180910390a1600101610be4565b50610ceb8484846123be565b5050505050505050565b6000610d0081612308565b610d086124df565b50565b6000805160206140d1833981519152610d2381612308565b610d2f858585856124ec565b5050505050565b600080610d4161254c565b6001015492915050565b6000610d5681612308565b6001600160a01b0383166000818152600760205260408120549091610d7a90611e25565b610d849190613f2f565b6040516370a0823160e01b81526001600160a01b038616906370a0823190610db0903090600401613953565b602060405180830381865afa158015610dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df19190613f83565b610dfb9190613f9c565b905080600003610e3b5760405162461bcd60e51b815260206004820152600b60248201526a433a204e6f45786365737360a81b6044820152606401610a3b565b610e4f6001600160a01b0385168483612570565b7f753e7e8be98e512034401050a36a864823ca659d2f3cf27d19bcbe51e64f150e848483604051610e8293929190613faf565b60405180910390a150505050565b600080610e9b6125c8565b60009384526020525050604090206001015490565b81610ece57604051631fe1e13d60e11b815260040160405180910390fd5b610ed882826125ec565b5050565b6000610ee6612608565b905082158015610f0e5750610ef96116c7565b6001600160a01b0316826001600160a01b0316145b15610f8457600080610f1e611eed565b90925090506001600160a01b038216151580610f40575065ffffffffffff8116155b80610f515750610f4f8161262c565b155b15610f7157806040516319ca5ebb60e01b8152600401610a3b91906136c2565b5050805465ffffffffffff60a01b191681555b610f8e838361263b565b505050565b60035460405163673448dd60e01b81526001600160a01b039091169063673448dd90610fc3903390600401613953565b602060405180830381865afa158015610fe0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110049190613ebd565b80611022575061102260008051602061415183398151915233611b2d565b61103e5760405162461bcd60e51b8152600401610a3b90613fd3565b80518251146110825760405162461bcd60e51b815260206004820152601060248201526f086744092dcecc2d8d2c898cadccee8d60831b6044820152606401610a3b565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd906110b2908690600401613953565b602060405180830381865afa1580156110cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f39190613ebd565b61110f5760405162461bcd60e51b8152600401610a3b90613eda565b60008251116111505760405162461bcd60e51b815260206004820152600d60248201526c0867440b4cae4de98cadccee8d609b1b6044820152606401610a3b565b6001600160a01b038316600090815260076020526040812054815b84518110156112155783818151811061118657611186613f03565b60200260200101516000031561120d57818482815181106111a9576111a9613f03565b60200260200101516111bb9190613f2f565b6111c59084613f46565b925061120d8582815181106111dc576111dc613f03565b6020026020010151876001600160a01b031686848151811061120057611200613f03565b6020026020010151612352565b60010161116b565b508115610d2f57610d2f6001600160a01b03861633308561266e565b60035460405163673448dd60e01b81526001600160a01b039091169063673448dd90611261903390600401613953565b602060405180830381865afa15801561127e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a29190613ebd565b806112c057506112c060008051602061417183398151915233611b2d565b6112fd5760405162461bcd60e51b815260206004820152600e60248201526d10ce88139bdd105c1c1c9bdd995960921b6044820152606401610a3b565b6001600160a01b03811660009081526008602052604090205460ff1661135b5760405162461bcd60e51b8152602060048201526013602482015272299d1024b73b30b634b21032bc32b1baba37b960691b6044820152606401610a3b565b6001600160a01b0387811660009081526007602052604081205490918316906376eb8964908a908a9061138e908a613f2f565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606481018790526084810186905260a4016020604051808303816000875af11580156113f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114149190613f83565b6001600160a01b038916600081815260076020526040902054919250611446918891906114419085614012565b612696565b61145a86886001600160a01b031687612352565b6001600160a01b03881660009081526007602052604081205461147d9083614026565b905080156114b3576001600160a01b038916600090815260066020526040812080548392906114ad908490613f46565b90915550505b604080516001600160a01b03808c1682528a166020820152908101839052606081018790527f486a69d60d9fecd956b72c0b1997defc1e2b5521b8857105053a841fc8ddb4be9060800160405180910390a1505050505050505050565b606081518351146115415781518351604051633b5cfc6960e21b815260048101929092526024820152604401610a3b565b600083516001600160401b0381111561155c5761155c6137b8565b604051908082528060200260200182016040528015611585578160200160208202803683370190505b50905060005b84518110156115d0576115ab6115a186836126de565b6102bb86846126de565b8282815181106115bd576115bd613f03565b602090810291909101015260010161158b565b509392505050565b6115e06126ec565b6115e982612791565b610ed8828261279c565b6000806115ff83611e25565b1192915050565b6000611610612850565b5060008051602061413183398151915290565b600061162e81612308565b610ed882612899565b600061164281612308565b610ed882612907565b600061165681612308565b6001600160a01b03821661167c5760405162461bcd60e51b8152600401610a3b90613e95565b600580546001600160a01b0319166001600160a01b0384161790556040517f7f5d00120a926c876ce4816651370a46e09328a60953ca2001f71ff396c3ac2890610a8f908490613953565b6000806116d2612608565b600101546001600160a01b031692915050565b60025460405163673448dd60e01b81526000916001600160a01b03169063673448dd90611716908690600401613953565b602060405180830381865afa158015611733573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117579190613ebd565b6117735760405162461bcd60e51b8152600401610a3b90613eda565b61177e8383876123be565b6001600160a01b0383166000908152600760205260409020546117a18187614012565b915060006117af8284613f2f565b6117b99088613f9c565b905080156117ef576001600160a01b038516600090815260066020526040812080548392906117e9908490613f46565b90915550505b61180386866001600160a01b031685612352565b600080516020614111833981519152853388866040516118269493929190613f59565b60405180910390a15050949350505050565b60035460405163673448dd60e01b81526000916001600160a01b03169063673448dd90611869903390600401613953565b602060405180830381865afa158015611886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118aa9190613ebd565b806118c857506118c860008051602061415183398151915233611b2d565b6118e45760405162461bcd60e51b8152600401610a3b90613fd3565b600154604051638612d04960e01b81526001600160a01b038681166004830152858116602483015290911690638612d04990604401602060405180830381865afa158015611936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195a9190613ebd565b156119995760405162461bcd60e51b815260206004820152600f60248201526e10ce8810dc99591a5d131bd8dad959608a1b6044820152606401610a3b565b6119ad84846001600160a01b031684612696565b6001600160a01b0383166000908152600760205260409020546119d09083613f2f565b90507f40d7e30cc800205149221bce90559d771cee6abc9e1d6b003873d1ca9d62170384338585604051611a079493929190613f59565b60405180910390a1611a236001600160a01b0384163383612570565b9392505050565b6000611a346116c7565b905090565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd90611a69908590600401613953565b602060405180830381865afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa9190613ebd565b611ac65760405162461bcd60e51b8152600401610a3b90613eda565b6001600160a01b038216600090815260076020526040902054611af69083908390611af19088613f2f565b6123be565b611b0a83836001600160a01b031686612352565b60008051602061411183398151915282338587604051610e829493929190613f59565b600080611b386125c8565b6000948552602090815260408086206001600160a01b03959095168652939052505090205460ff1690565b6000611b6e81612308565b60025460405163673448dd60e01b81526001600160a01b039091169063673448dd90611b9e908690600401613953565b602060405180830381865afa158015611bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdf9190613ebd565b611bfb5760405162461bcd60e51b8152600401610a3b90613eda565b6001600160a01b03831660009081526007602052604090205415611c565760405162461bcd60e51b815260206004820152601260248201527110ce8814985d1a5bd05b1c9958591e54d95d60721b6044820152606401610a3b565b60008211611c985760405162461bcd60e51b815260206004820152600f60248201526e433a20496e76616c6964526174696f60881b6044820152606401610a3b565b6001600160a01b03831660009081526007602052604090819020839055517f550f6eb1072ba95efb888967e72f50b38848286d7dc972f683a2c1a48bdcb13190611ce5908590859061403a565b60405180910390a16004805460405163b2a97fb160e01b81526001600160a01b039091169163b2a97fb191611d1e91879187910161403a565b600060405180830381600087803b158015611d3857600080fd5b505af1158015611d4c573d6000803e3d6000fd5b50505050505050565b6000806000611d62612608565b6001810154600160d01b900465ffffffffffff16925090508115158015611d8f5750611d8d8261262c565b155b611d9b57600080611db1565b6001810154600160a01b900465ffffffffffff16825b92509250509091565b6000611dc581612308565b6001600160a01b038316600081815260086020908152604091829020805460ff191686151590811790915591519182527fd45d64088391089bdbf2b59ebb7ed88d6e19b36a95c42479720a180df18d7106910160405180910390a2505050565b600080611e3061254c565b60009384526020525050604090205490565b600080611e4d612608565b6001810154909150600160d01b900465ffffffffffff168015158015611e775750611e778161262c565b611e91578154600160d01b900465ffffffffffff16611ea6565b6001820154600160a01b900465ffffffffffff165b9250505090565b6000611eb7611eed565b509050336001600160a01b03821614611ee55733604051636116401160e11b8152600401610a3b9190613953565b610d08612962565b6000806000611efa612608565b546001600160a01b03811694600160a01b90910465ffffffffffff169350915050565b6000611f2881612308565b6001600160a01b038216611f4e5760405162461bcd60e51b8152600401610a3b90613e95565b600180546001600160a01b0319166001600160a01b0384161790556040517f7a3e52411bc74d5cfaf60e90dd86062fb60afb65367bf8d11444b5fbd7f258ea90610a8f908490613953565b81611fb757604051631fe1e13d60e11b815260040160405180910390fd5b610ed882826129f2565b6000611fcc81612308565b610d08612a0e565b6000611fdf81612308565b6001600160a01b0384166000908152600660205260409020548211156120425760405162461bcd60e51b8152602060048201526018602482015277433a20496e73756666696369656e74416c6c6f77616e636560401b6044820152606401610a3b565b6001600160a01b0384166000908152600660205260408120805484929061206a908490613f9c565b90915550506040517f5de7cdb113ed505d60aa5d86e343a8866c9c71666cccc811e1a0d153b02c6982906120a390869086908690613faf565b60405180910390a16120bf6001600160a01b0385168484612570565b50505050565b6000611a2383836001600160a01b03166109d5565b60006120e4612a19565b805490915060ff600160401b82041615906001600160401b031660008115801561210b5750825b90506000826001600160401b031660011480156121275750303b155b905081158015612135575080155b156121535760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561217c57845460ff60401b1916600160401b1785555b61218760008d612a3d565b6001600160a01b038b1615806121a457506001600160a01b038a16155b806121b657506001600160a01b038816155b806121c857506001600160a01b038916155b806121da57506001600160a01b038716155b806121ec57506001600160a01b038616155b1561220a57604051639091990760e01b815260040160405180910390fd5b600080546001600160a01b03199081166001600160a01b038e8116919091179092556005805482168d84161790556001805482168b84161790556002805482168c84161790556003805482168984161790556004805490911691891691909117905583156122b257845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050505050565b6000805160206140d18339815191526122d881612308565b610d2f85858585612a4f565b7f3487ca777fe86250bb0b5cc12e94513947700c89dfa1fbaf3d5e12571161bd0090565b610d088133612ac8565b60006001600160e01b031982166329e31d4760e21b148061234357506001600160e01b03198216637965db0b60e01b145b80610a045750610a0482612af3565b6001600160a01b03831661237c576000604051639cfea58360e01b8152600401610a3b9190613953565b806000036123a05760405163181c9d0b60e21b815260048101829052602401610a3b565b6000806123ad8484612b18565b91509150610d2f6000868484612b40565b6001600160a01b0382163314806123e857506123e86000805160206140f183398151915233611b2d565b6124045760405162461bcd60e51b8152600401610a3b90613fd3565b6000546001600160a01b03848116911614801561242057508034145b156124875760008054906101000a90046001600160a01b03166001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561247357600080fd5b505af1158015610ceb573d6000803e3d6000fd5b34156124ca5760405162461bcd60e51b8152602060048201526012602482015271433a20496e76616c6964507572636861736560701b6044820152606401610a3b565b610f8e6001600160a01b03841683308461266e565b6124ea600080612c9b565b565b6001600160a01b038316612516576000604051639cfea58360e01b8152600401610a3b9190613953565b6001600160a01b0384166125405760006040516313053d9360e21b8152600401610a3b9190613953565b6120bf84848484612b40565b7f4e55d81dc4eb0cd46630d521688a8afca3df196dfda92ac786604a850941da0090565b610f8e83846001600160a01b031663a9059cbb858560405160240161259692919061403a565b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050612d66565b7f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b62680090565b6125f582610e90565b6125fe81612308565b6120bf8383612dc0565b7feef3dac4538c82c8ace4063ab0acd2d15cdb5883aa1dff7c2673abb3d869840090565b4265ffffffffffff9091161090565b6001600160a01b03811633146126645760405163334bd91960e11b815260040160405180910390fd5b610f8e8282612e33565b6120bf84856001600160a01b03166323b872dd86868660405160240161259693929190613faf565b6001600160a01b0383166126c05760006040516313053d9360e21b8152600401610a3b9190613953565b6000806126cd8484612b18565b91509150610d2f8560008484612b40565b602090810291909101015190565b306001600160a01b037f000000000000000000000000c9926ed037b9d0507e2e33141e73686564a7e2a416148061277357507f000000000000000000000000c9926ed037b9d0507e2e33141e73686564a7e2a46001600160a01b0316612767600080516020614131833981519152546001600160a01b031690565b6001600160a01b031614155b156124ea5760405163703e46dd60e11b815260040160405180910390fd5b6000610ed881612308565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156127f6575060408051601f3d908101601f191682019092526127f391810190613f83565b60015b6128155781604051634c9c8ce360e01b8152600401610a3b9190613953565b600080516020614131833981519152811461284657604051632a87526960e21b815260048101829052602401610a3b565b610f8e8383612e88565b306001600160a01b037f000000000000000000000000c9926ed037b9d0507e2e33141e73686564a7e2a416146124ea5760405163703e46dd60e11b815260040160405180910390fd5b60006128a3611e42565b6128ac42612ede565b6128b69190614053565b90506128c28282612f15565b816001600160a01b03167f3377dc44241e779dd06afab5b788a35ca5f3b778836e2990bdb26a2a4b2e5ed6826040516128fb91906136c2565b60405180910390a25050565b600061291282612f9f565b61291b42612ede565b6129259190614053565b90506129318282612c9b565b7ff1038c18cf84a56e432fdbfaf746924b7ea511dfe03a6506a0ceba4888788d9b8282604051610a8f929190613d1d565b600061296c612608565b9050600080612979611eed565b9150915061298e8165ffffffffffff16151590565b15806129a0575061299e8161262c565b155b156129c057806040516319ca5ebb60e01b8152600401610a3b91906136c2565b6129d260006129cd6116c7565b612e33565b506129de600083612dc0565b505081546001600160d01b03191690915550565b6129fb82610e90565b612a0481612308565b6120bf8383612e33565b6124ea600080612f15565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b612a45612fe7565b610ed8828261300c565b6001600160a01b038316612a79576000604051639cfea58360e01b8152600401610a3b9190613953565b6001600160a01b038416612aa35760006040516313053d9360e21b8152600401610a3b9190613953565b600080612ab08484612b18565b91509150612ac086868484612b40565b505050505050565b612ad28282611b2d565b610ed857808260405163e2517d3f60e01b8152600401610a3b92919061403a565b60006001600160e01b031982166318a4c3c360e11b1480610a045750610a0482613072565b6040805160018082526020820194909452808201938452606081019290925260808201905291565b6000612b4a61254c565b9050612b58858585856130a7565b6001600160a01b038516612c06576000805b8451811015612bea576000848281518110612b8757612b87613f03565b6020026020010151905080846000016000888581518110612baa57612baa613f03565b602002602001015181526020019081526020016000206000828254612bcf9190613f46565b90915550612bdf90508184613f46565b925050600101612b6a565b5080826001016000828254612bff9190613f46565b9091555050505b6001600160a01b038416610d2f576000805b8451811015612c87576000848281518110612c3557612c35613f03565b6020026020010151905080846000016000888581518110612c5857612c58613f03565b602090810291909101810151825281019190915260400160002080549190910390559190910190600101612c18565b506001820180549190910390555050505050565b6000612ca5612608565b6001810154909150600160d01b900465ffffffffffff168015612d2857612ccb8161262c565b15612cfe57600182015482546001600160d01b0316600160a01b90910465ffffffffffff16600160d01b02178255612d28565b6040517f2b1fa2edafe6f7b9e97c1a9e0c3660e645beb2dcaa2d45bdbf9beaf5472e1ec590600090a15b5060010180546001600160a01b0316600160a01b65ffffffffffff948516026001600160d01b031617600160d01b9290931691909102919091179055565b6000612d7b6001600160a01b038416836132de565b90508051600014158015612da0575080806020019051810190612d9e9190613ebd565b155b15610f8e5782604051635274afe760e01b8152600401610a3b9190613953565b600080612dcb612608565b905083612e21576000612ddc6116c7565b6001600160a01b031614612e0357604051631fe1e13d60e11b815260040160405180910390fd5b6001810180546001600160a01b0319166001600160a01b0385161790555b612e2b84846132ec565b949350505050565b600080612e3e612608565b905083158015612e665750612e516116c7565b6001600160a01b0316836001600160a01b0316145b15612e7e576001810180546001600160a01b03191690555b612e2b848461338d565b612e9182613405565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115612ed657610f8e8282613461565b610ed86134d7565b600065ffffffffffff821115612f11576040516306dfcc6560e41b81526030600482015260248101839052604401610a3b565b5090565b6000612f1f612608565b90506000612f2b611eed565b835465ffffffffffff8616600160a01b026001600160d01b03199091166001600160a01b038816171784559150612f6b90508165ffffffffffff16151590565b156120bf576040517f8886ebfc4259abdbc16601dd8fb5678e54878f47b3c34836cfc51154a960510990600090a150505050565b600080612faa611e42565b90508065ffffffffffff168365ffffffffffff1611612fd257612fcd8382614071565b611a23565b611a2365ffffffffffff8416620697806134f6565b612fef61350c565b6124ea57604051631afcd79f60e31b815260040160405180910390fd5b613014612fe7565b600061301e612608565b90506001600160a01b03821661304a576000604051636116401160e11b8152600401610a3b9190613953565b80546001600160d01b0316600160d01b65ffffffffffff8516021781556120bf600083612dc0565b60006001600160e01b03198216637965db0b60e01b1480610a0457506301ffc9a760e01b6001600160e01b0319831614610a04565b60006130b16122e4565b905081518351146130e25782518251604051633b5cfc6960e21b815260048101929092526024820152604401610a3b565b3360005b84518110156131f25760006130fb86836126de565b9050600061310986846126de565b90506001600160a01b038916156131a3576000828152602086815260408083206001600160a01b038d1684529091529020548181101561317c5760405163670f004560e01b81526001600160a01b038b166004820152602481018290526044810183905260648101849052608401610a3b565b6000838152602087815260408083206001600160a01b038e16845290915290209082900390555b6001600160a01b038816156131e8576000828152602086815260408083206001600160a01b038c168452909152812080548392906131e2908490613f46565b90915550505b50506001016130e6565b50835160010361327f57600061320885826126de565b9050600061321685826126de565b9050866001600160a01b0316886001600160a01b0316846001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628585604051613270929190918252602082015260400190565b60405180910390a45050612ac0565b846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516132ce92919061408f565b60405180910390a4505050505050565b6060611a2383836000613526565b6000806132f76125c8565b90506133038484611b2d565b613383576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556133393390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610a04565b6000915050610a04565b6000806133986125c8565b90506133a48484611b2d565b15613383576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610a04565b806001600160a01b03163b6000036134325780604051634c9c8ce360e01b8152600401610a3b9190613953565b60008051602061413183398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b03168460405161347e91906140b4565b600060405180830381855af49150503d80600081146134b9576040519150601f19603f3d011682016040523d82523d6000602084013e6134be565b606091505b50915091506134ce8583836135c3565b95945050505050565b34156124ea5760405163b398979f60e01b815260040160405180910390fd5b60008183106135055781611a23565b5090919050565b6000613516612a19565b54600160401b900460ff16919050565b60608147101561354b573060405163cd78605960e01b8152600401610a3b9190613953565b600080856001600160a01b0316848660405161356791906140b4565b60006040518083038185875af1925050503d80600081146135a4576040519150601f19603f3d011682016040523d82523d6000602084013e6135a9565b606091505b50915091506135b98683836135c3565b9695505050505050565b6060826135d357612fcd82613611565b81511580156135ea57506001600160a01b0384163b155b1561360a5783604051639996b31560e01b8152600401610a3b9190613953565b5080611a23565b8051156136215780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b0381168114610d0857600080fd5b6000806040838503121561366257600080fd5b823561366d8161363a565b946020939093013593505050565b60006020828403121561368d57600080fd5b8135611a238161363a565b6000602082840312156136aa57600080fd5b81356001600160e01b031981168114611a2357600080fd5b65ffffffffffff91909116815260200190565b60008083601f8401126136e757600080fd5b5081356001600160401b038111156136fe57600080fd5b6020830191508360208260051b850101111561371957600080fd5b9250929050565b6000806000806000806080878903121561373957600080fd5b86356001600160401b0381111561374f57600080fd5b61375b89828a016136d5565b90975095505060208701356001600160401b0381111561377a57600080fd5b61378689828a016136d5565b909550935050604087013561379a8161363a565b915060608701356137aa8161363a565b809150509295509295509295565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156137f6576137f66137b8565b604052919050565b60006001600160401b03821115613817576138176137b8565b5060051b60200190565b600082601f83011261383257600080fd5b8135613845613840826137fe565b6137ce565b8082825260208201915060208360051b86010192508583111561386757600080fd5b602085015b8381101561388457803583526020928301920161386c565b5095945050505050565b600080600080608085870312156138a457600080fd5b84356138af8161363a565b935060208501356138bf8161363a565b925060408501356001600160401b038111156138da57600080fd5b6138e687828801613821565b92505060608501356001600160401b0381111561390257600080fd5b61390e87828801613821565b91505092959194509250565b6000806040838503121561392d57600080fd5b82356139388161363a565b915060208301356139488161363a565b809150509250929050565b6001600160a01b0391909116815260200190565b60006020828403121561397957600080fd5b5035919050565b6000806040838503121561399357600080fd5b8235915060208301356139488161363a565b600082601f8301126139b657600080fd5b81356139c4613840826137fe565b8082825260208201915060208360051b8601019250858311156139e657600080fd5b602085015b838110156138845780356139fe8161363a565b8352602092830192016139eb565b600080600060608486031215613a2157600080fd5b8335613a2c8161363a565b925060208401356001600160401b03811115613a4757600080fd5b613a53868287016139a5565b92505060408401356001600160401b03811115613a6f57600080fd5b613a7b86828701613821565b9150509250925092565b600080600080600080600060e0888a031215613aa057600080fd5b8735613aab8161363a565b96506020880135613abb8161363a565b95506040880135613acb8161363a565b9450606088013593506080880135925060a0880135915060c0880135613af08161363a565b8091505092959891949750929550565b60008060408385031215613b1357600080fd5b82356001600160401b03811115613b2957600080fd5b613b35858286016139a5565b92505060208301356001600160401b03811115613b5157600080fd5b613b5d85828601613821565b9150509250929050565b600081518084526020840193506020830160005b82811015613b99578151865260209586019590910190600101613b7b565b5093949350505050565b602081526000611a236020830184613b67565b60008060408385031215613bc957600080fd5b8235613bd48161363a565b915060208301356001600160401b03811115613bef57600080fd5b8301601f81018513613c0057600080fd5b80356001600160401b03811115613c1957613c196137b8565b613c2c601f8201601f19166020016137ce565b818152866020838501011115613c4157600080fd5b816020840160208301376000602083830101528093505050509250929050565b600060208284031215613c7357600080fd5b813565ffffffffffff81168114611a2357600080fd5b60008060008060808587031215613c9f57600080fd5b843593506020850135613cb18161363a565b92506040850135613cc18161363a565b91506060850135613cd18161363a565b939692955090935050565b600080600060608486031215613cf157600080fd5b8335613cfc8161363a565b92506020840135613d0c8161363a565b929592945050506040919091013590565b65ffffffffffff92831681529116602082015260400190565b60005b83811015613d51578181015183820152602001613d39565b50506000910152565b6020815260008251806020840152613d79816040850160208701613d36565b601f01601f19169190910160400192915050565b8015158114610d0857600080fd5b60008060408385031215613dae57600080fd5b8235613db98161363a565b9150602083013561394881613d8d565b600080600080600080600060e0888a031215613de457600080fd5b8735613def8161363a565b96506020880135613dff8161363a565b95506040880135613e0f8161363a565b94506060880135613e1f8161363a565b93506080880135613e2f8161363a565b925060a0880135613e3f8161363a565b915060c0880135613af08161363a565b60008060008060808587031215613e6557600080fd5b8435613e708161363a565b93506020850135613e808161363a565b93969395505050506040820135916060013590565b6020808252600e908201526d433a205a65726f4164647265737360901b604082015260600190565b600060208284031215613ecf57600080fd5b8151611a2381613d8d565b6020808252600f908201526e219d1024b73b30b634b22a37b5b2b760891b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a0457610a04613f19565b80820180821115610a0457610a04613f19565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b600060208284031215613f9557600080fd5b5051919050565b81810381811115610a0457610a04613f19565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6020808252600f908201526e219d102737a832b936b4b9b9b4b7b760891b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b60008261402157614021613ffc565b500490565b60008261403557614035613ffc565b500690565b6001600160a01b03929092168252602082015260400190565b65ffffffffffff8181168382160190811115610a0457610a04613f19565b65ffffffffffff8281168282160390811115610a0457610a04613f19565b6040815260006140a26040830185613b67565b82810360208401526134ce8185613b67565b600082516140c6818460208701613d36565b919091019291505056fe8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6ce2b7fb3b832174769106daebcfd6d1970523240dda11281102db9363b83b0dc48c7f5bc5570da1e1566900b84b7abf69204a9d8023ec1aa37b6f293075efb36b360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbcba279271fb7bbf76a6f3df3cc57bf80647fcafdea60ec3383d90f459de74e7c0724f6a44d576143e18c60911798b2b15551ca96bd8f7cb7524b8fa36253a26d8a26469706673582212202c65c3ae99370fbd856ce0b2be46ddb0f66f5bcf9533ecbf48a71bf957a324ce64736f6c634300081b0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.