Source Code
Overview
POL Balance
More Info
ContractCreator
Multichain Info
N/A
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
ARYZEVault_v2
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Compatible with OpenZeppelin Contracts ^5.0.0 pragma solidity ^0.8.24; import "@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.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/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract ARYZEVault_v2 is Initializable, PausableUpgradeable, AccessControlUpgradeable, UUPSUpgradeable { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant UPGRADER_ROLE = keccak256("UPGRADER_ROLE"); IERC20 public s_asset; /** * @notice Amount of tokens that will be distributed as rewards per each second of staing for stakers; */ uint256 public s_tokenPerSecond; address public s_rewardTreasury; /** * @notice seconds from deposit to acieve max weight */ uint256 public s_timeWeightFullCapSec; uint256 public s_timeWeightInverted; uint256 public constant WEIGHT_BASE = 1_000_000; /** * @notice Customer assets */ mapping(address => uint256) public s_assets; /** * @notice timestamp when customer locked assets. */ mapping(address => uint256) public s_withdrawAt; /** * @notice timestamp when customer harvested assets last time. */ mapping(address => uint256) public s_harvestAt; event Deposit(address indexed reciever, uint256 indexed amount); event Withdraw(address indexed reciever, uint256 indexed amount); event Harvest(address indexed reciever, uint256 indexed amount); event Compound(address indexed reciever, uint256 indexed amount); /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } function initialize() public initializer { __Pausable_init(); __AccessControl_init(); __UUPSUpgradeable_init(); _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); _grantRole(UPGRADER_ROLE, msg.sender); setRewardTreasury(0xca19e1e0eE83f92C47820eCA8Ef8a5D8b6acdbcD); setTokenPerSecond(0); setTimeWeightFullCapSec(60 * 24 * 60 * 60); setTimeWeightInverted(3 * WEIGHT_BASE); // s_asset = IERC20(0xfe58138156DeE3EaEF5E6D113210DBF460B61Df1); //polygon RYZE s_asset = IERC20(0xe47346273E984ed59500E57A81C68c8A45809491); //amoy RYZE } function totalAssets() public view returns (uint256 balance) { balance = s_asset.balanceOf(address(this)); } function tokenPerSecond() public view returns (uint256 amountPerSecond) { amountPerSecond = s_tokenPerSecond; } function balanceOf(address account) public view returns (uint256 balance) { balance = s_assets[account]; } /** * @notice multiplicator value from [0,1] * 10**18 * @param account address */ function multiplicator(address account) public view returns (uint256 value) { uint256 minWeight = WEIGHT_BASE / (WEIGHT_BASE + s_timeWeightInverted); value = ((timeWeight(account) - minWeight) * 10 ** 18) / (WEIGHT_BASE - minWeight); } /** * @notice 1 ether == 100%; */ function APR() external view returns (uint256 aprLow, uint256 aprHigh) { aprHigh = (365 * 24 * 60 * 60 * (10 ** 18) * tokenPerSecond()) / (totalAssets()); aprLow = (aprHigh * WEIGHT_BASE) / (s_timeWeightInverted + WEIGHT_BASE); } /** * @notice 1 ether == 100%; */ function APR(address account) external view returns (uint256 value) { uint256 aprHigh = (365 * 24 * 60 * 60 * (10 ** 18) * tokenPerSecond()) / (totalAssets()); value = (aprHigh * timeWeight(account)) / WEIGHT_BASE; } /** * * @param _timeWeightFullCapSec seconds needed to achieve * max possible time multiplicator from last withdraw or first deposit */ function setTimeWeightFullCapSec(uint256 _timeWeightFullCapSec) public onlyRole(DEFAULT_ADMIN_ROLE) { s_timeWeightFullCapSec = _timeWeightFullCapSec; } /** * * @param _timeWeightInverted number equals ± WEIGHT_BASE, which represents * inverted weight of minimal start time weight from >0 up to 1 (max possible multiplication value) */ function setTimeWeightInverted(uint256 _timeWeightInverted) public onlyRole(DEFAULT_ADMIN_ROLE) { require(_timeWeightInverted <= WEIGHT_BASE ** 2, "Invalid number!"); s_timeWeightInverted = _timeWeightInverted; } function setRewardTreasury(address _rewardTreasury) public onlyRole(DEFAULT_ADMIN_ROLE) { require(_rewardTreasury != address(0), "Zero address"); s_rewardTreasury = _rewardTreasury; } function setTokenPerSecond(uint256 _tokenPerSecond) public onlyRole(DEFAULT_ADMIN_ROLE) { s_tokenPerSecond = _tokenPerSecond; } /** * @notice get time multiplicator for rewards fro specific account * @param account address */ function timeWeight(address account) public view returns (uint256 weight) { // from last withdraw or first deposit uint lockPeriodSec = block.timestamp - s_withdrawAt[account]; require(lockPeriodSec > 0 && lockPeriodSec < block.timestamp, "Invalid lock period"); // timeWeight possible linear range in lockPeriod is (0,s_timeWeightFullCapSec]; weight = (WEIGHT_BASE * (WEIGHT_BASE + ((s_timeWeightInverted * lockPeriodSec) / s_timeWeightFullCapSec))) / (WEIGHT_BASE + s_timeWeightInverted); if (weight > WEIGHT_BASE) { weight = WEIGHT_BASE; } } /** * @notice seconds from last harvest or compound * @param account address. */ function pendingSeconds(address account) public view returns (uint256 sec) { sec = block.timestamp - s_harvestAt[account]; } /** * @notice rewards from last harvest or compound * @param account address */ function pendingRewards(address account) public view returns (uint256 reward) { // from last harvest, compound or first deposit uint pendingPeriodSec = pendingSeconds(account); require(pendingPeriodSec > 0 && pendingPeriodSec < block.timestamp, "Invalid pending period"); uint _timeWeight = timeWeight(account); reward = (pendingPeriodSec * s_tokenPerSecond * (s_assets[account] * _timeWeight)) / (totalAssets() * WEIGHT_BASE); } function deposit(uint256 assets, address reciever) public whenNotPaused { require(reciever != address(0), "Zero address!"); if (s_withdrawAt[reciever] == 0) { s_withdrawAt[reciever] = block.timestamp; } if (s_harvestAt[reciever] == 0) { s_harvestAt[reciever] = block.timestamp; } s_assets[reciever] += assets; SafeERC20.safeTransferFrom(s_asset, msg.sender, address(this), assets); emit Deposit(reciever, assets); } function withdraw(uint256 assets) public whenNotPaused { uint256 max = s_assets[msg.sender]; require(max >= assets, "You wanna too much, buddy!"); s_assets[msg.sender] -= assets; s_withdrawAt[msg.sender] = block.timestamp; require(s_assets[msg.sender] <= max, "Invalid transaction!"); SafeERC20.safeTransfer(s_asset, msg.sender, assets); emit Withdraw(msg.sender, assets); } /** * @notice withdraw rewards to caller's wallet */ function harvest() public whenNotPaused { uint256 rewards = pendingRewards(msg.sender); s_harvestAt[msg.sender] = block.timestamp; SafeERC20.safeTransferFrom(s_asset, s_rewardTreasury, msg.sender, rewards); emit Harvest(msg.sender, rewards); } /** * @notice put rewards to vault right after harvesting */ function compound() public whenNotPaused { uint256 rewards = pendingRewards(msg.sender); s_assets[msg.sender] += rewards; s_harvestAt[msg.sender] = block.timestamp; SafeERC20.safeTransferFrom(s_asset, s_rewardTreasury, address(this), rewards); emit Compound(msg.sender, rewards); } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function _authorizeUpgrade(address newImplementation) internal override onlyRole(UPGRADER_ROLE) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol"; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {ERC165Upgradeable} from "../utils/introspection/ERC165Upgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControl, ERC165Upgradeable { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @custom:storage-location erc7201:openzeppelin.storage.AccessControl struct AccessControlStorage { mapping(bytes32 role => RoleData) _roles; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.AccessControl")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant AccessControlStorageLocation = 0x02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800; function _getAccessControlStorage() private pure returns (AccessControlStorage storage $) { assembly { $.slot := AccessControlStorageLocation } } /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { AccessControlStorage storage $ = _getAccessControlStorage(); bytes32 previousAdminRole = getRoleAdmin(role); $._roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (!hasRole(role, account)) { $._roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (hasRole(role, account)) { $._roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.20; import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol"; import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol"; import {Initializable} from "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. */ abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address private immutable __self = address(this); /** * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function * during an upgrade. */ string public constant UPGRADE_INTERFACE_VERSION = "5.0.0"; /** * @dev The call is from an unauthorized context. */ error UUPSUnauthorizedCallContext(); /** * @dev The storage `slot` is unsupported as a UUID. */ error UUPSUnsupportedProxiableUUID(bytes32 slot); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { _checkProxy(); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { _checkNotDelegated(); _; } function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual notDelegated returns (bytes32) { return ERC1967Utils.IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. * * @custom:oz-upgrades-unsafe-allow-reachable delegatecall */ function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data); } /** * @dev Reverts if the execution is not performed via delegatecall or the execution * context is not of a proxy with an ERC1967-compliant implementation pointing to self. * See {_onlyProxy}. */ function _checkProxy() internal view virtual { if ( address(this) == __self || // Must be called through delegatecall ERC1967Utils.getImplementation() != __self // Must be called through an active proxy ) { revert UUPSUnauthorizedCallContext(); } } /** * @dev Reverts if the execution is performed via delegatecall. * See {notDelegated}. */ function _checkNotDelegated() internal view virtual { if (address(this) != __self) { // Must not be called through delegatecall revert UUPSUnauthorizedCallContext(); } } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call. * * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value * is expected to be the implementation slot in ERC1967. * * Emits an {IERC1967-Upgraded} event. */ function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) { revert UUPSUnsupportedProxiableUUID(slot); } ERC1967Utils.upgradeToAndCall(newImplementation, data); } catch { // The implementation is not UUPS revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation); } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165Upgradeable is Initializable, IERC165 { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Pausable struct PausableStorage { bool _paused; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Pausable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant PausableStorageLocation = 0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300; function _getPausableStorage() private pure returns (PausableStorage storage $) { assembly { $.slot := PausableStorageLocation } } /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { PausableStorage storage $ = _getPausableStorage(); $._paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { PausableStorage storage $ = _getPausableStorage(); return $._paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { PausableStorage storage $ = _getPausableStorage(); $._paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { PausableStorage storage $ = _getPausableStorage(); $._paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.20; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.20; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {UpgradeableBeacon} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol) pragma solidity ^0.8.20; import {IBeacon} from "../beacon/IBeacon.sol"; import {Address} from "../../utils/Address.sol"; import {StorageSlot} from "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. */ library ERC1967Utils { // We re-declare ERC-1967 events here because they can't be used directly from IERC1967. // This will be fixed in Solidity 0.8.21. At that point we should remove these events. /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev The `implementation` of the proxy is invalid. */ error ERC1967InvalidImplementation(address implementation); /** * @dev The `admin` of the proxy is invalid. */ error ERC1967InvalidAdmin(address admin); /** * @dev The `beacon` of the proxy is invalid. */ error ERC1967InvalidBeacon(address beacon); /** * @dev An upgrade function sees `msg.value > 0` that may be lost. */ error ERC1967NonPayable(); /** * @dev Returns the current implementation address. */ function getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { if (newImplementation.code.length == 0) { revert ERC1967InvalidImplementation(newImplementation); } StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Performs implementation upgrade with additional setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); if (data.length > 0) { Address.functionDelegateCall(newImplementation, data); } else { _checkNonPayable(); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { if (newAdmin == address(0)) { revert ERC1967InvalidAdmin(address(0)); } StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {IERC1967-AdminChanged} event. */ function changeAdmin(address newAdmin) internal { emit AdminChanged(getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { if (newBeacon.code.length == 0) { revert ERC1967InvalidBeacon(newBeacon); } StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon; address beaconImplementation = IBeacon(newBeacon).implementation(); if (beaconImplementation.code.length == 0) { revert ERC1967InvalidImplementation(beaconImplementation); } } /** * @dev Change the beacon and trigger a setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-BeaconUpgraded} event. * * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for * efficiency. */ function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } else { _checkNonPayable(); } } /** * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract * if an upgrade doesn't perform an initialization call. */ function _checkNonPayable() private { if (msg.value > 0) { revert ERC1967NonPayable(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Compound","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Harvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"reciever","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"APR","outputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"APR","outputs":[{"internalType":"uint256","name":"aprLow","type":"uint256"},{"internalType":"uint256","name":"aprHigh","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WEIGHT_BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"compound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"reciever","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"multiplicator","outputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"pendingRewards","outputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"pendingSeconds","outputs":[{"internalType":"uint256","name":"sec","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"s_asset","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"s_assets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"s_harvestAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"s_rewardTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"s_timeWeightFullCapSec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"s_timeWeightInverted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"s_tokenPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"s_withdrawAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardTreasury","type":"address"}],"name":"setRewardTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeWeightFullCapSec","type":"uint256"}],"name":"setTimeWeightFullCapSec","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeWeightInverted","type":"uint256"}],"name":"setTimeWeightInverted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenPerSecond","type":"uint256"}],"name":"setTokenPerSecond","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"timeWeight","outputs":[{"internalType":"uint256","name":"weight","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPerSecond","outputs":[{"internalType":"uint256","name":"amountPerSecond","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523060805234801561001457600080fd5b5061001d610022565b6100d4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100725760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100d15780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b608051611f7b6100fd600039600081816115500152818161157901526116dc0152611f7b6000f3fe6080604052600436106102515760003560e01c80636e553f6511610139578063a76c4978116100b6578063defe80ef1161007a578063defe80ef1461070e578063e63ab1e914610725578063eaaa92f214610747578063f69e20461461075d578063f6adeea614610772578063f72c0d8b1461078857600080fd5b8063a76c497814610646578063ad3cb1cc14610666578063bd30558e146106a4578063ce8cc378146106ce578063d547741f146106ee57600080fd5b80638456cb59116100fd5780638456cb59146105af5780638f11c13d146105c457806391d14854146105f1578063a217fddf14610611578063a493415f1461062657600080fd5b80636e553f651461050457806370a082311461052457806371625aff1461055a578063771d1b611461057a5780638129fc1c1461059a57600080fd5b806336568abe116101d25780634641257d116101965780634641257d1461046d5780634f1ef2861461048257806352d1902d146104955780635c975abb146104aa5780635fa7b83f146104cf578063662c6554146104e457600080fd5b806336568abe146103cb57806337966982146103eb5780633f4ba83a1461041857806342b609ca1461042d578063451c9eb01461044d57600080fd5b80632e1a7d4d116102195780632e1a7d4d146103045780632ee9a819146103265780632f2ff15d1461035357806331d7a2621461037357806332dbe54e1461039357600080fd5b806301e1d1141461025657806301ffc9a71461027e578063106a23ed146102ae578063248a9ca3146102c4578063289f338f146102e4575b600080fd5b34801561026257600080fd5b5061026b6107bc565b6040519081526020015b60405180910390f35b34801561028a57600080fd5b5061029e610299366004611b31565b61082e565b6040519015158152602001610275565b3480156102ba57600080fd5b5061026b60045481565b3480156102d057600080fd5b5061026b6102df366004611b5b565b610865565b3480156102f057600080fd5b5061026b6102ff366004611b90565b610887565b34801561031057600080fd5b5061032461031f366004611b5b565b61096d565b005b34801561033257600080fd5b5061026b610341366004611b90565b60066020526000908152604090205481565b34801561035f57600080fd5b5061032461036e366004611bab565b610aa4565b34801561037f57600080fd5b5061026b61038e366004611b90565b610ac6565b34801561039f57600080fd5b506000546103b3906001600160a01b031681565b6040516001600160a01b039091168152602001610275565b3480156103d757600080fd5b506103246103e6366004611bab565b610b98565b3480156103f757600080fd5b5061026b610406366004611b90565b60076020526000908152604090205481565b34801561042457600080fd5b50610324610bd0565b34801561043957600080fd5b5061026b610448366004611b90565b610bf3565b34801561045957600080fd5b50610324610468366004611b5b565b610c5a565b34801561047957600080fd5b50610324610c6b565b610324610490366004611bed565b610ce0565b3480156104a157600080fd5b5061026b610cff565b3480156104b657600080fd5b50600080516020611f268339815191525460ff1661029e565b3480156104db57600080fd5b5060015461026b565b3480156104f057600080fd5b5061026b6104ff366004611b90565b610d1c565b34801561051057600080fd5b5061032461051f366004611bab565b610d62565b34801561053057600080fd5b5061026b61053f366004611b90565b6001600160a01b031660009081526005602052604090205490565b34801561056657600080fd5b50610324610575366004611b5b565b610ea5565b34801561058657600080fd5b506002546103b3906001600160a01b031681565b3480156105a657600080fd5b50610324610eb6565b3480156105bb57600080fd5b5061032461108e565b3480156105d057600080fd5b5061026b6105df366004611b90565b60056020526000908152604090205481565b3480156105fd57600080fd5b5061029e61060c366004611bab565b6110ae565b34801561061d57600080fd5b5061026b600081565b34801561063257600080fd5b50610324610641366004611b90565b6110e6565b34801561065257600080fd5b5061026b610661366004611b90565b611159565b34801561067257600080fd5b50610697604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516102759190611cd3565b3480156106b057600080fd5b506106b961117c565b60408051928352602083019190915201610275565b3480156106da57600080fd5b506103246106e9366004611b5b565b6111d9565b3480156106fa57600080fd5b50610324610709366004611bab565b611239565b34801561071a57600080fd5b5061026b620f424081565b34801561073157600080fd5b5061026b600080516020611ee683398151915281565b34801561075357600080fd5b5061026b60035481565b34801561076957600080fd5b50610324611255565b34801561077e57600080fd5b5061026b60015481565b34801561079457600080fd5b5061026b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b600080546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190611d06565b905090565b60006001600160e01b03198216637965db0b60e01b148061085f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000908152600080516020611f06833981519152602052604090206001015490565b6001600160a01b03811660009081526006602052604081205481906108ac9042611d35565b90506000811180156108bd57504281105b6109045760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b1bd8dac81c195c9a5bd9606a1b60448201526064015b60405180910390fd5b60045461091490620f4240611d48565b600354826004546109259190611d5b565b61092f9190611d72565b61093c90620f4240611d48565b61094990620f4240611d5b565b6109539190611d72565b9150620f424082111561096757620f424091505b50919050565b6109756112ef565b33600090815260056020526040902054818110156109d55760405162461bcd60e51b815260206004820152601a60248201527f596f752077616e6e6120746f6f206d7563682c2062756464792100000000000060448201526064016108fb565b33600090815260056020526040812080548492906109f4908490611d35565b90915550503360009081526006602090815260408083204290556005909152902054811015610a5c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964207472616e73616374696f6e2160601b60448201526064016108fb565b600054610a73906001600160a01b03163384611322565b604051829033907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a35050565b610aad82610865565b610ab681611381565b610ac0838361138b565b50505050565b600080610ad283611159565b9050600081118015610ae357504281105b610b285760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a59081c195b991a5b99c81c195c9a5bd960521b60448201526064016108fb565b6000610b3384610887565b9050620f4240610b416107bc565b610b4b9190611d5b565b6001600160a01b038516600090815260056020526040902054610b6f908390611d5b565b600154610b7c9085611d5b565b610b869190611d5b565b610b909190611d72565b949350505050565b6001600160a01b0381163314610bc15760405163334bd91960e11b815260040160405180910390fd5b610bcb8282611430565b505050565b600080516020611ee6833981519152610be881611381565b610bf06114ac565b50565b600080600454620f4240610c079190611d48565b610c1490620f4240611d72565b9050610c2381620f4240611d35565b81610c2d85610887565b610c379190611d35565b610c4990670de0b6b3a7640000611d5b565b610c539190611d72565b9392505050565b6000610c6581611381565b50600155565b610c736112ef565b6000610c7e33610ac6565b33600081815260076020526040812042905554600254929350610cb0926001600160a01b03918216929116908461150c565b604051819033907fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba90600090a350565b610ce8611545565b610cf1826115ea565b610cfb8282611614565b5050565b6000610d096116d1565b50600080516020611ec683398151915290565b600080610d276107bc565b600154610d3f906a1a1601fc4ea7109e000000611d5b565b610d499190611d72565b9050620f4240610d5884610887565b610c499083611d5b565b610d6a6112ef565b6001600160a01b038116610db05760405162461bcd60e51b815260206004820152600d60248201526c5a65726f20616464726573732160981b60448201526064016108fb565b6001600160a01b0381166000908152600660205260408120549003610deb576001600160a01b03811660009081526006602052604090204290555b6001600160a01b0381166000908152600760205260408120549003610e26576001600160a01b03811660009081526007602052604090204290555b6001600160a01b03811660009081526005602052604081208054849290610e4e908490611d48565b9091555050600054610e6b906001600160a01b031633308561150c565b60405182906001600160a01b038316907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c90600090a35050565b6000610eb081611381565b50600355565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015610efc5750825b905060008267ffffffffffffffff166001148015610f195750303b155b905081158015610f27575080155b15610f455760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f6f57845460ff60401b1916600160401b1785555b610f7761171a565b610f7f61172a565b610f8761172a565b610f9260003361138b565b50610fab600080516020611ee68339815191523361138b565b50610fd67f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e33361138b565b50610ff473ca19e1e0ee83f92c47820eca8ef8a5d8b6acdbcd6110e6565b610ffe6000610c5a565b61100a624f1a00610ea5565b61101b6106e9620f42406003611d5b565b600080546001600160a01b03191673e47346273e984ed59500e57a81c68c8a45809491179055831561108757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b600080516020611ee68339815191526110a681611381565b610bf0611732565b6000918252600080516020611f06833981519152602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006110f181611381565b6001600160a01b0382166111365760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016108fb565b50600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205461085f9042611d35565b6000806111876107bc565b60015461119f906a1a1601fc4ea7109e000000611d5b565b6111a99190611d72565b9050620f42406004546111bc9190611d48565b6111c9620f424083611d5b565b6111d39190611d72565b91509091565b60006111e481611381565b6111f26002620f4240611e78565b8211156112335760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206e756d6265722160881b60448201526064016108fb565b50600455565b61124282610865565b61124b81611381565b610ac08383611430565b61125d6112ef565b600061126833610ac6565b3360009081526005602052604081208054929350839290919061128c908490611d48565b9091555050336000908152600760205260408120429055546002546112bf916001600160a01b039081169116308461150c565b604051819033907f169f1815ebdea059aac3bb00ec9a9594c7a5ffcb64a17e8392b5d84909a1455690600090a350565b600080516020611f268339815191525460ff16156113205760405163d93c066560e01b815260040160405180910390fd5b565b6040516001600160a01b03838116602483015260448201839052610bcb91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061177b565b610bf081336117de565b6000600080516020611f068339815191526113a684846110ae565b611426576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556113dc3390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4600191505061085f565b600091505061085f565b6000600080516020611f0683398151915261144b84846110ae565b15611426576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4600191505061085f565b6114b4611817565b600080516020611f26833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b6040516001600160a01b038481166024830152838116604483015260648201839052610ac09186918216906323b872dd9060840161134f565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806115cc57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166115c0600080516020611ec6833981519152546001600160a01b031690565b6001600160a01b031614155b156113205760405163703e46dd60e11b815260040160405180910390fd5b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610cfb81611381565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561166e575060408051601f3d908101601f1916820190925261166b91810190611d06565b60015b61169657604051634c9c8ce360e01b81526001600160a01b03831660048201526024016108fb565b600080516020611ec683398151915281146116c757604051632a87526960e21b8152600481018290526024016108fb565b610bcb8383611847565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146113205760405163703e46dd60e11b815260040160405180910390fd5b61172261189d565b6113206118e6565b61132061189d565b61173a6112ef565b600080516020611f26833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336114ee565b60006117906001600160a01b03841683611907565b905080516000141580156117b55750808060200190518101906117b39190611e87565b155b15610bcb57604051635274afe760e01b81526001600160a01b03841660048201526024016108fb565b6117e882826110ae565b610cfb5760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016108fb565b600080516020611f268339815191525460ff1661132057604051638dfc202b60e01b815260040160405180910390fd5b61185082611915565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561189557610bcb828261197a565b610cfb6119f0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661132057604051631afcd79f60e31b815260040160405180910390fd5b6118ee61189d565b600080516020611f26833981519152805460ff19169055565b6060610c5383836000611a0f565b806001600160a01b03163b60000361194b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024016108fb565b600080516020611ec683398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516119979190611ea9565b600060405180830381855af49150503d80600081146119d2576040519150601f19603f3d011682016040523d82523d6000602084013e6119d7565b606091505b50915091506119e7858383611aac565b95945050505050565b34156113205760405163b398979f60e01b815260040160405180910390fd5b606081471015611a345760405163cd78605960e01b81523060048201526024016108fb565b600080856001600160a01b03168486604051611a509190611ea9565b60006040518083038185875af1925050503d8060008114611a8d576040519150601f19603f3d011682016040523d82523d6000602084013e611a92565b606091505b5091509150611aa2868383611aac565b9695505050505050565b606082611ac157611abc82611b08565b610c53565b8151158015611ad857506001600160a01b0384163b155b15611b0157604051639996b31560e01b81526001600160a01b03851660048201526024016108fb565b5080610c53565b805115611b185780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b600060208284031215611b4357600080fd5b81356001600160e01b031981168114610c5357600080fd5b600060208284031215611b6d57600080fd5b5035919050565b80356001600160a01b0381168114611b8b57600080fd5b919050565b600060208284031215611ba257600080fd5b610c5382611b74565b60008060408385031215611bbe57600080fd5b82359150611bce60208401611b74565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611c0057600080fd5b611c0983611b74565b9150602083013567ffffffffffffffff80821115611c2657600080fd5b818501915085601f830112611c3a57600080fd5b813581811115611c4c57611c4c611bd7565b604051601f8201601f19908116603f01168101908382118183101715611c7457611c74611bd7565b81604052828152886020848701011115611c8d57600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60005b83811015611cca578181015183820152602001611cb2565b50506000910152565b6020815260008251806020840152611cf2816040850160208701611caf565b601f01601f19169190910160400192915050565b600060208284031215611d1857600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561085f5761085f611d1f565b8082018082111561085f5761085f611d1f565b808202811582820484141761085f5761085f611d1f565b600082611d8f57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611dcf578160001904821115611db557611db5611d1f565b80851615611dc257918102915b93841c9390800290611d99565b509250929050565b600082611de65750600161085f565b81611df35750600061085f565b8160018114611e095760028114611e1357611e2f565b600191505061085f565b60ff841115611e2457611e24611d1f565b50506001821b61085f565b5060208310610133831016604e8410600b8410161715611e52575081810a61085f565b611e5c8383611d94565b8060001904821115611e7057611e70611d1f565b029392505050565b6000610c5360ff841683611dd7565b600060208284031215611e9957600080fd5b81518015158114610c5357600080fd5b60008251611ebb818460208701611caf565b919091019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800cd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a2646970667358221220647ace7b7233900a2ac79856d7d74f45be1f75216413c473ad4c7e41635cb21664736f6c63430008180033
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636e553f6511610139578063a76c4978116100b6578063defe80ef1161007a578063defe80ef1461070e578063e63ab1e914610725578063eaaa92f214610747578063f69e20461461075d578063f6adeea614610772578063f72c0d8b1461078857600080fd5b8063a76c497814610646578063ad3cb1cc14610666578063bd30558e146106a4578063ce8cc378146106ce578063d547741f146106ee57600080fd5b80638456cb59116100fd5780638456cb59146105af5780638f11c13d146105c457806391d14854146105f1578063a217fddf14610611578063a493415f1461062657600080fd5b80636e553f651461050457806370a082311461052457806371625aff1461055a578063771d1b611461057a5780638129fc1c1461059a57600080fd5b806336568abe116101d25780634641257d116101965780634641257d1461046d5780634f1ef2861461048257806352d1902d146104955780635c975abb146104aa5780635fa7b83f146104cf578063662c6554146104e457600080fd5b806336568abe146103cb57806337966982146103eb5780633f4ba83a1461041857806342b609ca1461042d578063451c9eb01461044d57600080fd5b80632e1a7d4d116102195780632e1a7d4d146103045780632ee9a819146103265780632f2ff15d1461035357806331d7a2621461037357806332dbe54e1461039357600080fd5b806301e1d1141461025657806301ffc9a71461027e578063106a23ed146102ae578063248a9ca3146102c4578063289f338f146102e4575b600080fd5b34801561026257600080fd5b5061026b6107bc565b6040519081526020015b60405180910390f35b34801561028a57600080fd5b5061029e610299366004611b31565b61082e565b6040519015158152602001610275565b3480156102ba57600080fd5b5061026b60045481565b3480156102d057600080fd5b5061026b6102df366004611b5b565b610865565b3480156102f057600080fd5b5061026b6102ff366004611b90565b610887565b34801561031057600080fd5b5061032461031f366004611b5b565b61096d565b005b34801561033257600080fd5b5061026b610341366004611b90565b60066020526000908152604090205481565b34801561035f57600080fd5b5061032461036e366004611bab565b610aa4565b34801561037f57600080fd5b5061026b61038e366004611b90565b610ac6565b34801561039f57600080fd5b506000546103b3906001600160a01b031681565b6040516001600160a01b039091168152602001610275565b3480156103d757600080fd5b506103246103e6366004611bab565b610b98565b3480156103f757600080fd5b5061026b610406366004611b90565b60076020526000908152604090205481565b34801561042457600080fd5b50610324610bd0565b34801561043957600080fd5b5061026b610448366004611b90565b610bf3565b34801561045957600080fd5b50610324610468366004611b5b565b610c5a565b34801561047957600080fd5b50610324610c6b565b610324610490366004611bed565b610ce0565b3480156104a157600080fd5b5061026b610cff565b3480156104b657600080fd5b50600080516020611f268339815191525460ff1661029e565b3480156104db57600080fd5b5060015461026b565b3480156104f057600080fd5b5061026b6104ff366004611b90565b610d1c565b34801561051057600080fd5b5061032461051f366004611bab565b610d62565b34801561053057600080fd5b5061026b61053f366004611b90565b6001600160a01b031660009081526005602052604090205490565b34801561056657600080fd5b50610324610575366004611b5b565b610ea5565b34801561058657600080fd5b506002546103b3906001600160a01b031681565b3480156105a657600080fd5b50610324610eb6565b3480156105bb57600080fd5b5061032461108e565b3480156105d057600080fd5b5061026b6105df366004611b90565b60056020526000908152604090205481565b3480156105fd57600080fd5b5061029e61060c366004611bab565b6110ae565b34801561061d57600080fd5b5061026b600081565b34801561063257600080fd5b50610324610641366004611b90565b6110e6565b34801561065257600080fd5b5061026b610661366004611b90565b611159565b34801561067257600080fd5b50610697604051806040016040528060058152602001640352e302e360dc1b81525081565b6040516102759190611cd3565b3480156106b057600080fd5b506106b961117c565b60408051928352602083019190915201610275565b3480156106da57600080fd5b506103246106e9366004611b5b565b6111d9565b3480156106fa57600080fd5b50610324610709366004611bab565b611239565b34801561071a57600080fd5b5061026b620f424081565b34801561073157600080fd5b5061026b600080516020611ee683398151915281565b34801561075357600080fd5b5061026b60035481565b34801561076957600080fd5b50610324611255565b34801561077e57600080fd5b5061026b60015481565b34801561079457600080fd5b5061026b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b600080546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190611d06565b905090565b60006001600160e01b03198216637965db0b60e01b148061085f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000908152600080516020611f06833981519152602052604090206001015490565b6001600160a01b03811660009081526006602052604081205481906108ac9042611d35565b90506000811180156108bd57504281105b6109045760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b1bd8dac81c195c9a5bd9606a1b60448201526064015b60405180910390fd5b60045461091490620f4240611d48565b600354826004546109259190611d5b565b61092f9190611d72565b61093c90620f4240611d48565b61094990620f4240611d5b565b6109539190611d72565b9150620f424082111561096757620f424091505b50919050565b6109756112ef565b33600090815260056020526040902054818110156109d55760405162461bcd60e51b815260206004820152601a60248201527f596f752077616e6e6120746f6f206d7563682c2062756464792100000000000060448201526064016108fb565b33600090815260056020526040812080548492906109f4908490611d35565b90915550503360009081526006602090815260408083204290556005909152902054811015610a5c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964207472616e73616374696f6e2160601b60448201526064016108fb565b600054610a73906001600160a01b03163384611322565b604051829033907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a35050565b610aad82610865565b610ab681611381565b610ac0838361138b565b50505050565b600080610ad283611159565b9050600081118015610ae357504281105b610b285760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a59081c195b991a5b99c81c195c9a5bd960521b60448201526064016108fb565b6000610b3384610887565b9050620f4240610b416107bc565b610b4b9190611d5b565b6001600160a01b038516600090815260056020526040902054610b6f908390611d5b565b600154610b7c9085611d5b565b610b869190611d5b565b610b909190611d72565b949350505050565b6001600160a01b0381163314610bc15760405163334bd91960e11b815260040160405180910390fd5b610bcb8282611430565b505050565b600080516020611ee6833981519152610be881611381565b610bf06114ac565b50565b600080600454620f4240610c079190611d48565b610c1490620f4240611d72565b9050610c2381620f4240611d35565b81610c2d85610887565b610c379190611d35565b610c4990670de0b6b3a7640000611d5b565b610c539190611d72565b9392505050565b6000610c6581611381565b50600155565b610c736112ef565b6000610c7e33610ac6565b33600081815260076020526040812042905554600254929350610cb0926001600160a01b03918216929116908461150c565b604051819033907fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba90600090a350565b610ce8611545565b610cf1826115ea565b610cfb8282611614565b5050565b6000610d096116d1565b50600080516020611ec683398151915290565b600080610d276107bc565b600154610d3f906a1a1601fc4ea7109e000000611d5b565b610d499190611d72565b9050620f4240610d5884610887565b610c499083611d5b565b610d6a6112ef565b6001600160a01b038116610db05760405162461bcd60e51b815260206004820152600d60248201526c5a65726f20616464726573732160981b60448201526064016108fb565b6001600160a01b0381166000908152600660205260408120549003610deb576001600160a01b03811660009081526006602052604090204290555b6001600160a01b0381166000908152600760205260408120549003610e26576001600160a01b03811660009081526007602052604090204290555b6001600160a01b03811660009081526005602052604081208054849290610e4e908490611d48565b9091555050600054610e6b906001600160a01b031633308561150c565b60405182906001600160a01b038316907fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c90600090a35050565b6000610eb081611381565b50600355565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff16159067ffffffffffffffff16600081158015610efc5750825b905060008267ffffffffffffffff166001148015610f195750303b155b905081158015610f27575080155b15610f455760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610f6f57845460ff60401b1916600160401b1785555b610f7761171a565b610f7f61172a565b610f8761172a565b610f9260003361138b565b50610fab600080516020611ee68339815191523361138b565b50610fd67f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e33361138b565b50610ff473ca19e1e0ee83f92c47820eca8ef8a5d8b6acdbcd6110e6565b610ffe6000610c5a565b61100a624f1a00610ea5565b61101b6106e9620f42406003611d5b565b600080546001600160a01b03191673e47346273e984ed59500e57a81c68c8a45809491179055831561108757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b600080516020611ee68339815191526110a681611381565b610bf0611732565b6000918252600080516020611f06833981519152602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60006110f181611381565b6001600160a01b0382166111365760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064016108fb565b50600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526007602052604081205461085f9042611d35565b6000806111876107bc565b60015461119f906a1a1601fc4ea7109e000000611d5b565b6111a99190611d72565b9050620f42406004546111bc9190611d48565b6111c9620f424083611d5b565b6111d39190611d72565b91509091565b60006111e481611381565b6111f26002620f4240611e78565b8211156112335760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206e756d6265722160881b60448201526064016108fb565b50600455565b61124282610865565b61124b81611381565b610ac08383611430565b61125d6112ef565b600061126833610ac6565b3360009081526005602052604081208054929350839290919061128c908490611d48565b9091555050336000908152600760205260408120429055546002546112bf916001600160a01b039081169116308461150c565b604051819033907f169f1815ebdea059aac3bb00ec9a9594c7a5ffcb64a17e8392b5d84909a1455690600090a350565b600080516020611f268339815191525460ff16156113205760405163d93c066560e01b815260040160405180910390fd5b565b6040516001600160a01b03838116602483015260448201839052610bcb91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061177b565b610bf081336117de565b6000600080516020611f068339815191526113a684846110ae565b611426576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556113dc3390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4600191505061085f565b600091505061085f565b6000600080516020611f0683398151915261144b84846110ae565b15611426576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4600191505061085f565b6114b4611817565b600080516020611f26833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b6040516001600160a01b038481166024830152838116604483015260648201839052610ac09186918216906323b872dd9060840161134f565b306001600160a01b037f000000000000000000000000fd97d8ce2d66b7dbc018fec03021ed56d49421141614806115cc57507f000000000000000000000000fd97d8ce2d66b7dbc018fec03021ed56d49421146001600160a01b03166115c0600080516020611ec6833981519152546001600160a01b031690565b6001600160a01b031614155b156113205760405163703e46dd60e11b815260040160405180910390fd5b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610cfb81611381565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561166e575060408051601f3d908101601f1916820190925261166b91810190611d06565b60015b61169657604051634c9c8ce360e01b81526001600160a01b03831660048201526024016108fb565b600080516020611ec683398151915281146116c757604051632a87526960e21b8152600481018290526024016108fb565b610bcb8383611847565b306001600160a01b037f000000000000000000000000fd97d8ce2d66b7dbc018fec03021ed56d494211416146113205760405163703e46dd60e11b815260040160405180910390fd5b61172261189d565b6113206118e6565b61132061189d565b61173a6112ef565b600080516020611f26833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336114ee565b60006117906001600160a01b03841683611907565b905080516000141580156117b55750808060200190518101906117b39190611e87565b155b15610bcb57604051635274afe760e01b81526001600160a01b03841660048201526024016108fb565b6117e882826110ae565b610cfb5760405163e2517d3f60e01b81526001600160a01b0382166004820152602481018390526044016108fb565b600080516020611f268339815191525460ff1661132057604051638dfc202b60e01b815260040160405180910390fd5b61185082611915565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561189557610bcb828261197a565b610cfb6119f0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff1661132057604051631afcd79f60e31b815260040160405180910390fd5b6118ee61189d565b600080516020611f26833981519152805460ff19169055565b6060610c5383836000611a0f565b806001600160a01b03163b60000361194b57604051634c9c8ce360e01b81526001600160a01b03821660048201526024016108fb565b600080516020611ec683398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516119979190611ea9565b600060405180830381855af49150503d80600081146119d2576040519150601f19603f3d011682016040523d82523d6000602084013e6119d7565b606091505b50915091506119e7858383611aac565b95945050505050565b34156113205760405163b398979f60e01b815260040160405180910390fd5b606081471015611a345760405163cd78605960e01b81523060048201526024016108fb565b600080856001600160a01b03168486604051611a509190611ea9565b60006040518083038185875af1925050503d8060008114611a8d576040519150601f19603f3d011682016040523d82523d6000602084013e611a92565b606091505b5091509150611aa2868383611aac565b9695505050505050565b606082611ac157611abc82611b08565b610c53565b8151158015611ad857506001600160a01b0384163b155b15611b0157604051639996b31560e01b81526001600160a01b03851660048201526024016108fb565b5080610c53565b805115611b185780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b600060208284031215611b4357600080fd5b81356001600160e01b031981168114610c5357600080fd5b600060208284031215611b6d57600080fd5b5035919050565b80356001600160a01b0381168114611b8b57600080fd5b919050565b600060208284031215611ba257600080fd5b610c5382611b74565b60008060408385031215611bbe57600080fd5b82359150611bce60208401611b74565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611c0057600080fd5b611c0983611b74565b9150602083013567ffffffffffffffff80821115611c2657600080fd5b818501915085601f830112611c3a57600080fd5b813581811115611c4c57611c4c611bd7565b604051601f8201601f19908116603f01168101908382118183101715611c7457611c74611bd7565b81604052828152886020848701011115611c8d57600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60005b83811015611cca578181015183820152602001611cb2565b50506000910152565b6020815260008251806020840152611cf2816040850160208701611caf565b601f01601f19169190910160400192915050565b600060208284031215611d1857600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561085f5761085f611d1f565b8082018082111561085f5761085f611d1f565b808202811582820484141761085f5761085f611d1f565b600082611d8f57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115611dcf578160001904821115611db557611db5611d1f565b80851615611dc257918102915b93841c9390800290611d99565b509250929050565b600082611de65750600161085f565b81611df35750600061085f565b8160018114611e095760028114611e1357611e2f565b600191505061085f565b60ff841115611e2457611e24611d1f565b50506001821b61085f565b5060208310610133831016604e8410600b8410161715611e52575081810a61085f565b611e5c8383611d94565b8060001904821115611e7057611e70611d1f565b029392505050565b6000610c5360ff841683611dd7565b600060208284031215611e9957600080fd5b81518015158114610c5357600080fd5b60008251611ebb818460208701611caf565b919091019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800cd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300a2646970667358221220647ace7b7233900a2ac79856d7d74f45be1f75216413c473ad4c7e41635cb21664736f6c63430008180033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.