Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- BonusExpManagerUpgradeable
- Optimization enabled
- true
- Compiler version
- v0.8.24+commit.e11b9ed9
- Optimization runs
- 200
- EVM Version
- cancun
- Verified at
- 2025-09-12T09:25:58.246728Z
src/BonusExpManagerUpgradeable.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "./interfaces/IBonusExpManager.sol"; import "./interfaces/IExperienceManager.sol"; import "./interfaces/IAddressManager.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol"; import "./libraries/errors/TrailblazerErrors.sol"; /** * @title BonusExpManagerUpgradeable * @author taiko.xyz * @notice Secure bonus XP manager for achievement-based rewards * @dev Implements signature verification, replay protection, and efficient achievement tracking * * Key Features: * - Backend-signed achievement claims with ECDSA verification * - Sequential nonce system preventing replay attacks * - Bitmap-based achievement tracking for gas efficiency * - Time-limited signatures with configurable expiry * - Emergency pause functionality for security * - Integration with ExperienceManager via AddressManager * * Security Measures: * - Only trusted backend signer can authorize claims * - Nonces prevent double-spending and replay attacks * - Signature expiry prevents stale signature reuse * - Achievement bitmap prevents double claiming * - Role-based access control for admin functions * - Emergency pause for incident response * * @custom:security-contact security@trailblazer.com */ contract BonusExpManagerUpgradeable is IBonusExpManager, Initializable, AccessControlUpgradeable, UUPSUpgradeable { using ECDSA for bytes32; using MessageHashUtils for bytes32; // ============================================ // Constants & Roles // ============================================ /// @notice Role for contract administrators bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); /// @notice Role for signature management bytes32 public constant SIGNER_ROLE = keccak256("SIGNER_ROLE"); /// @notice Role for upgrade authority bytes32 public constant UPGRADER_ROLE = keccak256("UPGRADER_ROLE"); /// @notice Maximum number of achievements per claim (gas limit protection) uint256 public constant MAX_ACHIEVEMENTS_PER_CLAIM = 50; /// @notice Default signature expiry duration (5 minutes) uint256 public constant DEFAULT_SIGNATURE_EXPIRY = 300; /// @notice Maximum signature expiry duration (1 hour) uint256 public constant MAX_SIGNATURE_EXPIRY = 3600; /// @notice Minimum subgraph block age (10 blocks ~2 minutes on most chains) uint256 public constant DEFAULT_MIN_SUBGRAPH_BLOCK_AGE = 10; // ============================================ // State Variables // ============================================ /// @notice Address manager for contract discovery IAddressManager public addressManager; /// @notice Trusted signer for achievement claims address public trustedSigner; /// @notice Whether the contract is paused bool public paused; /// @notice Signature expiry duration in seconds uint256 public signatureExpiry; /// @notice Minimum age required for subgraph block uint256 public minSubgraphBlockAge; /// @notice Player claim status mapping mapping(address => PlayerClaimStatus) public playerClaimStatus; /// @notice Achievement claimed status: player => achievementHash => claimed /// @dev Uses keccak256 hash of achievement ID for gas efficiency mapping(address => mapping(bytes32 => bool)) public achievementClaimed; /// @notice Achievement ID to hash mapping for reverse lookup mapping(bytes32 => string) public achievementHashToId; // ============================================ // Modifiers // ============================================ /** * @notice Ensures contract is not paused */ modifier whenNotPaused() { if (paused) revert ContractPaused(); _; } /** * @notice Validates array inputs */ modifier validArrays(string[] calldata achievementIds, uint256[] calldata xpRewards) { if (achievementIds.length != xpRewards.length) { revert ArraysLengthMismatch(); } if (achievementIds.length == 0 || achievementIds.length > MAX_ACHIEVEMENTS_PER_CLAIM) { revert InvalidArrayLength(); } _; } // ============================================ // Initializer // ============================================ /** * @notice Initializes the BonusExpManagerUpgradeable contract * @param _addressManager Address of the AddressManager contract * @param _trustedSigner Address of the trusted backend signer */ function initialize(address _addressManager, address _trustedSigner) public initializer { if (_addressManager == address(0)) revert ZeroAddress(); if (_trustedSigner == address(0)) revert ZeroAddress(); __AccessControl_init(); __UUPSUpgradeable_init(); addressManager = IAddressManager(_addressManager); trustedSigner = _trustedSigner; signatureExpiry = DEFAULT_SIGNATURE_EXPIRY; minSubgraphBlockAge = DEFAULT_MIN_SUBGRAPH_BLOCK_AGE; paused = false; // Setup roles _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(ADMIN_ROLE, msg.sender); _grantRole(SIGNER_ROLE, msg.sender); _grantRole(UPGRADER_ROLE, msg.sender); emit TrustedSignerUpdated(address(0), _trustedSigner); } // ============================================ // Upgrade Authorization // ============================================ /** * @notice Authorizes contract upgrades * @dev Only UPGRADER_ROLE can upgrade */ function _authorizeUpgrade(address newImplementation) internal override onlyRole(UPGRADER_ROLE) {} // ============================================ // Core Functions // ============================================ /** * @notice Claims XP rewards for unlocked achievements * @dev Verifies signature from trusted backend signer * @param achievementIds Array of achievement IDs to claim * @param xpRewards Array of XP rewards corresponding to each achievement * @param subgraphBlock Block number from subgraph when data was fetched * @param nonce Sequential nonce for replay protection * @param expiry Timestamp when signature expires * @param signature Backend signature authorizing the claim */ function claimAchievementRewards( string[] calldata achievementIds, uint256[] calldata xpRewards, uint256 subgraphBlock, uint256 nonce, uint256 expiry, bytes calldata signature ) external override whenNotPaused validArrays(achievementIds, xpRewards) { _validateClaimRequest(msg.sender, subgraphBlock, nonce, expiry); if (!_verifyClaimSignature(msg.sender, achievementIds, xpRewards, subgraphBlock, nonce, expiry, signature)) { revert InvalidSignature(); } _executeAchievementClaim(msg.sender, achievementIds, xpRewards, nonce); } // ============================================ // Admin Functions // ============================================ /** * @notice Sets the trusted signer address * @dev Only callable by ADMIN_ROLE * @param newSigner Address of the new trusted signer */ function setTrustedSigner(address newSigner) external override onlyRole(ADMIN_ROLE) { if (newSigner == address(0)) revert ZeroAddress(); address oldSigner = trustedSigner; trustedSigner = newSigner; emit TrustedSignerUpdated(oldSigner, newSigner); } /** * @notice Pauses or unpauses the contract * @dev Only callable by ADMIN_ROLE * @param _paused Whether to pause the contract */ function setEmergencyPause(bool _paused) external override onlyRole(ADMIN_ROLE) { paused = _paused; emit EmergencyPause(_paused, msg.sender); } /** * @notice Sets the signature expiry duration * @dev Only callable by ADMIN_ROLE * @param duration New expiry duration in seconds */ function setSignatureExpiry(uint256 duration) external override onlyRole(ADMIN_ROLE) { if (duration == 0 || duration > MAX_SIGNATURE_EXPIRY) revert TrailblazerErrors.InvalidDuration(); uint256 oldDuration = signatureExpiry; signatureExpiry = duration; emit SignatureExpiryUpdated(oldDuration, duration); } /** * @notice Updates the minimum subgraph block age * @dev Only callable by ADMIN_ROLE * @param minAge Minimum age in blocks */ function setMinSubgraphBlockAge(uint256 minAge) external override onlyRole(ADMIN_ROLE) { if (minAge > 100) revert TrailblazerErrors.InvalidConfiguration(); minSubgraphBlockAge = minAge; } // ============================================ // View Functions // ============================================ /** * @notice Gets player's claim status and statistics * @param player Player address to query * @return status Player's claim status struct */ function getPlayerClaimStatus(address player) external view override returns (PlayerClaimStatus memory status) { return playerClaimStatus[player]; } /** * @notice Checks if a specific achievement has been claimed by player * @param player Player address to check * @param achievementId Achievement ID to check * @return claimed Whether the achievement has been claimed */ function isAchievementClaimed(address player, string calldata achievementId) external view override returns (bool claimed) { bytes32 achievementHash = keccak256(abi.encodePacked(achievementId)); return achievementClaimed[player][achievementHash]; } /** * @notice Gets the expected next nonce for a player * @param player Player address to query * @return nonce Next expected nonce */ function getPlayerNonce(address player) external view override returns (uint256 nonce) { return playerClaimStatus[player].nonce; } /** * @notice Gets the current trusted signer address * @return signer Current trusted signer address */ function getTrustedSigner() external view override returns (address signer) { return trustedSigner; } /** * @notice Gets the current signature expiry duration * @return duration Signature expiry duration in seconds */ function getSignatureExpiry() external view override returns (uint256 duration) { return signatureExpiry; } /** * @notice Checks if the contract is currently paused * @return isPausedResult Whether the contract is paused */ function isPaused() external view override returns (bool isPausedResult) { return paused; } /** * @notice Gets the minimum subgraph block age required * @return minAge Minimum block age required */ function getMinSubgraphBlockAge() external view override returns (uint256 minAge) { return minSubgraphBlockAge; } /** * @notice Verifies a signature without executing the claim * @dev Useful for frontend validation * @param player Player address * @param achievementIds Array of achievement IDs * @param xpRewards Array of XP rewards * @param subgraphBlock Subgraph block number * @param nonce Player nonce * @param expiry Signature expiry timestamp * @param signature Signature to verify * @return valid Whether the signature is valid */ function verifySignature( address player, string[] calldata achievementIds, uint256[] calldata xpRewards, uint256 subgraphBlock, uint256 nonce, uint256 expiry, bytes calldata signature ) external view override returns (bool valid) { return _verifyClaimSignature(player, achievementIds, xpRewards, subgraphBlock, nonce, expiry, signature); } // ============================================ // Internal Functions // ============================================ /** * @notice Verifies the claim signature using ECDSA * @dev Creates message hash from claim parameters and verifies against trusted signer * @param player Player address * @param achievementIds Array of achievement IDs * @param xpRewards Array of XP rewards * @param subgraphBlock Subgraph block number * @param nonce Player nonce * @param expiry Signature expiry timestamp * @param signature Signature to verify * @return valid Whether signature is valid */ function _verifyClaimSignature( address player, string[] calldata achievementIds, uint256[] calldata xpRewards, uint256 subgraphBlock, uint256 nonce, uint256 expiry, bytes calldata signature ) internal view returns (bool valid) { // Create message hash (use abi.encode for arrays, not abi.encodePacked) bytes32 messageHash = keccak256(abi.encode(player, achievementIds, xpRewards, subgraphBlock, nonce, expiry)); // Convert to Ethereum signed message hash bytes32 ethSignedMessageHash = messageHash.toEthSignedMessageHash(); // Recover signer and verify address recoveredSigner = ethSignedMessageHash.recover(signature); return recoveredSigner == trustedSigner; } /** * @notice Awards experience points through the ExperienceManager * @dev Calls ExperienceManager via AddressManager for decoupled architecture * @param player Player to award XP to * @param xpAmount Amount of XP to award */ function _awardExperience(address player, uint256 xpAmount) internal { try addressManager.getAddress("EXPERIENCE_MANAGER") returns (address experienceManager) { // Award bonus XP for achievements IExperienceManager(experienceManager).awardBonusXP(player, xpAmount, "Achievement rewards"); } catch { revert("ExperienceManager not found or award failed"); } } /** * @notice Gets player's total XP from ExperienceManager * @dev Used for event emission to provide context * @param player Player address * @return totalXP Player's total XP */ function _getPlayerTotalXP(address player) internal view returns (uint256 totalXP) { try addressManager.getAddress("EXPERIENCE_MANAGER") returns (address experienceManager) { return IExperienceManager(experienceManager).getPlayerExperience(player); } catch { return 0; // Gracefully handle if ExperienceManager is not available } } /** * @notice Validates claim request parameters * @dev Internal function to reduce stack depth */ function _validateClaimRequest(address player, uint256 subgraphBlock, uint256 nonce, uint256 expiry) internal view { if (block.timestamp > expiry) revert SignatureExpired(); if (nonce != playerClaimStatus[player].nonce) revert InvalidNonce(); if (block.number - subgraphBlock < minSubgraphBlockAge) { revert SubgraphBlockTooOld(); } } /** * @notice Executes the achievement claim process * @dev Internal function to reduce stack depth */ function _executeAchievementClaim( address player, string[] calldata achievementIds, uint256[] calldata xpRewards, uint256 nonce ) internal { uint256 totalXP = _processAchievements(player, achievementIds, xpRewards); PlayerClaimStatus storage status = playerClaimStatus[player]; status.nonce += 1; status.totalClaimedXP += totalXP; status.achievementsClaimed += achievementIds.length; status.lastClaimTimestamp = block.timestamp; _awardExperience(player, totalXP); uint256 newPlayerTotal = _getPlayerTotalXP(player); emit AchievementsClaimed(player, achievementIds, xpRewards, totalXP, newPlayerTotal, nonce); } /** * @notice Processes achievements validation and marking * @dev Internal function to reduce stack depth * @param player The player address * @param achievementIds Array of achievement IDs * @param xpRewards Array of XP rewards * @return totalXP Total XP calculated from rewards */ function _processAchievements(address player, string[] calldata achievementIds, uint256[] calldata xpRewards) internal returns (uint256 totalXP) { bytes32[] memory achievementHashes = new bytes32[](achievementIds.length); // First loop: validate and calculate for (uint256 i = 0; i < achievementIds.length; i++) { if (xpRewards[i] == 0) revert InvalidXPAmount(); bytes32 achievementHash = keccak256(abi.encodePacked(achievementIds[i])); achievementHashes[i] = achievementHash; if (achievementClaimed[player][achievementHash]) { revert AchievementAlreadyClaimed(achievementIds[i]); } totalXP += xpRewards[i]; } // Second loop: mark as claimed for (uint256 i = 0; i < achievementHashes.length; i++) { achievementClaimed[player][achievementHashes[i]] = true; achievementHashToId[achievementHashes[i]] = achievementIds[i]; } } }
lib/openzeppelin-contracts-upgradeable/contracts/access/AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol"; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.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 { } /// @inheritdoc IERC165 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` from `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; } } }
lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.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 reinitialization) 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 Pointer to storage slot. Allows integrators to override it with a custom storage location. * * NOTE: Consider following the ERC-7201 formula to derive storage locations. */ function _initializableStorageSlot() internal pure virtual returns (bytes32) { return INITIALIZABLE_STORAGE; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { bytes32 slot = _initializableStorageSlot(); assembly { $.slot := slot } } }
lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.22; 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 ERC-1967) 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 ERC-1167 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 ERC-1822 {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 ERC-1967 compliant implementation pointing to self. */ 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 ERC-1967. * * 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); } } }
lib/openzeppelin-contracts-upgradeable/contracts/utils/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; } }
lib/openzeppelin-contracts-upgradeable/contracts/utils/introspection/ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.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 ERC-165 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 { } /// @inheritdoc IERC165 function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
lib/openzeppelin-contracts/contracts/access/IAccessControl.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (access/IAccessControl.sol) pragma solidity >=0.8.4; /** * @dev External interface of AccessControl declared to support ERC-165 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 to signal 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. This account bears the admin role (for the granted role). * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}. */ 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; }
lib/openzeppelin-contracts/contracts/interfaces/IERC1967.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1967.sol) pragma solidity >=0.4.11; /** * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. */ interface IERC1967 { /** * @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); }
lib/openzeppelin-contracts/contracts/interfaces/draft-IERC1822.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC1822.sol) pragma solidity >=0.4.16; /** * @dev ERC-1822: 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); }
lib/openzeppelin-contracts/contracts/proxy/ERC1967/ERC1967Utils.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (proxy/ERC1967/ERC1967Utils.sol) pragma solidity ^0.8.21; import {IBeacon} from "../beacon/IBeacon.sol"; import {IERC1967} from "../../interfaces/IERC1967.sol"; import {Address} from "../../utils/Address.sol"; import {StorageSlot} from "../../utils/StorageSlot.sol"; /** * @dev This library provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots. */ library ERC1967Utils { /** * @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 ERC-1967 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 IERC1967.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 ERC-1967) 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 ERC-1967 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 IERC1967.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 ERC-1967 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 IERC1967.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(); } } }
lib/openzeppelin-contracts/contracts/proxy/beacon/IBeacon.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (proxy/beacon/IBeacon.sol) pragma solidity >=0.4.16; /** * @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); }
lib/openzeppelin-contracts/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (utils/Address.sol) pragma solidity ^0.8.20; import {Errors} from "./Errors.sol"; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @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 Errors.InsufficientBalance(address(this).balance, amount); } (bool success, bytes memory returndata) = recipient.call{value: amount}(""); if (!success) { _revert(returndata); } } /** * @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 * {Errors.FailedCall} 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 Errors.InsufficientBalance(address(this).balance, value); } (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 {Errors.FailedCall}) 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 {Errors.FailedCall} 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 {Errors.FailedCall}. */ 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 assembly ("memory-safe") { revert(add(returndata, 0x20), mload(returndata)) } } else { revert Errors.FailedCall(); } } }
lib/openzeppelin-contracts/contracts/utils/Errors.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol) pragma solidity ^0.8.20; /** * @dev Collection of common custom errors used in multiple contracts * * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. * It is recommended to avoid relying on the error API for critical functionality. * * _Available since v5.1._ */ library Errors { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error InsufficientBalance(uint256 balance, uint256 needed); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedCall(); /** * @dev The deployment failed. */ error FailedDeployment(); /** * @dev A necessary precompile is missing. */ error MissingPrecompile(address); }
lib/openzeppelin-contracts/contracts/utils/Panic.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol) pragma solidity ^0.8.20; /** * @dev Helper library for emitting standardized panic codes. * * ```solidity * contract Example { * using Panic for uint256; * * // Use any of the declared internal constants * function foo() { Panic.GENERIC.panic(); } * * // Alternatively * function foo() { Panic.panic(Panic.GENERIC); } * } * ``` * * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. * * _Available since v5.1._ */ // slither-disable-next-line unused-state library Panic { /// @dev generic / unspecified error uint256 internal constant GENERIC = 0x00; /// @dev used by the assert() builtin uint256 internal constant ASSERT = 0x01; /// @dev arithmetic underflow or overflow uint256 internal constant UNDER_OVERFLOW = 0x11; /// @dev division or modulo by zero uint256 internal constant DIVISION_BY_ZERO = 0x12; /// @dev enum conversion error uint256 internal constant ENUM_CONVERSION_ERROR = 0x21; /// @dev invalid encoding in storage uint256 internal constant STORAGE_ENCODING_ERROR = 0x22; /// @dev empty array pop uint256 internal constant EMPTY_ARRAY_POP = 0x31; /// @dev array out of bounds access uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32; /// @dev resource error (too large allocation or too large array) uint256 internal constant RESOURCE_ERROR = 0x41; /// @dev calling invalid internal function uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51; /// @dev Reverts with a panic code. Recommended to use with /// the internal constants with predefined codes. function panic(uint256 code) internal pure { assembly ("memory-safe") { mstore(0x00, 0x4e487b71) mstore(0x20, code) revert(0x1c, 0x24) } } }
lib/openzeppelin-contracts/contracts/utils/StorageSlot.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.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 ERC-1967 implementation slot: * ```solidity * contract ERC1967 { * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. * 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; * } * } * ``` * * TIP: Consider using this library along with {SlotDerivation}. */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct Int256Slot { int256 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) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Int256Slot` with member `value` located at `slot`. */ function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { assembly ("memory-safe") { 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) { assembly ("memory-safe") { r.slot := store.slot } } /** * @dev Returns a `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { assembly ("memory-safe") { 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) { assembly ("memory-safe") { r.slot := store.slot } } }
lib/openzeppelin-contracts/contracts/utils/Strings.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SafeCast} from "./math/SafeCast.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { using SafeCast for *; bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; uint256 private constant SPECIAL_CHARS_LOOKUP = (1 << 0x08) | // backspace (1 << 0x09) | // tab (1 << 0x0a) | // newline (1 << 0x0c) | // form feed (1 << 0x0d) | // carriage return (1 << 0x22) | // double quote (1 << 0x5c); // backslash /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev The string being parsed contains characters that are not in scope of the given base. */ error StringsInvalidChar(); /** * @dev The string being parsed is not a properly formatted address. */ error StringsInvalidAddressFormat(); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; assembly ("memory-safe") { ptr := add(add(buffer, 0x20), length) } while (true) { ptr--; assembly ("memory-safe") { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal * representation, according to EIP-55. */ function toChecksumHexString(address addr) internal pure returns (string memory) { bytes memory buffer = bytes(toHexString(addr)); // hash the hex part of buffer (skip length + 2 bytes, length 40) uint256 hashValue; assembly ("memory-safe") { hashValue := shr(96, keccak256(add(buffer, 0x22), 40)) } for (uint256 i = 41; i > 1; --i) { // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f) if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) { // case shift by xoring with 0x20 buffer[i] ^= 0x20; } hashValue >>= 4; } return string(buffer); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } /** * @dev Parse a decimal string and returns the value as a `uint256`. * * Requirements: * - The string must be formatted as `[0-9]*` * - The result must fit into an `uint256` type */ function parseUint(string memory input) internal pure returns (uint256) { return parseUint(input, 0, bytes(input).length); } /** * @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `[0-9]*` * - The result must fit into an `uint256` type */ function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { (bool success, uint256 value) = tryParseUint(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) { return _tryParseUintUncheckedBounds(input, 0, bytes(input).length); } /** * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid * character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseUint( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, uint256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseUintUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseUintUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, uint256 value) { bytes memory buffer = bytes(input); uint256 result = 0; for (uint256 i = begin; i < end; ++i) { uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); if (chr > 9) return (false, 0); result *= 10; result += chr; } return (true, result); } /** * @dev Parse a decimal string and returns the value as a `int256`. * * Requirements: * - The string must be formatted as `[-+]?[0-9]*` * - The result must fit in an `int256` type. */ function parseInt(string memory input) internal pure returns (int256) { return parseInt(input, 0, bytes(input).length); } /** * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `[-+]?[0-9]*` * - The result must fit in an `int256` type. */ function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) { (bool success, int256 value) = tryParseInt(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if * the result does not fit in a `int256`. * * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. */ function tryParseInt(string memory input) internal pure returns (bool success, int256 value) { return _tryParseIntUncheckedBounds(input, 0, bytes(input).length); } uint256 private constant ABS_MIN_INT256 = 2 ** 255; /** * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid * character or if the result does not fit in a `int256`. * * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`. */ function tryParseInt( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, int256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseIntUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseIntUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, int256 value) { bytes memory buffer = bytes(input); // Check presence of a negative sign. bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty bool positiveSign = sign == bytes1("+"); bool negativeSign = sign == bytes1("-"); uint256 offset = (positiveSign || negativeSign).toUint(); (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end); if (absSuccess && absValue < ABS_MIN_INT256) { return (true, negativeSign ? -int256(absValue) : int256(absValue)); } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) { return (true, type(int256).min); } else return (false, 0); } /** * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`. * * Requirements: * - The string must be formatted as `(0x)?[0-9a-fA-F]*` * - The result must fit in an `uint256` type. */ function parseHexUint(string memory input) internal pure returns (uint256) { return parseHexUint(input, 0, bytes(input).length); } /** * @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `(0x)?[0-9a-fA-F]*` * - The result must fit in an `uint256` type. */ function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) { (bool success, uint256 value) = tryParseHexUint(input, begin, end); if (!success) revert StringsInvalidChar(); return value; } /** * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) { return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length); } /** * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an * invalid character. * * NOTE: This function will revert if the result does not fit in a `uint256`. */ function tryParseHexUint( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, uint256 value) { if (end > bytes(input).length || begin > end) return (false, 0); return _tryParseHexUintUncheckedBounds(input, begin, end); } /** * @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that * `begin <= end <= input.length`. Other inputs would result in undefined behavior. */ function _tryParseHexUintUncheckedBounds( string memory input, uint256 begin, uint256 end ) private pure returns (bool success, uint256 value) { bytes memory buffer = bytes(input); // skip 0x prefix if present bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty uint256 offset = hasPrefix.toUint() * 2; uint256 result = 0; for (uint256 i = begin + offset; i < end; ++i) { uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i))); if (chr > 15) return (false, 0); result *= 16; unchecked { // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check). // This guarantees that adding a value < 16 will not cause an overflow, hence the unchecked. result += chr; } } return (true, result); } /** * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`. * * Requirements: * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}` */ function parseAddress(string memory input) internal pure returns (address) { return parseAddress(input, 0, bytes(input).length); } /** * @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and * `end` (excluded). * * Requirements: * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}` */ function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) { (bool success, address value) = tryParseAddress(input, begin, end); if (!success) revert StringsInvalidAddressFormat(); return value; } /** * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly * formatted address. See {parseAddress-string} requirements. */ function tryParseAddress(string memory input) internal pure returns (bool success, address value) { return tryParseAddress(input, 0, bytes(input).length); } /** * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly * formatted address. See {parseAddress-string-uint256-uint256} requirements. */ function tryParseAddress( string memory input, uint256 begin, uint256 end ) internal pure returns (bool success, address value) { if (end > bytes(input).length || begin > end) return (false, address(0)); bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty uint256 expectedLength = 40 + hasPrefix.toUint() * 2; // check that input is the correct length if (end - begin == expectedLength) { // length guarantees that this does not overflow, and value is at most type(uint160).max (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end); return (s, address(uint160(v))); } else { return (false, address(0)); } } function _tryParseChr(bytes1 chr) private pure returns (uint8) { uint8 value = uint8(chr); // Try to parse `chr`: // - Case 1: [0-9] // - Case 2: [a-f] // - Case 3: [A-F] // - otherwise not supported unchecked { if (value > 47 && value < 58) value -= 48; else if (value > 96 && value < 103) value -= 87; else if (value > 64 && value < 71) value -= 55; else return type(uint8).max; } return value; } /** * @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata. * * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped. * * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode * characters that are not in this range, but other tooling may provide different results. */ function escapeJSON(string memory input) internal pure returns (string memory) { bytes memory buffer = bytes(input); bytes memory output = new bytes(2 * buffer.length); // worst case scenario uint256 outputLength = 0; for (uint256 i; i < buffer.length; ++i) { bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i)); if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) { output[outputLength++] = "\\"; if (char == 0x08) output[outputLength++] = "b"; else if (char == 0x09) output[outputLength++] = "t"; else if (char == 0x0a) output[outputLength++] = "n"; else if (char == 0x0c) output[outputLength++] = "f"; else if (char == 0x0d) output[outputLength++] = "r"; else if (char == 0x5c) output[outputLength++] = "\\"; else if (char == 0x22) { // solhint-disable-next-line quotes output[outputLength++] = '"'; } } else { output[outputLength++] = char; } } // write the actual length and deallocate unused memory assembly ("memory-safe") { mstore(output, outputLength) mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63))))) } return string(output); } /** * @dev Reads a bytes32 from a bytes array without bounds checking. * * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the * assembly block as such would prevent some optimizations. */ function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) { // This is not memory safe in the general case, but all calls to this private function are within bounds. assembly ("memory-safe") { value := mload(add(add(buffer, 0x20), offset)) } } }
lib/openzeppelin-contracts/contracts/utils/cryptography/ECDSA.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover( bytes32 hash, bytes memory signature ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly ("memory-safe") { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures] */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
lib/openzeppelin-contracts/contracts/utils/cryptography/MessageHashUtils.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; import {Strings} from "../Strings.sol"; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an ERC-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { assembly ("memory-safe") { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an ERC-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an ERC-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32. */ function toDataWithIntendedValidatorHash( address validator, bytes32 messageHash ) internal pure returns (bytes32 digest) { assembly ("memory-safe") { mstore(0x00, hex"19_00") mstore(0x02, shl(96, validator)) mstore(0x16, messageHash) digest := keccak256(0x00, 0x36) } } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { assembly ("memory-safe") { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } }
lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol) pragma solidity >=0.4.16; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC 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); }
lib/openzeppelin-contracts/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol) pragma solidity ^0.8.20; import {Panic} from "../Panic.sol"; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Return the 512-bit addition of two uint256. * * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low. */ function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) { assembly ("memory-safe") { low := add(a, b) high := lt(low, a) } } /** * @dev Return the 512-bit multiplication of two uint256. * * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low. */ function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) { // 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = high * 2²⁵⁶ + low. assembly ("memory-safe") { let mm := mulmod(a, b, not(0)) low := mul(a, b) high := sub(sub(mm, low), lt(mm, low)) } } /** * @dev Returns the addition of two unsigned integers, with a success flag (no overflow). */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a + b; success = c >= a; result = c * SafeCast.toUint(success); } } /** * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow). */ function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a - b; success = c <= a; result = c * SafeCast.toUint(success); } } /** * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow). */ function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a * b; assembly ("memory-safe") { // Only true when the multiplication doesn't overflow // (c / a == b) || (a == 0) success := or(eq(div(c, a), b), iszero(a)) } // equivalent to: success ? c : 0 result = c * SafeCast.toUint(success); } } /** * @dev Returns the division of two unsigned integers, with a success flag (no division by zero). */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { success = b > 0; assembly ("memory-safe") { // The `DIV` opcode returns zero when the denominator is 0. result := div(a, b) } } } /** * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero). */ function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { success = b > 0; assembly ("memory-safe") { // The `MOD` opcode returns zero when the denominator is 0. result := mod(a, b) } } } /** * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing. */ function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) { (bool success, uint256 result) = tryAdd(a, b); return ternary(success, result, type(uint256).max); } /** * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing. */ function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) { (, uint256 result) = trySub(a, b); return result; } /** * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing. */ function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) { (bool success, uint256 result) = tryMul(a, b); return ternary(success, result, type(uint256).max); } /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * SafeCast.toUint(condition)); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(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. Panic.panic(Panic.DIVISION_BY_ZERO); } // The following calculation ensures accurate ceiling division without overflow. // Since a is non-zero, (a - 1) / b will not overflow. // The largest possible result occurs when (a - 1) / b is type(uint256).max, // but the largest value we can obtain is type(uint256).max - 1, which happens // when a = type(uint256).max and b = 1. unchecked { return SafeCast.toUint(a > 0) * ((a - 1) / b + 1); } } /** * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * * 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 { (uint256 high, uint256 low) = mul512(x, y); // Handle non-overflow cases, 256 by 256 division. if (high == 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 low / denominator; } // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0. if (denominator <= high) { Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW)); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [high low]. uint256 remainder; assembly ("memory-safe") { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. high := sub(high, gt(remainder, low)) low := sub(low, 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 ("memory-safe") { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [high low] by twos. low := div(low, twos) // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from high into low. low |= high * twos; // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv ≡ 1 mod 2⁴. 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⁸ inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶ inverse *= 2 - denominator * inverse; // inverse mod 2³² inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴ inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸ inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶ // 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²⁵⁶. Since the preconditions guarantee that the outcome is // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high // is no longer required. result = low * inverse; return result; } } /** * @dev 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) { return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0); } /** * @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256. */ function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) { unchecked { (uint256 high, uint256 low) = mul512(x, y); if (high >= 1 << n) { Panic.panic(Panic.UNDER_OVERFLOW); } return (high << (256 - n)) | (low >> n); } } /** * @dev Calculates x * y >> n with full precision, following the selected rounding direction. */ function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) { return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0); } /** * @dev Calculate the modular multiplicative inverse of a number in Z/nZ. * * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0. * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible. * * If the input value is not inversible, 0 is returned. * * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}. */ function invMod(uint256 a, uint256 n) internal pure returns (uint256) { unchecked { if (n == 0) return 0; // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version) // Used to compute integers x and y such that: ax + ny = gcd(a, n). // When the gcd is 1, then the inverse of a modulo n exists and it's x. // ax + ny = 1 // ax = 1 + (-y)n // ax ≡ 1 (mod n) # x is the inverse of a modulo n // If the remainder is 0 the gcd is n right away. uint256 remainder = a % n; uint256 gcd = n; // Therefore the initial coefficients are: // ax + ny = gcd(a, n) = n // 0a + 1n = n int256 x = 0; int256 y = 1; while (remainder != 0) { uint256 quotient = gcd / remainder; (gcd, remainder) = ( // The old remainder is the next gcd to try. remainder, // Compute the next remainder. // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd // where gcd is at most n (capped to type(uint256).max) gcd - remainder * quotient ); (x, y) = ( // Increment the coefficient of a. y, // Decrement the coefficient of n. // Can overflow, but the result is casted to uint256 so that the // next value of y is "wrapped around" to a value between 0 and n - 1. x - y * int256(quotient) ); } if (gcd != 1) return 0; // No inverse exists. return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative. } } /** * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`. * * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that * `a**(p-2)` is the modular multiplicative inverse of a in Fp. * * NOTE: this function does NOT check that `p` is a prime greater than `2`. */ function invModPrime(uint256 a, uint256 p) internal view returns (uint256) { unchecked { return Math.modExp(a, p - 2, p); } } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m) * * Requirements: * - modulus can't be zero * - underlying staticcall to precompile must succeed * * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make * sure the chain you're using it on supports the precompiled contract for modular exponentiation * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, * the underlying function will succeed given the lack of a revert, but the result may be incorrectly * interpreted as 0. */ function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) { (bool success, uint256 result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying * to operate modulo 0 or if the underlying precompile reverted. * * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack * of a revert, but the result may be incorrectly interpreted as 0. */ function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) { if (m == 0) return (false, 0); assembly ("memory-safe") { let ptr := mload(0x40) // | Offset | Content | Content (Hex) | // |-----------|------------|--------------------------------------------------------------------| // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x60:0x7f | value of b | 0x<.............................................................b> | // | 0x80:0x9f | value of e | 0x<.............................................................e> | // | 0xa0:0xbf | value of m | 0x<.............................................................m> | mstore(ptr, 0x20) mstore(add(ptr, 0x20), 0x20) mstore(add(ptr, 0x40), 0x20) mstore(add(ptr, 0x60), b) mstore(add(ptr, 0x80), e) mstore(add(ptr, 0xa0), m) // Given the result < m, it's guaranteed to fit in 32 bytes, // so we can use the memory scratch space located at offset 0. success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20) result := mload(0x00) } } /** * @dev Variant of {modExp} that supports inputs of arbitrary length. */ function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) { (bool success, bytes memory result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Variant of {tryModExp} that supports inputs of arbitrary length. */ function tryModExp( bytes memory b, bytes memory e, bytes memory m ) internal view returns (bool success, bytes memory result) { if (_zeroBytes(m)) return (false, new bytes(0)); uint256 mLen = m.length; // Encode call args in result and move the free memory pointer result = abi.encodePacked(b.length, e.length, mLen, b, e, m); assembly ("memory-safe") { let dataPtr := add(result, 0x20) // Write result on top of args to avoid allocating extra memory. success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen) // Overwrite the length. // result.length > returndatasize() is guaranteed because returndatasize() == m.length mstore(result, mLen) // Set the memory pointer after the returned data. mstore(0x40, add(dataPtr, mLen)) } } /** * @dev Returns whether the provided byte array is zero. */ function _zeroBytes(bytes memory byteArray) private pure returns (bool) { for (uint256 i = 0; i < byteArray.length; ++i) { if (byteArray[i] != 0) { return false; } } return true; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * This method is based on Newton's method for computing square roots; the algorithm is restricted to only * using integer operations. */ function sqrt(uint256 a) internal pure returns (uint256) { unchecked { // Take care of easy edge cases when a == 0 or a == 1 if (a <= 1) { return a; } // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between // the current value as `ε_n = | x_n - sqrt(a) |`. // // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is // bigger than any uint256. // // By noticing that // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)` // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar // to the msb function. uint256 aa = a; uint256 xn = 1; if (aa >= (1 << 128)) { aa >>= 128; xn <<= 64; } if (aa >= (1 << 64)) { aa >>= 64; xn <<= 32; } if (aa >= (1 << 32)) { aa >>= 32; xn <<= 16; } if (aa >= (1 << 16)) { aa >>= 16; xn <<= 8; } if (aa >= (1 << 8)) { aa >>= 8; xn <<= 4; } if (aa >= (1 << 4)) { aa >>= 4; xn <<= 2; } if (aa >= (1 << 2)) { xn <<= 1; } // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1). // // We can refine our estimation by noticing that the middle of that interval minimizes the error. // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2). // This is going to be our x_0 (and ε_0) xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2) // From here, Newton's method give us: // x_{n+1} = (x_n + a / x_n) / 2 // // One should note that: // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a // = ((x_n² + a) / (2 * x_n))² - a // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²) // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²) // = (x_n² - a)² / (2 * x_n)² // = ((x_n² - a) / (2 * x_n))² // ≥ 0 // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n // // This gives us the proof of quadratic convergence of the sequence: // ε_{n+1} = | x_{n+1} - sqrt(a) | // = | (x_n + a / x_n) / 2 - sqrt(a) | // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) | // = | (x_n - sqrt(a))² / (2 * x_n) | // = | ε_n² / (2 * x_n) | // = ε_n² / | (2 * x_n) | // // For the first iteration, we have a special case where x_0 is known: // ε_1 = ε_0² / | (2 * x_0) | // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2))) // ≤ 2**(2*e-4) / (3 * 2**(e-1)) // ≤ 2**(e-3) / 3 // ≤ 2**(e-3-log2(3)) // ≤ 2**(e-4.5) // // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n: // ε_{n+1} = ε_n² / | (2 * x_n) | // ≤ (2**(e-k))² / (2 * 2**(e-1)) // ≤ 2**(2*e-2*k) / 2**e // ≤ 2**(e-2*k) xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5 xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9 xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18 xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36 xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72 // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either // sqrt(a) or sqrt(a) + 1. return xn - SafeCast.toUint(xn > a / xn); } } /** * @dev 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 + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 x) internal pure returns (uint256 r) { // If value has upper 128 bits set, log2 result is at least 128 r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7; // If upper 64 bits of 128-bit half set, add 64 to result r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6; // If upper 32 bits of 64-bit half set, add 32 to result r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5; // If upper 16 bits of 32-bit half set, add 16 to result r |= SafeCast.toUint((x >> r) > 0xffff) << 4; // If upper 8 bits of 16-bit half set, add 8 to result r |= SafeCast.toUint((x >> r) > 0xff) << 3; // If upper 4 bits of 8-bit half set, add 4 to result r |= SafeCast.toUint((x >> r) > 0xf) << 2; // Shifts value right by the current result and use it as an index into this lookup table: // // | x (4 bits) | index | table[index] = MSB position | // |------------|---------|-----------------------------| // | 0000 | 0 | table[0] = 0 | // | 0001 | 1 | table[1] = 0 | // | 0010 | 2 | table[2] = 1 | // | 0011 | 3 | table[3] = 1 | // | 0100 | 4 | table[4] = 2 | // | 0101 | 5 | table[5] = 2 | // | 0110 | 6 | table[6] = 2 | // | 0111 | 7 | table[7] = 2 | // | 1000 | 8 | table[8] = 3 | // | 1001 | 9 | table[9] = 3 | // | 1010 | 10 | table[10] = 3 | // | 1011 | 11 | table[11] = 3 | // | 1100 | 12 | table[12] = 3 | // | 1101 | 13 | table[13] = 3 | // | 1110 | 14 | table[14] = 3 | // | 1111 | 15 | table[15] = 3 | // // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes. assembly ("memory-safe") { r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000)) } } /** * @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 + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value); } } /** * @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 + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value); } } /** * @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 x) internal pure returns (uint256 r) { // If value has upper 128 bits set, log2 result is at least 128 r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7; // If upper 64 bits of 128-bit half set, add 64 to result r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6; // If upper 32 bits of 64-bit half set, add 32 to result r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5; // If upper 16 bits of 32-bit half set, add 16 to result r |= SafeCast.toUint((x >> r) > 0xffff) << 4; // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8 return (r >> 3) | SafeCast.toUint((x >> r) > 0xff); } /** * @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 + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value); } } /** * @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; } }
lib/openzeppelin-contracts/contracts/utils/math/SafeCast.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.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/bool 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); } /** * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump. */ function toUint(bool b) internal pure returns (uint256 u) { assembly ("memory-safe") { u := iszero(iszero(b)) } } }
lib/openzeppelin-contracts/contracts/utils/math/SignedMath.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * int256(SafeCast.toUint(condition))); } } /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson. // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift, // taking advantage of the most significant (or "sign" bit) in two's complement representation. // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result, // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative). int256 mask = n >> 255; // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it. return uint256((n + mask) ^ mask); } } }
src/interfaces/IAddressManager.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; /** * @title IAddressManager * @author taiko.xyz * @notice Interface for AddressManager contract discovery */ interface IAddressManager { function getAddress(string memory contractName) external view returns (address); function tryGetAddress(string memory contractName) external view returns (bool found, address addr); function setAddress(string memory contractName, address contractAddress) external; function hasAddress(string memory contractName) external view returns (bool); }
src/interfaces/IBonusExpManager.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; /** * @title IBonusExpManager * @author taiko.xyz * @notice Interface for bonus XP management through achievement claims * @dev Handles secure XP claiming for achievements with signature verification * @custom:security-contact security@trailblazer.com */ interface IBonusExpManager { // ============================================ // Data Structures // ============================================ /** * @notice Player's claim status and statistics * @param nonce Current nonce for replay protection * @param totalClaimedXP Total XP claimed through achievements * @param achievementsClaimed Number of achievements claimed * @param lastClaimTimestamp Timestamp of last claim */ struct PlayerClaimStatus { uint256 nonce; uint256 totalClaimedXP; uint256 achievementsClaimed; uint256 lastClaimTimestamp; } // ============================================ // Events // ============================================ /** * @notice Emitted when achievements are successfully claimed * @param player The player who claimed achievements * @param achievementIds Array of achievement IDs claimed * @param xpRewards Array of XP rewards for each achievement * @param totalXP Total XP awarded in this claim * @param newPlayerTotal Player's new total XP after claim * @param nonce Nonce used for this claim */ event AchievementsClaimed( address indexed player, string[] achievementIds, uint256[] xpRewards, uint256 totalXP, uint256 newPlayerTotal, uint256 nonce ); /** * @notice Emitted when trusted signer is updated * @param oldSigner Previous trusted signer address * @param newSigner New trusted signer address */ event TrustedSignerUpdated(address indexed oldSigner, address indexed newSigner); /** * @notice Emitted when contract is paused or unpaused * @param paused Whether contract is now paused * @param admin Admin who triggered the pause */ event EmergencyPause(bool paused, address indexed admin); /** * @notice Emitted when signature expiry duration is updated * @param oldDuration Previous expiry duration in seconds * @param newDuration New expiry duration in seconds */ event SignatureExpiryUpdated(uint256 oldDuration, uint256 newDuration); // ============================================ // Custom Errors // ============================================ /// @notice Contract is currently paused error ContractPaused(); /// @notice Invalid signature provided error InvalidSignature(); /// @notice Signature has expired error SignatureExpired(); /// @notice Invalid nonce provided error InvalidNonce(); /// @notice Achievement already claimed error AchievementAlreadyClaimed(string achievementId); /// @notice Arrays length mismatch error ArraysLengthMismatch(); /// @notice Invalid array length error InvalidArrayLength(); /// @notice Subgraph block too old error SubgraphBlockTooOld(); /// @notice Zero address provided error ZeroAddress(); /// @notice Invalid XP amount error InvalidXPAmount(); // ============================================ // Core Functions // ============================================ /** * @notice Claims XP rewards for unlocked achievements * @dev Verifies signature from trusted backend signer * @param achievementIds Array of achievement IDs to claim * @param xpRewards Array of XP rewards corresponding to each achievement * @param subgraphBlock Block number from subgraph when data was fetched * @param nonce Sequential nonce for replay protection * @param expiry Timestamp when signature expires * @param signature Backend signature authorizing the claim */ function claimAchievementRewards( string[] calldata achievementIds, uint256[] calldata xpRewards, uint256 subgraphBlock, uint256 nonce, uint256 expiry, bytes calldata signature ) external; // ============================================ // Admin Functions // ============================================ /** * @notice Sets the trusted signer address * @dev Only callable by ADMIN_ROLE * @param newSigner Address of the new trusted signer */ function setTrustedSigner(address newSigner) external; /** * @notice Pauses or unpauses the contract * @dev Only callable by ADMIN_ROLE * @param paused Whether to pause the contract */ function setEmergencyPause(bool paused) external; /** * @notice Sets the signature expiry duration * @dev Only callable by ADMIN_ROLE * @param duration New expiry duration in seconds */ function setSignatureExpiry(uint256 duration) external; /** * @notice Updates the minimum subgraph block age * @dev Only callable by ADMIN_ROLE * @param minAge Minimum age in blocks */ function setMinSubgraphBlockAge(uint256 minAge) external; // ============================================ // View Functions // ============================================ /** * @notice Gets player's claim status and statistics * @param player Player address to query * @return status Player's claim status struct */ function getPlayerClaimStatus(address player) external view returns (PlayerClaimStatus memory status); /** * @notice Checks if a specific achievement has been claimed by player * @param player Player address to check * @param achievementId Achievement ID to check * @return claimed Whether the achievement has been claimed */ function isAchievementClaimed(address player, string calldata achievementId) external view returns (bool claimed); /** * @notice Gets the expected next nonce for a player * @param player Player address to query * @return nonce Next expected nonce */ function getPlayerNonce(address player) external view returns (uint256 nonce); /** * @notice Gets the current trusted signer address * @return signer Current trusted signer address */ function getTrustedSigner() external view returns (address signer); /** * @notice Gets the current signature expiry duration * @return duration Signature expiry duration in seconds */ function getSignatureExpiry() external view returns (uint256 duration); /** * @notice Checks if the contract is currently paused * @return paused Whether the contract is paused */ function isPaused() external view returns (bool paused); /** * @notice Gets the minimum subgraph block age required * @return minAge Minimum block age required */ function getMinSubgraphBlockAge() external view returns (uint256 minAge); /** * @notice Verifies a signature without executing the claim * @dev Useful for frontend validation * @param player Player address * @param achievementIds Array of achievement IDs * @param xpRewards Array of XP rewards * @param subgraphBlock Subgraph block number * @param nonce Player nonce * @param expiry Signature expiry timestamp * @param signature Signature to verify * @return valid Whether the signature is valid */ function verifySignature( address player, string[] calldata achievementIds, uint256[] calldata xpRewards, uint256 subgraphBlock, uint256 nonce, uint256 expiry, bytes calldata signature ) external view returns (bool valid); }
src/interfaces/IExperienceManager.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; /** * @title IExperienceManager * @author taiko.xyz * @notice Interface for the Experience Management system * @dev Handles XP rewards, penalties, and game configurations */ interface IExperienceManager { // ============================================ // Data Structures // ============================================ /** * @notice XP configuration for a specific game * @param winReward XP reward for winning * @param lossPenalty XP penalty for losing * @param streakBonus Bonus XP for win streaks * @param enabled Whether XP processing is enabled for this game */ struct GameXPConfig { uint256 winReward; uint256 lossPenalty; uint256 streakBonus; bool enabled; } // ============================================ // Events // ============================================ /// @notice Emitted when a game's XP configuration is updated event GameConfigured( address indexed gameContract, uint256 winReward, uint256 lossPenalty, uint256 streakBonus, bool enabled ); /// @notice Emitted when XP is processed for a player event ExperienceProcessed( address indexed player, address indexed gameContract, bool isWin, uint256 xpChange, uint256 newTotal, uint256 newLevel ); /// @notice Emitted when GameHub address is updated event GameHubUpdated(address indexed newGameHub); /// @notice Emitted when bonus XP is awarded event BonusXPAwarded(address indexed player, uint256 xpAmount, string reason, uint256 newTotal, uint256 newLevel); // ============================================ // Core Functions // ============================================ /** * @notice Processes game outcome for experience points * @dev Only callable by SessionManager * @param player The player address * @param gameContract The game contract address * @param isWin Whether the player won * @param competitionId Competition ID for tournament-specific processing (bytes32(0) for regular games) * @param stakeValue USD stake value with 18 decimals (0 for no stake) */ function processGameOutcome( address player, address gameContract, bool isWin, bytes32 competitionId, uint256 stakeValue ) external; /** * @notice Awards tournament XP directly (called by TournamentManager) * @param player The player to award XP to * @param xpAmount The amount of XP to award * @param competitionId The competition ID for tracking */ function awardCompetitionXP(address player, uint256 xpAmount, bytes32 competitionId) external; /** * @notice Awards bonus XP directly for achievements and special rewards * @param player The player to award XP to * @param xpAmount The amount of XP to award * @param reason A description of why the bonus XP was awarded */ function awardBonusXP(address player, uint256 xpAmount, string calldata reason) external; /** * @notice Configures XP settings for a game * @param gameContract The game contract address * @param winReward XP reward for winning * @param lossPenalty XP penalty for losing * @param streakBonus Bonus XP for win streaks * @param enabled Whether to enable XP for this game */ function configureGame( address gameContract, uint256 winReward, uint256 lossPenalty, uint256 streakBonus, bool enabled ) external; // ============================================ // View Functions // ============================================ /** * @notice Gets a player's total experience points * @param player The player address * @return The total XP */ function getPlayerExperience(address player) external view returns (uint256); /** * @notice Gets a player's calculated level based on experience * @param player The player address * @return The calculated level */ function getPlayerLevel(address player) external view returns (uint256); /** * @notice Gets XP configuration for a game * @param gameContract The game contract address * @return The GameXPConfig struct */ function getGameConfig(address gameContract) external view returns (GameXPConfig memory); /** * @notice Gets a player's win streak for a specific game * @param player The player address * @param gameContract The game contract address * @return The current win streak */ function getPlayerStreak(address player, address gameContract) external view returns (uint256); // ============================================ // Admin Functions // ============================================ /** * @notice Sets the GameHub address * @param newGameHub The new GameHub contract address */ function setGameHub(address newGameHub) external; }
src/libraries/errors/TrailblazerErrors.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; /** * @title TrailblazerErrors * @author taiko.xyz * @notice Standardized error messages for the Trailblazer gaming platform * @dev Custom errors provide better debugging information */ library TrailblazerErrors { // ============================================ // Access Control Errors // ============================================ /// @dev Thrown when caller lacks required permissions error Unauthorized(); /// @dev Thrown when caller is not the contract owner error NotOwner(); /// @dev Thrown when caller is not a valid game hub error NotGameHub(); /// @dev Thrown when caller is not the router error NotRouter(); // ============================================ // Address Validation Errors // ============================================ /// @dev Thrown when a required address is zero error ZeroAddress(); /// @dev Thrown when an invalid game contract address is provided error InvalidGame(); /// @dev Thrown when an invalid player address is provided error InvalidPlayer(); // ============================================ // Session Management Errors // ============================================ /// @dev Thrown when session ID is invalid or doesn't exist error InvalidSession(); /// @dev Thrown when a session has already ended error SessionEnded(); /// @dev Thrown when a session has expired error SessionExpired(); /// @dev Thrown when a player is already in another game session error PlayerAlreadyInGame(); /// @dev Thrown when trying to start a session with no players error NoPlayersProvided(); /// @dev Thrown when too many players are provided for a session error TooManyPlayers(); /// @dev Thrown when duplicate players are provided error DuplicatePlayer(); /// @dev Thrown when TTL is invalid (too short or too long) error InvalidTTL(); // ============================================ // Authentication Errors // ============================================ /// @dev Thrown when authentication fails error AuthenticationFailed(); /// @dev Thrown when a signature is invalid error InvalidSignature(); /// @dev Thrown when a signature has already been used (replay attack) error SignatureAlreadyUsed(); /// @dev Thrown when signature is too old (timestamp validation) error SignatureExpired(); /// @dev Thrown when nonce is invalid (not sequential) error InvalidNonce(); // ============================================ // Balance and Fee Errors // ============================================ /// @dev Thrown when an amount is zero when it shouldn't be error ZeroAmount(); /// @dev Thrown when there's insufficient balance for an operation error InsufficientBalance(); /// @dev Thrown when trying to unlock more than is locked error InsufficientLockedBalance(); /// @dev Thrown when a fee transfer fails error FeeTransferFailed(); /// @dev Thrown when basis points don't sum to 10000 error InvalidBasisPoints(); // ============================================ // Contract State Errors // ============================================ /// @dev Thrown when system is paused error SystemPaused(); /// @dev Thrown when a specific game is paused error GamePaused(); /// @dev Thrown when a contract is not properly initialized error NotInitialized(); /// @dev Thrown when trying to initialize an already initialized contract error AlreadyInitialized(); // ============================================ // Game-Specific Errors // ============================================ /// @dev Thrown when a game is not whitelisted error GameNotWhitelisted(); /// @dev Thrown when a game doesn't meet player count requirements error InvalidPlayerCount(); /// @dev Thrown when game validation fails error GameValidationFailed(string reason); /// @dev Thrown when a player doesn't meet game requirements error PlayerNotEligible(); // ============================================ // Batch Operation Errors // ============================================ /// @dev Thrown when batch size is too large error BatchSizeTooLarge(); /// @dev Thrown when batch operation fails error BatchOperationFailed(); // ============================================ // Lock Mechanism Errors // ============================================ /// @dev Thrown when trying to interact with an expired lock error LockExpired(); /// @dev Thrown when trying to unlock when no lock exists error NoActiveLock(); /// @dev Thrown when emergency unlock is not enabled error EmergencyUnlockDisabled(); // ============================================ // Experience Processing Errors // ============================================ /// @dev Thrown when experience manager is not configured error ExperienceManagerNotConfigured(); /// @dev Thrown when experience processing fails for a player error ExperienceProcessingFailed(address player, address game); /// @dev Thrown when tournament experience processing fails error TournamentExperienceProcessingFailed(bytes32 tournamentId, address player); /// @dev Thrown when tournament manager is not configured error TournamentManagerNotConfigured(); /// @dev Thrown when trying to award experience with invalid parameters error InvalidExperienceParameters(); /// @dev Thrown when player is not registered for tournament error PlayerNotRegisteredForTournament(bytes32 tournamentId, address player); /// @dev Thrown when tournament is not active error TournamentNotActive(bytes32 tournamentId); // ============================================ // Configuration Errors // ============================================ /// @dev Thrown when configuration is invalid error InvalidConfiguration(); /// @dev Thrown when trying to set invalid fee configuration error InvalidFeeConfiguration(); /// @dev Thrown when game mode is invalid error InvalidGameMode(); // ============================================ // Stake-Related Errors // ============================================ /// @dev Thrown when stake value is invalid (e.g., zero when required) error InvalidStakeValue(); /// @dev Thrown when stake proof is invalid or verification fails error InvalidStakeProof(); /// @dev Thrown when wrong number of players for staked games error InvalidPlayers(); // ============================================ // Session Validation Errors // ============================================ /// @dev Thrown when game is not active error GameNotActive(); /// @dev Thrown when array lengths don't match in batch operations error ArrayLengthMismatch(); /// @dev Thrown when a profile doesn't exist error NoProfile(); /// @dev Thrown when player profile is inactive error PlayerInactive(); /// @dev Thrown when player cannot play games error PlayerCannotPlayGames(); /// @dev Thrown when auth module is not found error AuthModuleNotFound(); /// @dev Thrown when profile manager is not found error ProfileManagerNotFound(); /// @dev Thrown when session manager is not found error SessionManagerNotFound(); /// @dev Thrown when not game owner error NotGameOwner(); /// @dev Thrown when system is emergency paused error EmergencyPaused(); /// @dev Thrown when caller is not the router error OnlyRouter(); /// @dev Thrown when invalid address manager error InvalidAddressManager(); /// @dev Thrown when invalid router address error InvalidRouter(); // ============================================ // Experience Manager Errors // ============================================ /// @dev Thrown when season duration is invalid error InvalidSeasonDuration(); /// @dev Thrown when competition already exists error CompetitionAlreadyExists(); /// @dev Thrown when multiplier is too high error MultiplierTooHigh(); /// @dev Thrown when competition has ended error CompetitionEnded(); /// @dev Thrown when player is already participating in competition error AlreadyParticipating(); /// @dev Thrown when XP entry fee is insufficient error InsufficientXPForEntry(); /// @dev Thrown when XP amount is invalid error InvalidXPAmount(); /// @dev Thrown when reason is empty error EmptyReason(); /// @dev Thrown when competition multiplier is too high error CompetitionMultiplierTooHigh(); /// @dev Thrown when multiplier is invalid error InvalidMultiplier(); /// @dev Thrown when duration is invalid error InvalidDuration(); /// @dev Thrown when there are too many tiers error TooManyTiers(); /// @dev Thrown when stakes are not in ascending order error StakesNotAscending(); /// @dev Thrown when multipliers are not non-decreasing error MultipliersNotNonDecreasing(); // ============================================ // Game Flag Management Errors // ============================================ /// @dev Thrown when a flag already exists error FlagAlreadySet(); /// @dev Thrown when a flag is not found error FlagNotFound(); }
Compiler Settings
{"viaIR":true,"remappings":["@rmrk/=lib/evm/contracts/","@evm/=lib/evm/contracts/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/","forge-std/=lib/forge-std/src/","@src/=src/","erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/","evm/=lib/evm/contracts/","halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/","openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/"],"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true},"metadata":{"useLiteralContent":false,"bytecodeHash":"ipfs","appendCBOR":true},"libraries":{},"evmVersion":"cancun"}
Contract ABI
[{"type":"error","name":"AccessControlBadConfirmation","inputs":[]},{"type":"error","name":"AccessControlUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"bytes32","name":"neededRole","internalType":"bytes32"}]},{"type":"error","name":"AchievementAlreadyClaimed","inputs":[{"type":"string","name":"achievementId","internalType":"string"}]},{"type":"error","name":"AddressEmptyCode","inputs":[{"type":"address","name":"target","internalType":"address"}]},{"type":"error","name":"ArraysLengthMismatch","inputs":[]},{"type":"error","name":"ContractPaused","inputs":[]},{"type":"error","name":"ECDSAInvalidSignature","inputs":[]},{"type":"error","name":"ECDSAInvalidSignatureLength","inputs":[{"type":"uint256","name":"length","internalType":"uint256"}]},{"type":"error","name":"ECDSAInvalidSignatureS","inputs":[{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"error","name":"ERC1967InvalidImplementation","inputs":[{"type":"address","name":"implementation","internalType":"address"}]},{"type":"error","name":"ERC1967NonPayable","inputs":[]},{"type":"error","name":"FailedCall","inputs":[]},{"type":"error","name":"InvalidArrayLength","inputs":[]},{"type":"error","name":"InvalidConfiguration","inputs":[]},{"type":"error","name":"InvalidDuration","inputs":[]},{"type":"error","name":"InvalidInitialization","inputs":[]},{"type":"error","name":"InvalidNonce","inputs":[]},{"type":"error","name":"InvalidSignature","inputs":[]},{"type":"error","name":"InvalidXPAmount","inputs":[]},{"type":"error","name":"NotInitializing","inputs":[]},{"type":"error","name":"SignatureExpired","inputs":[]},{"type":"error","name":"SubgraphBlockTooOld","inputs":[]},{"type":"error","name":"UUPSUnauthorizedCallContext","inputs":[]},{"type":"error","name":"UUPSUnsupportedProxiableUUID","inputs":[{"type":"bytes32","name":"slot","internalType":"bytes32"}]},{"type":"error","name":"ZeroAddress","inputs":[]},{"type":"event","name":"AchievementsClaimed","inputs":[{"type":"address","name":"player","internalType":"address","indexed":true},{"type":"string[]","name":"achievementIds","internalType":"string[]","indexed":false},{"type":"uint256[]","name":"xpRewards","internalType":"uint256[]","indexed":false},{"type":"uint256","name":"totalXP","internalType":"uint256","indexed":false},{"type":"uint256","name":"newPlayerTotal","internalType":"uint256","indexed":false},{"type":"uint256","name":"nonce","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EmergencyPause","inputs":[{"type":"bool","name":"paused","internalType":"bool","indexed":false},{"type":"address","name":"admin","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint64","name":"version","internalType":"uint64","indexed":false}],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"previousAdminRole","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"newAdminRole","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SignatureExpiryUpdated","inputs":[{"type":"uint256","name":"oldDuration","internalType":"uint256","indexed":false},{"type":"uint256","name":"newDuration","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TrustedSignerUpdated","inputs":[{"type":"address","name":"oldSigner","internalType":"address","indexed":true},{"type":"address","name":"newSigner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"DEFAULT_MIN_SUBGRAPH_BLOCK_AGE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"DEFAULT_SIGNATURE_EXPIRY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_ACHIEVEMENTS_PER_CLAIM","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_SIGNATURE_EXPIRY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"SIGNER_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"UPGRADER_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"UPGRADE_INTERFACE_VERSION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"achievementClaimed","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"bytes32","name":"","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"achievementHashToId","inputs":[{"type":"bytes32","name":"","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IAddressManager"}],"name":"addressManager","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claimAchievementRewards","inputs":[{"type":"string[]","name":"achievementIds","internalType":"string[]"},{"type":"uint256[]","name":"xpRewards","internalType":"uint256[]"},{"type":"uint256","name":"subgraphBlock","internalType":"uint256"},{"type":"uint256","name":"nonce","internalType":"uint256"},{"type":"uint256","name":"expiry","internalType":"uint256"},{"type":"bytes","name":"signature","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"minAge","internalType":"uint256"}],"name":"getMinSubgraphBlockAge","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple","name":"status","internalType":"struct IBonusExpManager.PlayerClaimStatus","components":[{"type":"uint256","name":"nonce","internalType":"uint256"},{"type":"uint256","name":"totalClaimedXP","internalType":"uint256"},{"type":"uint256","name":"achievementsClaimed","internalType":"uint256"},{"type":"uint256","name":"lastClaimTimestamp","internalType":"uint256"}]}],"name":"getPlayerClaimStatus","inputs":[{"type":"address","name":"player","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"nonce","internalType":"uint256"}],"name":"getPlayerNonce","inputs":[{"type":"address","name":"player","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"getRoleAdmin","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"duration","internalType":"uint256"}],"name":"getSignatureExpiry","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"signer","internalType":"address"}],"name":"getTrustedSigner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"_addressManager","internalType":"address"},{"type":"address","name":"_trustedSigner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"claimed","internalType":"bool"}],"name":"isAchievementClaimed","inputs":[{"type":"address","name":"player","internalType":"address"},{"type":"string","name":"achievementId","internalType":"string"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"isPausedResult","internalType":"bool"}],"name":"isPaused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minSubgraphBlockAge","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"nonce","internalType":"uint256"},{"type":"uint256","name":"totalClaimedXP","internalType":"uint256"},{"type":"uint256","name":"achievementsClaimed","internalType":"uint256"},{"type":"uint256","name":"lastClaimTimestamp","internalType":"uint256"}],"name":"playerClaimStatus","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"callerConfirmation","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEmergencyPause","inputs":[{"type":"bool","name":"_paused","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinSubgraphBlockAge","inputs":[{"type":"uint256","name":"minAge","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setSignatureExpiry","inputs":[{"type":"uint256","name":"duration","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTrustedSigner","inputs":[{"type":"address","name":"newSigner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"signatureExpiry","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"trustedSigner","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"valid","internalType":"bool"}],"name":"verifySignature","inputs":[{"type":"address","name":"player","internalType":"address"},{"type":"string[]","name":"achievementIds","internalType":"string[]"},{"type":"uint256[]","name":"xpRewards","internalType":"uint256[]"},{"type":"uint256","name":"subgraphBlock","internalType":"uint256"},{"type":"uint256","name":"nonce","internalType":"uint256"},{"type":"uint256","name":"expiry","internalType":"uint256"},{"type":"bytes","name":"signature","internalType":"bytes"}]}]
Contract Creation Code
0x60a0806040523461002a57306080526121a2908161002f8239608051818181610e540152610f0d0152f35b5f80fdfe6080806040526004361015610012575f80fd5b5f905f3560e01c908162cdac82146116245750806301ffc9a7146115ce57806319bfb5ff146115a6578063248a9ca31461156d5780632968c075146114dc5780632e57833a146114bf5780632f2ff15d1461147657806336568abe1461142f5780633ab76e9f146114085780633ec0499b1461134357806347e5bf8314611328578063485cc955146111545780634f1ef28614610ebe57806352d1902d14610e4257806356a1c70114610dbc5780635c975abb14610d9757806368efccbb14610d5f57806375b238fc14610d255780637cbc85c814610cea578063812de0f5146106cc578063883844f01461062f578063909dc58d1461061257806391d14854146105bc57806395019e25146102ce57806395cadfa8146105a0578063a1ebf35d14610565578063a217fddf14610549578063ad3cb1cc146104e1578063b187bd26146104bb578063c712a93014610429578063d2512cd8146103cd578063d547741f1461037f578063d5a8125414610361578063d8d1a657146102ec578063e475acf9146102ce578063ee981be9146102b1578063f72c0d8b14610276578063f74d54801461024d5763f88d658b146101ca575f80fd5b3461024a57602036600319011261024a576004356101e6611991565b8015801561023f575b61022d5760407f608ba1e79aefab3d9498e17b8eac1da99da2a4d011e72cb39e11440626e4816391600254908060025582519182526020820152a180f35b604051637616640160e01b8152600490fd5b50610e1081116101ef565b80fd5b503461024a578060031936011261024a576001546040516001600160a01b039091168152602090f35b503461024a578060031936011261024a5760206040517f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e38152f35b503461024a578060031936011261024a576020604051610e108152f35b503461024a578060031936011261024a576020600354604051908152f35b503461024a57602036600319011261024a5760043580151580910361035d57610313611991565b6001805460ff60a01b191660a083901b60ff60a01b1617905560405190815233907fc6d66a5a13a2b9780ed9783dd34a33e101da7ba0e728b6c3ceebbc4085d47ca390602090a280f35b5080fd5b503461024a578060031936011261024a576020600254604051908152f35b503461024a57604036600319011261024a576103c960043561039f61167e565b908084525f8051602061214d8339815191526020526103c46001604086200154611a0a565b611d2b565b5080f35b503461024a57602036600319011261024a576080906040906001600160a01b036103f5611668565b1681526004602052208054906001810154906003600282015491015491604051938452602084015260408301526060820152f35b503461024a57604036600319011261024a57610443611668565b6024356001600160401b0381116104b75761048e9260ff9261046b60409336906004016116c4565b8451968791602098818a9283830196873781018783820152038084520182611744565b5190206001600160a01b0390911682526005855282822090825284522054604051911615158152f35b8280fd5b503461024a578060031936011261024a57602060ff60015460a01c166040519015158152f35b503461024a578060031936011261024a5760405160408101908082106001600160401b03831117610535576105319160405260058152640352e302e360dc1b602082015260405191829182611765565b0390f35b634e487b7160e01b5f52604160045260245ffd5b503461024a578060031936011261024a57602090604051908152f35b503461024a578060031936011261024a5760206040517fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f708152f35b503461024a578060031936011261024a576020604051600a8152f35b503461024a57604036600319011261024a5760406105d861167e565b9160043581525f8051602061214d833981519152602052209060018060a01b03165f52602052602060ff60405f2054166040519015158152f35b503461024a578060031936011261024a57602060405161012c8152f35b503461024a57602036600319011261024a57604060809161064e611668565b816060845161065c81611729565b8281528260208201528286820152015260018060a01b0316815260046020522060405161068881611729565b815491828252600181015460208301908152606060036002840154936040860194855201549301928352604051938452516020840152516040830152516060820152f35b5034610b455760c0366003190112610b45576004356001600160401b038111610b45576106fd903690600401611694565b916024356001600160401b038111610b455761071d903690600401611694565b93909260843560a4356001600160401b038111610b45576107429036906004016116c4565b9060ff60015460a01c16610cd857878503610cc65784158015610cbc575b610caa57824211610c9857335f52600460205260405f205460643503610c86576044354303438111610b7a5760035411610c74576107a8926064356044358a8a8989336118ca565b15610c62575f926107b883611df8565b936107c66040519586611744565b8385526107d284611df8565b601f19013660208701375f5b848110610b8e57505f5b855181101561094a57335f52600560205260405f206108078288611e74565b515f5260205260405f20600160ff19825416179055610827818686611e33565b6108318389611e74565b515f52600660205260405f20916001600160401b0382116105355761085683546116f1565b601f8111610909575b505f90601f831160011461089f576001949392915f9183610894575b50505f19600383901b1c191690841b1790555b016107e8565b013590505f8061087b565b835f5260205f20915f5b601f19851681106108f157509183916001969594938794601f198116106108d8575b505050811b01905561088e565b01355f19600384901b60f8161c191690555f80806108cb565b909260206001819286860135815501940191016108a9565b835f5260205f20601f840160051c810160208510610943575b601f830160051c8201811061093857505061085f565b5f8155600101610922565b5080610922565b50935093335f52600460205260405f20805460018101809111610b7a57815560018101610978868254611daa565b905560028101610989858254611daa565b905542600391909101555f5460405163bf40fac160e01b8152602060048201819052601260248301527122ac2822a924a2a721a2afa6a0a720a3a2a960711b60448301526001600160a01b03928290606490829086165afa5f9181610b49575b50610a475760405162461bcd60e51b815260206004820152602b60248201527f457870657269656e63654d616e61676572206e6f7420666f756e64206f72206160448201526a1dd85c990819985a5b195960aa1b6064820152608490fd5b16803b15610b45575f809160a46040518094819363e80e548960e01b83523360048401528a6024840152606060448401526013606484015272416368696576656d656e74207265776172647360681b60848401525af18015610b3a57610b1a575b50610afe907fdf58e3621d56155e2ca4ac00effeb280d00e50558fa07febcfa1862620bc5948949596610af0610add33611ea7565b946040519660a0885260a088019161181d565b9185830360208701526118a6565b936040830152606082015260643560808201528033930390a280f35b909394506001600160401b038111610535576040525f9392610afe610aa8565b6040513d5f823e3d90fd5b5f80fd5b610b6c91925060203d602011610b73575b610b648183611744565b810190611e88565b905f6109e9565b503d610b5a565b634e487b7160e01b5f52601160045260245ffd5b90610b9a828989611e0f565b3515610c4d57610bab828686611e33565b610bce602060405183819483830196873781015f83820152038084520182611744565b51902080610bdc8489611e74565b52335f52600560205260405f20905f5260205260ff60405f205416610c1a57610c13600191610c0c848b8b611e0f565b3590611daa565b91016107de565b610c25828686611e33565b610c496040519283926371b93f9560e01b84526020600485015260248401916117fd565b0390fd5b60405160016231376760e21b03198152600490fd5b604051638baa579f60e01b8152600490fd5b6040516312b1561b60e21b8152600490fd5b604051633ab3447f60e11b8152600490fd5b604051630819bdcd60e01b8152600490fd5b604051634ec4810560e11b8152600490fd5b5060328511610760565b6040516307e11acb60e51b8152600490fd5b60405163ab35696f60e01b8152600490fd5b34610b45576020366003190112610b4557600435610d06611991565b60648111610d1357600355005b60405163c52a9bd360e01b8152600490fd5b34610b45575f366003190112610b455760206040517fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758152f35b34610b45576020366003190112610b45576001600160a01b03610d80611668565b165f526004602052602060405f2054604051908152f35b34610b45575f366003190112610b4557602060ff60015460a01c166040519015158152f35b34610b45576020366003190112610b4557610dd5611668565b610ddd611991565b6001600160a01b03908116908115610e3057600154826bffffffffffffffffffffffff60a01b821617600155167f4a297cf5d32586f80d2b0708a39d2da1f46e6ae7722171e1c51dfd685b5b8aa85f80a3005b60405163d92e233d60e01b8152600490fd5b34610b45575f366003190112610b45577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163003610eac5760206040517f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8152f35b60405163703e46dd60e11b8152600490fd5b6040366003190112610b4557610ed2611668565b60249081356001600160401b038111610b455736602382011215610b4557610f0390369084816004013591016117c7565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116308114908115611126575b50610eac57335f9081527fab71e3f32666744d246edff3f96e4bdafee2e9867098cdd118a979a7464786a860209081526040909120549091907f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e39060ff161561110957508316926040516352d1902d60e01b81528281600481885afa5f91816110da575b50610fda57604051634c9c8ce360e01b8152600481018690528690fd5b8490867f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc918281036110c55750833b156110af575080546001600160a01b03191682179055604051907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b5f80a283511561109557505f80848461108a96519101845af4903d1561108c573d61106e816117ac565b9061107c6040519283611744565b81525f81943d92013e6120c9565b005b606092506120c9565b92505050346110a057005b63b398979f60e01b8152600490fd5b604051634c9c8ce360e01b815260048101849052fd5b60405190632a87526960e21b82526004820152fd5b9091508381813d8311611102575b6110f28183611744565b81010312610b4557519087610fbd565b503d6110e8565b856044916040519163e2517d3f60e01b8352336004840152820152fd5b9050817f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5416141585610f39565b34610b45576040366003190112610b455761116d611668565b61117561167e565b907ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a009081549060ff8260401c1615916001600160401b03811680159081611320575b6001149081611316575b15908161130d575b506112fb5767ffffffffffffffff1981166001178455826112dc575b506001600160a01b03908116938415610e305716928315610e3057611208611db7565b611210611db7565b6bffffffffffffffffffffffff60a01b5f5416175f558260015461012c600255600a6003556affffffffffffffffffffff60a81b161760015561125233611a38565b5061125c33611ac2565b5061126633611b6f565b5061127033611c15565b50604051925f7f4a297cf5d32586f80d2b0708a39d2da1f46e6ae7722171e1c51dfd685b5b8aa88180a36112a057005b805468ff000000000000000019169055600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a1005b68ffffffffffffffffff191668010000000000000001178355846111e5565b60405163f92ee8a960e01b8152600490fd5b905015866111c9565b303b1591506111c1565b8491506111b7565b34610b45575f366003190112610b4557602060405160328152f35b34610b4557602080600319360112610b45576004355f526006815260405f2090604051905f928054611374816116f1565b808552916001918083169081156113e657506001146113aa575b6105318561139e81890382611744565b60405191829182611765565b5f908152838120939550925b8284106113d357505050816105319361139e92820101938561138e565b80548585018701529285019281016113b6565b60ff191686860152505050151560051b820101915061139e816105318561138e565b34610b45575f366003190112610b45575f546040516001600160a01b039091168152602090f35b34610b45576040366003190112610b455761144861167e565b336001600160a01b038216036114645761108a90600435611d2b565b60405163334bd91960e11b8152600490fd5b34610b45576040366003190112610b455761108a60043561149561167e565b90805f525f8051602061214d8339815191526020526114ba600160405f200154611a0a565b611cbb565b34610b45575f366003190112610b45576020600254604051908152f35b34610b455760e0366003190112610b45576114f5611668565b6001600160401b03602435818111610b4557611515903690600401611694565b90604435838111610b455761152e903690600401611694565b92909160c435948511610b455760209561154f6115639636906004016116c4565b95909460a4359460843594606435946118ca565b6040519015158152f35b34610b45576020366003190112610b45576004355f525f8051602061214d8339815191526020526020600160405f200154604051908152f35b34610b45575f366003190112610b45576001546040516001600160a01b039091168152602090f35b34610b45576020366003190112610b455760043563ffffffff60e01b8116809103610b4557602090637965db0b60e01b8114908115611613575b506040519015158152f35b6301ffc9a760e01b14905082611608565b34610b45576040366003190112610b45576020906001600160a01b03611648611668565b165f526005825260405f206024355f52825260ff60405f20541615158152f35b600435906001600160a01b0382168203610b4557565b602435906001600160a01b0382168203610b4557565b9181601f84011215610b45578235916001600160401b038311610b45576020808501948460051b010111610b4557565b9181601f84011215610b45578235916001600160401b038311610b455760208381860195010111610b4557565b90600182811c9216801561171f575b602083101461170b57565b634e487b7160e01b5f52602260045260245ffd5b91607f1691611700565b608081019081106001600160401b0382111761053557604052565b90601f801991011681019081106001600160401b0382111761053557604052565b602080825282518183018190529093925f5b82811061179857505060409293505f838284010152601f8019910116010190565b818101860151848201604001528501611777565b6001600160401b03811161053557601f01601f191660200190565b9291926117d3826117ac565b916117e16040519384611744565b829481845281830111610b45578281602093845f960137010152565b908060209392818452848401375f828201840152601f01601f1916010190565b908281815260208091019360208360051b82010194845f925b858410611847575050505050505090565b90919293949596601f198282030184528735601e1984360301811215610b455783018681019190356001600160401b038111610b45578036038313610b4557611895889283926001956117fd565b990194019401929594939190611836565b81835290916001600160fb1b038311610b455760209260051b809284830137010190565b98979690929491956040519586946020860198600160a01b60019003809d168a526040870160c0905260e08701906119019261181d565b601f199687878303016060880152611918926118a6565b92608085015260a084015260c08301520390810182526119389082611744565b5190207f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f52601c52603c5f20913690611971926117c7565b61197a91611f8a565b61198691939293611fc4565b806001541691161490565b335f9081527fb16e88c42fd4e48df2dd6a2eabd6bc9aec654ec170056b470819f8892cc6431c60205260409020547fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217759060ff16156119ec5750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b805f525f8051602061214d83398151915260205260405f20335f5260205260ff60405f205416156119ec5750565b6001600160a01b03165f8181527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d60205260409020545f8051602061214d8339815191529060ff16611abc575f805260205260405f20815f5260205260405f20600160ff1982541617905533905f5f8051602061212d8339815191528180a4600190565b50505f90565b6001600160a01b03165f8181527fb16e88c42fd4e48df2dd6a2eabd6bc9aec654ec170056b470819f8892cc6431c60205260409020547fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177591905f8051602061214d8339815191529060ff16611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b5050505f90565b6001600160a01b03165f8181527fed82e8858f919528fd86c81da277f0812ef4876fae8bc5251645af9640d3f49f60205260409020547fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7091905f8051602061214d8339815191529060ff16611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b6001600160a01b03165f8181527fab71e3f32666744d246edff3f96e4bdafee2e9867098cdd118a979a7464786a860205260409020547f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e391905f8051602061214d8339815191529060ff16611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b90815f525f8051602061214d8339815191528060205260405f209160018060a01b031691825f5260205260ff60405f205416155f14611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b90815f525f8051602061214d8339815191528060205260405f209160018060a01b031691825f5260205260ff60405f2054165f14611b6857825f5260205260405f20815f5260205260405f2060ff19815416905533917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b5f80a4600190565b91908201809211610b7a57565b60ff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460401c1615611de657565b604051631afcd79f60e31b8152600490fd5b6001600160401b0381116105355760051b60200190565b9190811015611e1f5760051b0190565b634e487b7160e01b5f52603260045260245ffd5b9190811015611e1f5760051b81013590601e1981360301821215610b455701908135916001600160401b038311610b45576020018236038113610b45579190565b8051821015611e1f5760209160051b010190565b90816020910312610b4557516001600160a01b0381168103610b455790565b5f5460405163bf40fac160e01b8152602060048201819052601260248301527122ac2822a924a2a721a2afa6a0a720a3a2a960711b60448301529290916001600160a01b039084908490606490829085165afa5f9381611f6b575b50611f0f57505050505f90565b602484928260405195869485936319522d9f60e01b8552166004840152165afa918215610b3a575f92611f4157505090565b90809250813d8311611f64575b611f588183611744565b81010312610b45575190565b503d611f4e565b611f83919450853d8711610b7357610b648183611744565b925f611f02565b8151919060418303611fba57611fb39250602082015190606060408401519301515f1a90612047565b9192909190565b50505f9160029190565b60048110156120335780611fd6575050565b60018103611ff05760405163f645eedf60e01b8152600490fd5b600281036120115760405163fce698f760e01b815260048101839052602490fd5b60031461201b5750565b602490604051906335e2f38360e21b82526004820152fd5b634e487b7160e01b5f52602160045260245ffd5b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116120be579160209360809260ff5f9560405194855216868401526040830152606082015282805260015afa15610b3a575f516001600160a01b038116156120b457905f905f90565b505f906001905f90565b5050505f9160039190565b906120f057508051156120de57602081519101fd5b60405163d6bda27560e01b8152600490fd5b81511580612123575b612101575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156120f956fe2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800a2646970667358221220d6033c5dc9b176660efa52cfe12e8010e95789334243e91086f5a9cac20cfc2664736f6c63430008180033
Deployed ByteCode
0x6080806040526004361015610012575f80fd5b5f905f3560e01c908162cdac82146116245750806301ffc9a7146115ce57806319bfb5ff146115a6578063248a9ca31461156d5780632968c075146114dc5780632e57833a146114bf5780632f2ff15d1461147657806336568abe1461142f5780633ab76e9f146114085780633ec0499b1461134357806347e5bf8314611328578063485cc955146111545780634f1ef28614610ebe57806352d1902d14610e4257806356a1c70114610dbc5780635c975abb14610d9757806368efccbb14610d5f57806375b238fc14610d255780637cbc85c814610cea578063812de0f5146106cc578063883844f01461062f578063909dc58d1461061257806391d14854146105bc57806395019e25146102ce57806395cadfa8146105a0578063a1ebf35d14610565578063a217fddf14610549578063ad3cb1cc146104e1578063b187bd26146104bb578063c712a93014610429578063d2512cd8146103cd578063d547741f1461037f578063d5a8125414610361578063d8d1a657146102ec578063e475acf9146102ce578063ee981be9146102b1578063f72c0d8b14610276578063f74d54801461024d5763f88d658b146101ca575f80fd5b3461024a57602036600319011261024a576004356101e6611991565b8015801561023f575b61022d5760407f608ba1e79aefab3d9498e17b8eac1da99da2a4d011e72cb39e11440626e4816391600254908060025582519182526020820152a180f35b604051637616640160e01b8152600490fd5b50610e1081116101ef565b80fd5b503461024a578060031936011261024a576001546040516001600160a01b039091168152602090f35b503461024a578060031936011261024a5760206040517f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e38152f35b503461024a578060031936011261024a576020604051610e108152f35b503461024a578060031936011261024a576020600354604051908152f35b503461024a57602036600319011261024a5760043580151580910361035d57610313611991565b6001805460ff60a01b191660a083901b60ff60a01b1617905560405190815233907fc6d66a5a13a2b9780ed9783dd34a33e101da7ba0e728b6c3ceebbc4085d47ca390602090a280f35b5080fd5b503461024a578060031936011261024a576020600254604051908152f35b503461024a57604036600319011261024a576103c960043561039f61167e565b908084525f8051602061214d8339815191526020526103c46001604086200154611a0a565b611d2b565b5080f35b503461024a57602036600319011261024a576080906040906001600160a01b036103f5611668565b1681526004602052208054906001810154906003600282015491015491604051938452602084015260408301526060820152f35b503461024a57604036600319011261024a57610443611668565b6024356001600160401b0381116104b75761048e9260ff9261046b60409336906004016116c4565b8451968791602098818a9283830196873781018783820152038084520182611744565b5190206001600160a01b0390911682526005855282822090825284522054604051911615158152f35b8280fd5b503461024a578060031936011261024a57602060ff60015460a01c166040519015158152f35b503461024a578060031936011261024a5760405160408101908082106001600160401b03831117610535576105319160405260058152640352e302e360dc1b602082015260405191829182611765565b0390f35b634e487b7160e01b5f52604160045260245ffd5b503461024a578060031936011261024a57602090604051908152f35b503461024a578060031936011261024a5760206040517fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f708152f35b503461024a578060031936011261024a576020604051600a8152f35b503461024a57604036600319011261024a5760406105d861167e565b9160043581525f8051602061214d833981519152602052209060018060a01b03165f52602052602060ff60405f2054166040519015158152f35b503461024a578060031936011261024a57602060405161012c8152f35b503461024a57602036600319011261024a57604060809161064e611668565b816060845161065c81611729565b8281528260208201528286820152015260018060a01b0316815260046020522060405161068881611729565b815491828252600181015460208301908152606060036002840154936040860194855201549301928352604051938452516020840152516040830152516060820152f35b5034610b455760c0366003190112610b45576004356001600160401b038111610b45576106fd903690600401611694565b916024356001600160401b038111610b455761071d903690600401611694565b93909260843560a4356001600160401b038111610b45576107429036906004016116c4565b9060ff60015460a01c16610cd857878503610cc65784158015610cbc575b610caa57824211610c9857335f52600460205260405f205460643503610c86576044354303438111610b7a5760035411610c74576107a8926064356044358a8a8989336118ca565b15610c62575f926107b883611df8565b936107c66040519586611744565b8385526107d284611df8565b601f19013660208701375f5b848110610b8e57505f5b855181101561094a57335f52600560205260405f206108078288611e74565b515f5260205260405f20600160ff19825416179055610827818686611e33565b6108318389611e74565b515f52600660205260405f20916001600160401b0382116105355761085683546116f1565b601f8111610909575b505f90601f831160011461089f576001949392915f9183610894575b50505f19600383901b1c191690841b1790555b016107e8565b013590505f8061087b565b835f5260205f20915f5b601f19851681106108f157509183916001969594938794601f198116106108d8575b505050811b01905561088e565b01355f19600384901b60f8161c191690555f80806108cb565b909260206001819286860135815501940191016108a9565b835f5260205f20601f840160051c810160208510610943575b601f830160051c8201811061093857505061085f565b5f8155600101610922565b5080610922565b50935093335f52600460205260405f20805460018101809111610b7a57815560018101610978868254611daa565b905560028101610989858254611daa565b905542600391909101555f5460405163bf40fac160e01b8152602060048201819052601260248301527122ac2822a924a2a721a2afa6a0a720a3a2a960711b60448301526001600160a01b03928290606490829086165afa5f9181610b49575b50610a475760405162461bcd60e51b815260206004820152602b60248201527f457870657269656e63654d616e61676572206e6f7420666f756e64206f72206160448201526a1dd85c990819985a5b195960aa1b6064820152608490fd5b16803b15610b45575f809160a46040518094819363e80e548960e01b83523360048401528a6024840152606060448401526013606484015272416368696576656d656e74207265776172647360681b60848401525af18015610b3a57610b1a575b50610afe907fdf58e3621d56155e2ca4ac00effeb280d00e50558fa07febcfa1862620bc5948949596610af0610add33611ea7565b946040519660a0885260a088019161181d565b9185830360208701526118a6565b936040830152606082015260643560808201528033930390a280f35b909394506001600160401b038111610535576040525f9392610afe610aa8565b6040513d5f823e3d90fd5b5f80fd5b610b6c91925060203d602011610b73575b610b648183611744565b810190611e88565b905f6109e9565b503d610b5a565b634e487b7160e01b5f52601160045260245ffd5b90610b9a828989611e0f565b3515610c4d57610bab828686611e33565b610bce602060405183819483830196873781015f83820152038084520182611744565b51902080610bdc8489611e74565b52335f52600560205260405f20905f5260205260ff60405f205416610c1a57610c13600191610c0c848b8b611e0f565b3590611daa565b91016107de565b610c25828686611e33565b610c496040519283926371b93f9560e01b84526020600485015260248401916117fd565b0390fd5b60405160016231376760e21b03198152600490fd5b604051638baa579f60e01b8152600490fd5b6040516312b1561b60e21b8152600490fd5b604051633ab3447f60e11b8152600490fd5b604051630819bdcd60e01b8152600490fd5b604051634ec4810560e11b8152600490fd5b5060328511610760565b6040516307e11acb60e51b8152600490fd5b60405163ab35696f60e01b8152600490fd5b34610b45576020366003190112610b4557600435610d06611991565b60648111610d1357600355005b60405163c52a9bd360e01b8152600490fd5b34610b45575f366003190112610b455760206040517fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758152f35b34610b45576020366003190112610b45576001600160a01b03610d80611668565b165f526004602052602060405f2054604051908152f35b34610b45575f366003190112610b4557602060ff60015460a01c166040519015158152f35b34610b45576020366003190112610b4557610dd5611668565b610ddd611991565b6001600160a01b03908116908115610e3057600154826bffffffffffffffffffffffff60a01b821617600155167f4a297cf5d32586f80d2b0708a39d2da1f46e6ae7722171e1c51dfd685b5b8aa85f80a3005b60405163d92e233d60e01b8152600490fd5b34610b45575f366003190112610b45577f0000000000000000000000000da9a07606847d901818c1efca8b060691c034586001600160a01b03163003610eac5760206040517f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8152f35b60405163703e46dd60e11b8152600490fd5b6040366003190112610b4557610ed2611668565b60249081356001600160401b038111610b455736602382011215610b4557610f0390369084816004013591016117c7565b6001600160a01b037f0000000000000000000000000da9a07606847d901818c1efca8b060691c034588116308114908115611126575b50610eac57335f9081527fab71e3f32666744d246edff3f96e4bdafee2e9867098cdd118a979a7464786a860209081526040909120549091907f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e39060ff161561110957508316926040516352d1902d60e01b81528281600481885afa5f91816110da575b50610fda57604051634c9c8ce360e01b8152600481018690528690fd5b8490867f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc918281036110c55750833b156110af575080546001600160a01b03191682179055604051907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b5f80a283511561109557505f80848461108a96519101845af4903d1561108c573d61106e816117ac565b9061107c6040519283611744565b81525f81943d92013e6120c9565b005b606092506120c9565b92505050346110a057005b63b398979f60e01b8152600490fd5b604051634c9c8ce360e01b815260048101849052fd5b60405190632a87526960e21b82526004820152fd5b9091508381813d8311611102575b6110f28183611744565b81010312610b4557519087610fbd565b503d6110e8565b856044916040519163e2517d3f60e01b8352336004840152820152fd5b9050817f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5416141585610f39565b34610b45576040366003190112610b455761116d611668565b61117561167e565b907ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a009081549060ff8260401c1615916001600160401b03811680159081611320575b6001149081611316575b15908161130d575b506112fb5767ffffffffffffffff1981166001178455826112dc575b506001600160a01b03908116938415610e305716928315610e3057611208611db7565b611210611db7565b6bffffffffffffffffffffffff60a01b5f5416175f558260015461012c600255600a6003556affffffffffffffffffffff60a81b161760015561125233611a38565b5061125c33611ac2565b5061126633611b6f565b5061127033611c15565b50604051925f7f4a297cf5d32586f80d2b0708a39d2da1f46e6ae7722171e1c51dfd685b5b8aa88180a36112a057005b805468ff000000000000000019169055600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602090a1005b68ffffffffffffffffff191668010000000000000001178355846111e5565b60405163f92ee8a960e01b8152600490fd5b905015866111c9565b303b1591506111c1565b8491506111b7565b34610b45575f366003190112610b4557602060405160328152f35b34610b4557602080600319360112610b45576004355f526006815260405f2090604051905f928054611374816116f1565b808552916001918083169081156113e657506001146113aa575b6105318561139e81890382611744565b60405191829182611765565b5f908152838120939550925b8284106113d357505050816105319361139e92820101938561138e565b80548585018701529285019281016113b6565b60ff191686860152505050151560051b820101915061139e816105318561138e565b34610b45575f366003190112610b45575f546040516001600160a01b039091168152602090f35b34610b45576040366003190112610b455761144861167e565b336001600160a01b038216036114645761108a90600435611d2b565b60405163334bd91960e11b8152600490fd5b34610b45576040366003190112610b455761108a60043561149561167e565b90805f525f8051602061214d8339815191526020526114ba600160405f200154611a0a565b611cbb565b34610b45575f366003190112610b45576020600254604051908152f35b34610b455760e0366003190112610b45576114f5611668565b6001600160401b03602435818111610b4557611515903690600401611694565b90604435838111610b455761152e903690600401611694565b92909160c435948511610b455760209561154f6115639636906004016116c4565b95909460a4359460843594606435946118ca565b6040519015158152f35b34610b45576020366003190112610b45576004355f525f8051602061214d8339815191526020526020600160405f200154604051908152f35b34610b45575f366003190112610b45576001546040516001600160a01b039091168152602090f35b34610b45576020366003190112610b455760043563ffffffff60e01b8116809103610b4557602090637965db0b60e01b8114908115611613575b506040519015158152f35b6301ffc9a760e01b14905082611608565b34610b45576040366003190112610b45576020906001600160a01b03611648611668565b165f526005825260405f206024355f52825260ff60405f20541615158152f35b600435906001600160a01b0382168203610b4557565b602435906001600160a01b0382168203610b4557565b9181601f84011215610b45578235916001600160401b038311610b45576020808501948460051b010111610b4557565b9181601f84011215610b45578235916001600160401b038311610b455760208381860195010111610b4557565b90600182811c9216801561171f575b602083101461170b57565b634e487b7160e01b5f52602260045260245ffd5b91607f1691611700565b608081019081106001600160401b0382111761053557604052565b90601f801991011681019081106001600160401b0382111761053557604052565b602080825282518183018190529093925f5b82811061179857505060409293505f838284010152601f8019910116010190565b818101860151848201604001528501611777565b6001600160401b03811161053557601f01601f191660200190565b9291926117d3826117ac565b916117e16040519384611744565b829481845281830111610b45578281602093845f960137010152565b908060209392818452848401375f828201840152601f01601f1916010190565b908281815260208091019360208360051b82010194845f925b858410611847575050505050505090565b90919293949596601f198282030184528735601e1984360301811215610b455783018681019190356001600160401b038111610b45578036038313610b4557611895889283926001956117fd565b990194019401929594939190611836565b81835290916001600160fb1b038311610b455760209260051b809284830137010190565b98979690929491956040519586946020860198600160a01b60019003809d168a526040870160c0905260e08701906119019261181d565b601f199687878303016060880152611918926118a6565b92608085015260a084015260c08301520390810182526119389082611744565b5190207f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f52601c52603c5f20913690611971926117c7565b61197a91611f8a565b61198691939293611fc4565b806001541691161490565b335f9081527fb16e88c42fd4e48df2dd6a2eabd6bc9aec654ec170056b470819f8892cc6431c60205260409020547fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217759060ff16156119ec5750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b805f525f8051602061214d83398151915260205260405f20335f5260205260ff60405f205416156119ec5750565b6001600160a01b03165f8181527fb7db2dd08fcb62d0c9e08c51941cae53c267786a0b75803fb7960902fc8ef97d60205260409020545f8051602061214d8339815191529060ff16611abc575f805260205260405f20815f5260205260405f20600160ff1982541617905533905f5f8051602061212d8339815191528180a4600190565b50505f90565b6001600160a01b03165f8181527fb16e88c42fd4e48df2dd6a2eabd6bc9aec654ec170056b470819f8892cc6431c60205260409020547fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177591905f8051602061214d8339815191529060ff16611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b5050505f90565b6001600160a01b03165f8181527fed82e8858f919528fd86c81da277f0812ef4876fae8bc5251645af9640d3f49f60205260409020547fe2f4eaae4a9751e85a3e4a7b9587827a877f29914755229b07a7b2da98285f7091905f8051602061214d8339815191529060ff16611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b6001600160a01b03165f8181527fab71e3f32666744d246edff3f96e4bdafee2e9867098cdd118a979a7464786a860205260409020547f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e391905f8051602061214d8339815191529060ff16611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b90815f525f8051602061214d8339815191528060205260405f209160018060a01b031691825f5260205260ff60405f205416155f14611b6857825f5260205260405f20815f5260205260405f20600160ff1982541617905533915f8051602061212d8339815191525f80a4600190565b90815f525f8051602061214d8339815191528060205260405f209160018060a01b031691825f5260205260ff60405f2054165f14611b6857825f5260205260405f20815f5260205260405f2060ff19815416905533917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b5f80a4600190565b91908201809211610b7a57565b60ff7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005460401c1615611de657565b604051631afcd79f60e31b8152600490fd5b6001600160401b0381116105355760051b60200190565b9190811015611e1f5760051b0190565b634e487b7160e01b5f52603260045260245ffd5b9190811015611e1f5760051b81013590601e1981360301821215610b455701908135916001600160401b038311610b45576020018236038113610b45579190565b8051821015611e1f5760209160051b010190565b90816020910312610b4557516001600160a01b0381168103610b455790565b5f5460405163bf40fac160e01b8152602060048201819052601260248301527122ac2822a924a2a721a2afa6a0a720a3a2a960711b60448301529290916001600160a01b039084908490606490829085165afa5f9381611f6b575b50611f0f57505050505f90565b602484928260405195869485936319522d9f60e01b8552166004840152165afa918215610b3a575f92611f4157505090565b90809250813d8311611f64575b611f588183611744565b81010312610b45575190565b503d611f4e565b611f83919450853d8711610b7357610b648183611744565b925f611f02565b8151919060418303611fba57611fb39250602082015190606060408401519301515f1a90612047565b9192909190565b50505f9160029190565b60048110156120335780611fd6575050565b60018103611ff05760405163f645eedf60e01b8152600490fd5b600281036120115760405163fce698f760e01b815260048101839052602490fd5b60031461201b5750565b602490604051906335e2f38360e21b82526004820152fd5b634e487b7160e01b5f52602160045260245ffd5b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116120be579160209360809260ff5f9560405194855216868401526040830152606082015282805260015afa15610b3a575f516001600160a01b038116156120b457905f905f90565b505f906001905f90565b5050505f9160039190565b906120f057508051156120de57602081519101fd5b60405163d6bda27560e01b8152600490fd5b81511580612123575b612101575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156120f956fe2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800a2646970667358221220d6033c5dc9b176660efa52cfe12e8010e95789334243e91086f5a9cac20cfc2664736f6c63430008180033