Source Code
Overview
ETH Balance
0 ETH
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 Name:
StakeSubjectGateway
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "../FortaStaking.sol";
import "./IDelegatedStakeSubject.sol";
import "./IDirectStakeSubject.sol";
/**
* Formerly FortaStakingParameters.
*
* This contract manages the relationship between the staking contracts and the several affected staking subjects,
* who hold the responsability of defining staking thresholds, managed subjects, and related particularities.
*/
contract StakeSubjectGateway is BaseComponentUpgradeable, SubjectTypeValidator, IStakeSubjectGateway {
FortaStaking private _fortaStaking; // Should be immutable but already deployed.
// stake subject parameters for each subject
/// @custom:oz-renamed-from _stakeSubjectHandlers
/// @custom:oz-retyped-from mapping(uint8 => contract IStakeSubject)
mapping(uint8 => address) private _stakeSubjects;
error NonIDelegatedSubjectHandler(uint8 subjectType, address stakeSubject);
string public constant version = "0.1.1";
uint256 private constant MAX_UINT = 2**256 - 1;
/// @custom:oz-upgrades-unsafe-allow constructor
constructor(address forwarder) initializer ForwardedContext(forwarder) {}
/**
* @notice Initializer method, access point to initialize inheritance tree.
* @param __manager address of AccessManager.
* @param __fortaStaking address of FortaStaking.
*/
function initialize(address __manager, address __fortaStaking) public initializer {
__BaseComponentUpgradeable_init(__manager);
_setFortaStaking(__fortaStaking);
}
function _setFortaStaking(address newFortaStaking) internal {
if (newFortaStaking == address(0)) revert ZeroAddress("newFortaStaking");
_fortaStaking = FortaStaking(newFortaStaking);
}
/**
* Sets stake subject for subject type.
*/
function setStakeSubject(uint8 subjectType, address subject) external onlyRole(DEFAULT_ADMIN_ROLE) onlyValidSubjectType(subjectType) {
if (subject == address(0)) revert ZeroAddress("subject");
emit StakeSubjectChanged(subject, (_stakeSubjects[subjectType]));
_stakeSubjects[subjectType] = subject;
}
function unsetStakeSubject(uint8 subjectType) external onlyRole(DEFAULT_ADMIN_ROLE) onlyValidSubjectType(subjectType) {
emit StakeSubjectChanged(address(0), address(_stakeSubjects[subjectType]));
delete _stakeSubjects[subjectType];
}
function getStakeSubject(uint8 subjectType) external view returns (address) {
return _stakeSubjects[subjectType];
}
/**
* Get max stake for that `subjectType` and `subject`
* @return if subject is DIRECT, returns stakeThreshold.max, if not MAX_UINT. If subject not set, it will return 0.
*/
function maxStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256) {
if (getSubjectTypeAgency(subjectType) != SubjectStakeAgency.DIRECT) {
return MAX_UINT;
}
if (address(0) == _stakeSubjects[subjectType]) {
return 0;
}
return IDirectStakeSubject(_stakeSubjects[subjectType]).getStakeThreshold(subject).max;
}
/**
* Get min stake for that `subjectType` and `subject`
* @return if subject is DIRECT, returns stakeThreshold.min, if not 0. If subject not set, it will return MAX_UINT.
*/
function minStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256) {
if (getSubjectTypeAgency(subjectType) != SubjectStakeAgency.DIRECT) {
return 0;
}
if (address(0) == _stakeSubjects[subjectType]) {
return MAX_UINT;
}
return IDirectStakeSubject(_stakeSubjects[subjectType]).getStakeThreshold(subject).min;
}
function maxManagedStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256) {
if (getSubjectTypeAgency(subjectType) != SubjectStakeAgency.DELEGATED) {
return MAX_UINT;
}
if (address(0) == _stakeSubjects[subjectType]) {
return 0;
}
return IDelegatedStakeSubject(address(_stakeSubjects[subjectType])).getManagedStakeThreshold(subject).max;
}
function minManagedStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256) {
if (getSubjectTypeAgency(subjectType) != SubjectStakeAgency.DELEGATED) {
return 0;
}
if (address(0) == _stakeSubjects[subjectType]) {
return MAX_UINT;
}
return IDelegatedStakeSubject(address(_stakeSubjects[subjectType])).getManagedStakeThreshold(subject).min;
}
function totalManagedSubjects(uint8 subjectType, uint256 subject) external view returns (uint256) {
if (getSubjectTypeAgency(subjectType) != SubjectStakeAgency.DELEGATED) {
return 0;
}
if (address(0) == _stakeSubjects[subjectType]) {
return 0;
}
return IDelegatedStakeSubject(address(_stakeSubjects[subjectType])).getTotalManagedSubjects(subject);
}
/// Get if staking is activated for that `subjectType` and `subject`. If not set, will return false.
function isStakeActivatedFor(uint8 subjectType, uint256 subject) external view returns (bool) {
if (subjectType == SCANNER_POOL_SUBJECT || subjectType == DELEGATOR_SCANNER_POOL_SUBJECT) {
return true;
}
if (address(0) == _stakeSubjects[subjectType]) {
return false;
}
return IDirectStakeSubject(_stakeSubjects[subjectType]).getStakeThreshold(subject).activated;
}
/// Gets active stake (amount of staked tokens) on `subject` id for `subjectType`
function activeStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256) {
return _fortaStaking.activeStakeFor(subjectType, subject);
}
/// Gets active and inactive stake (amount of staked tokens) on `subject` id for `subjectType`
function totalStakeFor(uint8 subjectType, uint256 subject) external view override returns (uint256) {
return _fortaStaking.activeStakeFor(subjectType, subject) + _fortaStaking.inactiveStakeFor(subjectType, subject);
}
/// Checks if subject, subjectType is registered
function isRegistered(uint8 subjectType, uint256 subject) external view returns (bool) {
if (getSubjectTypeAgency(subjectType) == SubjectStakeAgency.DELEGATOR) {
return true;
}
if (address(0) == _stakeSubjects[subjectType]) {
return false;
}
return IStakeSubject(_stakeSubjects[subjectType]).isRegistered(subject);
}
/// Returns true if allocator owns the subject, or is the subject contract itself
function canManageAllocation(uint8 subjectType, uint256 subject, address allocator) external view returns (bool) {
SubjectStakeAgency agency = getSubjectTypeAgency(subjectType);
if (agency != SubjectStakeAgency.DELEGATOR && agency != SubjectStakeAgency.DELEGATED) {
return false;
}
if (address(0) == _stakeSubjects[subjectType]) {
return false;
}
return IStakeSubject(_stakeSubjects[subjectType]).ownerOf(subject) == allocator || _stakeSubjects[subjectType] == allocator;
}
function ownerOf(uint8 subjectType, uint256 subject) external view returns (address) {
if (address(0) == _stakeSubjects[subjectType]) {
return address(0);
}
return IStakeSubject(_stakeSubjects[subjectType]).ownerOf(subject);
}
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "./IStakeSubject.sol";
interface IDelegatedStakeSubject is IStakeSubject {
function getTotalManagedSubjects(uint256 managerId) external view returns(uint256);
function getManagedStakeThreshold(uint256 managedId) external view returns(StakeThreshold memory);
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/interfaces/draft-IERC2612.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "@openzeppelin/contracts/utils/Timers.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/extensions/ERC1155SupplyUpgradeable.sol";
import "./IStakeMigrator.sol";
import "./FortaStakingUtils.sol";
import "./SubjectTypeValidator.sol";
import "./allocation/IStakeAllocator.sol";
import "./stake_subjects/IStakeSubjectGateway.sol";
import "./slashing/ISlashingExecutor.sol";
import "../BaseComponentUpgradeable.sol";
import "../../tools/Distributions.sol";
import "../utils/ReentrancyGuardHandler.sol";
/**
* @dev This is a generic staking contract for the Forta platform. It allows any account to deposit ERC20 tokens to
* delegate their "power" by staking on behalf of a particular subject. The subject can be scanner, or any other actor
* in the Forta ecosystem, who need to lock assets in order to contribute to the system.
*
* Stakers take risks with their funds, as bad action from a subject can lead to slashing of the funds. In the
* meantime, stakers are elligible for rewards. Rewards distributed to a particular subject's stakers are distributed
* following to each staker's share in the subject.
*
* Stakers can withdraw their funds, following a withdrawal delay. During the withdrawal delay, funds are no longer
* counting toward the active stake of a subject, but are still slashable.
*
* The SLASHER_ROLE should be given to a smart contract that will be in charge of handling the slashing proposal process.
*
* Stakers receive ERC1155 shares in exchange for their stake, making the active stake transferable. When a withdrawal
* is initiated, similarly the ERC1155 tokens representing the (transferable) active shares are burned in exchange for
* non-transferable ERC1155 tokens representing the inactive shares.
*
* ERC1155 shares representing active stake are transferable, and can be used in an AMM. Their value is however subject
* to quick devaluation in case of slashing event for the corresponding subject. Thus, trading of such shares should be
* be done very carefully.
*
* WARNING: To stake from another smart contract (smart contract wallets included), it must be fully ERC1155 compatible,
* implementing ERC1155Receiver. If not, minting of active and inactive shares will fail.
* Do not deposit on the constructor if you don't implement ERC1155Receiver. During the construction, the minting will
* succeed but you will not be able to withdraw or mint new shares from the contract. If this happens, transfer your
* shares to an EOA or fully ERC1155 compatible contract.
*/
contract FortaStaking is BaseComponentUpgradeable, ERC1155SupplyUpgradeable, SubjectTypeValidator, ISlashingExecutor, IStakeMigrator, ReentrancyGuardHandlerUpgradeable {
using Distributions for Distributions.Balances;
using Distributions for Distributions.SignedBalances;
using Timers for Timers.Timestamp;
using ERC165Checker for address;
// NOTE: do not set as immutable. Previous versions were deployed, and setting as immutable would
// generate an incopatible storage layout for new versions, risking storage layout collisions.
IERC20 public stakedToken;
// subject => active stake
Distributions.Balances private _activeStake;
// subject => inactive stake
Distributions.Balances private _inactiveStake;
// subject => staker => inactive stake timer
mapping(uint256 => mapping(address => Timers.Timestamp)) private _lockingDelay;
// subject => reward
Distributions.Balances private _rewards;
// subject => staker => released reward
mapping(uint256 => Distributions.SignedBalances) private _released;
/// @custom:oz-renamed-from _frozen
mapping(uint256 => bool) private _deprecated_frozen;
uint64 private _withdrawalDelay;
// treasury for slashing
address private _treasury;
/// @custom:oz-retyped-from IStakeController
/// @custom:oz-renamed-from _stakingParameters
IStakeSubjectGateway public subjectGateway;
uint256 public slashDelegatorsPercent;
IStakeAllocator public allocator;
mapping(uint256 => uint256) public openProposals; // activeShareId --> counter
uint256 _reentrancyStatus;
uint256 public constant MIN_WITHDRAWAL_DELAY = 1 days;
uint256 public constant MAX_WITHDRAWAL_DELAY = 90 days;
uint256 public constant MAX_SLASHABLE_PERCENT = 90;
uint256 private constant HUNDRED_PERCENT = 100;
event StakeDeposited(uint8 indexed subjectType, uint256 indexed subject, address indexed account, uint256 amount);
event WithdrawalInitiated(uint8 indexed subjectType, uint256 indexed subject, address indexed account, uint64 deadline);
event WithdrawalExecuted(uint8 indexed subjectType, uint256 indexed subject, address indexed account);
event Froze(uint8 indexed subjectType, uint256 indexed subject, address indexed by, bool isFrozen);
event Slashed(uint8 indexed subjectType, uint256 indexed subject, address indexed by, uint256 value);
event SlashedShareSent(uint8 indexed subjectType, uint256 indexed subject, address indexed by, uint256 value);
event DelaySet(uint256 newWithdrawalDelay);
event TreasurySet(address newTreasury);
event StakeHelpersConfigured(address indexed subjectGateway, address indexed allocator);
event MaxStakeReached(uint8 indexed subjectType, uint256 indexed subject);
event TokensSwept(address indexed token, address to, uint256 amount);
event SlashDelegatorsPercentSet(uint256 percent);
error WithdrawalNotReady();
error SlashingOver90Percent();
error WithdrawalSharesNotTransferible();
error FrozenSubject();
error NoActiveShares();
error NoInactiveShares();
error StakeInactiveOrSubjectNotFound();
string public constant version = "0.1.2";
/// @custom:oz-upgrades-unsafe-allow constructor
constructor(address _forwarder) initializer ForwardedContext(_forwarder) {}
/**
* @notice Initializer method, access point to initialize inheritance tree.
* @param __manager address of AccessManager.
* @param __stakedToken ERC20 to be staked (FORT).
* @param __withdrawalDelay cooldown period between withdrawal init and withdrawal (in seconds).
* @param __treasury address where the slashed tokens go to.
*/
function initialize(address __manager, IERC20 __stakedToken, uint64 __withdrawalDelay, address __treasury) public initializer {
if (__treasury == address(0)) revert ZeroAddress("__treasury");
if (address(__stakedToken) == address(0)) revert ZeroAddress("__stakedToken");
__BaseComponentUpgradeable_init(__manager);
__ERC1155_init("");
__ERC1155Supply_init();
_withdrawalDelay = __withdrawalDelay;
_treasury = __treasury;
stakedToken = IERC20(__stakedToken);
emit DelaySet(__withdrawalDelay);
emit TreasurySet(__treasury);
}
/**
* Reinitializer to setup the reentrancy guard (introduced in v0.1.2)
*/
function setReentrancyGuard() public reinitializer(2) {
__ReentrancyGuard_init_unchained();
}
function _setStatus(uint256 newStatus) internal virtual override {
_reentrancyStatus = newStatus;
}
function _getStatus() internal virtual override returns (uint256) {
return _reentrancyStatus;
}
/// Returns treasury address (slashed tokens destination)
function treasury() public view returns (address) {
return _treasury;
}
/**
* @notice Get stake of a subject (not marked for withdrawal).
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return amount of stakedToken actively staked on subject+subjectType.
*/
function activeStakeFor(uint8 subjectType, uint256 subject) public view returns (uint256) {
return _activeStake.balanceOf(FortaStakingUtils.subjectToActive(subjectType, subject));
}
/**
* @notice Get total active stake of all subjects (not marked for withdrawal).
* @return amount of stakedToken actively staked on all subject+subjectTypes.
*/
function totalActiveStake() public view returns (uint256) {
return _activeStake.totalSupply();
}
/**
* @notice Get inactive stake of a subject (marked for withdrawal).
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return amount of stakedToken still staked on subject+subjectType but marked for withdrawal.
*/
function inactiveStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256) {
return _inactiveStake.balanceOf(FortaStakingUtils.subjectToInactive(subjectType, subject));
}
/**
* @notice Get total inactive stake of all subjects (marked for withdrawal).
* @return amount of stakedToken still staked on all subject+subjectTypes but marked for withdrawal.
*/
function totalInactiveStake() public view returns (uint256) {
return _inactiveStake.totalSupply();
}
/**
* @notice Get (active) shares of an account on a subject, corresponding to a fraction of the subject stake.
* @dev This is equivalent to getting the ERC1155 balanceOf for keccak256(abi.encodePacked(subjectType, subject)),
* shifted 9 bits, with the 9th bit set and uint8(subjectType) masked in
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @param account holder of the ERC1155 staking shares.
* @return amount of ERC1155 shares account is in possession in representing stake on subject+subjectType.
*/
function sharesOf(uint8 subjectType, uint256 subject, address account) public view returns (uint256) {
return balanceOf(account, FortaStakingUtils.subjectToActive(subjectType, subject));
}
/**
* @notice Get the total (active) shares on a subject.
* @dev This is equivalent to getting the ERC1155 totalSupply for keccak256(abi.encodePacked(subjectType, subject)),
* shifted 9 bits, with the 9th bit set and uint8(subjectType) masked in
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return total ERC1155 shares representing stake on subject+subjectType.
*/
function totalShares(uint8 subjectType, uint256 subject) external view returns (uint256) {
return totalSupply(FortaStakingUtils.subjectToActive(subjectType, subject));
}
/**
* @notice Get inactive shares of an account on a subject, corresponding to a fraction of the subject inactive stake.
* @dev This is equivalent to getting the ERC1155 balanceOf for keccak256(abi.encodePacked(subjectType, subject)),
* shifted 9 bits, with the 9th bit unset and uint8(subjectType) masked in.
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @param account holder of the ERC1155 staking shares.
* @return amount of ERC1155 shares account is in possession in representing inactive stake on subject+subjectType, marked for withdrawal.
*/
function inactiveSharesOf(uint8 subjectType, uint256 subject, address account) external view returns (uint256) {
return balanceOf(account, FortaStakingUtils.subjectToInactive(subjectType, subject));
}
/**
* @notice Get the total inactive shares on a subject.
* @dev This is equivalent to getting the ERC1155 totalSupply for keccak256(abi.encodePacked(subjectType, subject)),
* shifted 9 bits, with the 9th bit unset and uint8(subjectType) masked in
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return total ERC1155 shares representing inactive stake on subject+subjectType, marked for withdrawal.
*/
function totalInactiveShares(uint8 subjectType, uint256 subject) external view returns (uint256) {
return totalSupply(FortaStakingUtils.subjectToInactive(subjectType, subject));
}
/**
* @notice Checks if a subject frozen (stake of frozen subject cannot be withdrawn).
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return true if subject is frozen, false otherwise
*/
function isFrozen(uint8 subjectType, uint256 subject) public view returns (bool) {
uint256 sharesId = FortaStakingUtils.subjectToActive(subjectType, subject);
return openProposals[sharesId] > 0 || _deprecated_frozen[sharesId];
}
/**
* @notice Deposit `stakeValue` tokens for a given `subject`, and mint the corresponding active ERC1155 shares.
* will return tokens staked over maximum for the subject.
* If stakeValue would drive the stake over the maximum, only stakeValue - excess is transferred, but transaction will
* not fail.
* Reverts if max stake for subjectType not set, or subject not found.
* @dev NOTE: Subject type is necessary because we can't infer subject ID uniqueness between scanners, agents, etc
* Emits a ERC1155.TransferSingle event and StakeDeposited (to allow accounting per subject type)
* Emits MaxStakeReached(subjectType, activeSharesId)
* WARNING: To stake from another smart contract (smart contract wallets included), it must be fully ERC1155 compatible,
* implementing ERC1155Receiver. If not, minting of active and inactive shares will fail.
* Do not deposit on the constructor if you don't implement ERC1155Receiver. During the construction, the minting will
* succeed but you will not be able to withdraw or mint new shares from the contract. If this happens, transfer your
* shares to an EOA or fully ERC1155 compatible contract.
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @param stakeValue amount of staked token.
* @return amount of ERC1155 active shares minted.
*/
function deposit(
uint8 subjectType,
uint256 subject,
uint256 stakeValue
) external onlyValidSubjectType(subjectType) notAgencyType(subjectType, SubjectStakeAgency.MANAGED) nonReentrant returns (uint256) {
if (address(subjectGateway) == address(0)) revert ZeroAddress("subjectGateway");
if (!subjectGateway.isStakeActivatedFor(subjectType, subject)) revert StakeInactiveOrSubjectNotFound();
address staker = _msgSender();
uint256 activeSharesId = FortaStakingUtils.subjectToActive(subjectType, subject);
bool reachedMax;
(stakeValue, reachedMax) = _getInboundStake(subjectType, subject, stakeValue);
if (reachedMax) {
emit MaxStakeReached(subjectType, subject);
}
uint256 sharesValue = stakeToActiveShares(activeSharesId, stakeValue);
SafeERC20.safeTransferFrom(stakedToken, staker, address(this), stakeValue);
_activeStake.mint(activeSharesId, stakeValue);
_mint(staker, activeSharesId, sharesValue, new bytes(0));
emit StakeDeposited(subjectType, subject, staker, stakeValue);
allocator.depositAllocation(activeSharesId, subjectType, subject, staker, stakeValue, sharesValue);
return sharesValue;
}
/**
* deposits active stake from SCANNER to SCANNER_POOL if not frozen. Inactive stake remains for withdrawal in old subject
* Burns active stake and shares for old subject.
* @dev No slash has been executed, so new SCANNER_POOL share proportions apply.
*/
function migrate(
uint8 oldSubjectType,
uint256 oldSubject,
uint8 newSubjectType,
uint256 newSubject,
address staker
) external onlyRole(SCANNER_2_SCANNER_POOL_MIGRATOR_ROLE) nonReentrant {
if (oldSubjectType != SCANNER_SUBJECT) revert InvalidSubjectType(oldSubjectType);
if (newSubjectType != SCANNER_POOL_SUBJECT) revert InvalidSubjectType(newSubjectType);
if (isFrozen(oldSubjectType, oldSubject)) revert FrozenSubject();
uint256 oldSharesId = FortaStakingUtils.subjectToActive(oldSubjectType, oldSubject);
uint256 oldShares = balanceOf(staker, oldSharesId);
uint256 stake = activeSharesToStake(oldSharesId, oldShares);
uint256 newSharesId = FortaStakingUtils.subjectToActive(newSubjectType, newSubject);
uint256 newShares = stakeToActiveShares(newSharesId, stake);
_activeStake.burn(oldSharesId, stake);
_activeStake.mint(newSharesId, stake);
_burn(staker, oldSharesId, oldShares);
_mint(staker, newSharesId, newShares, new bytes(0));
emit StakeDeposited(newSubjectType, newSubject, staker, stake);
allocator.depositAllocation(newSharesId, newSubjectType, newSubject, staker, stake, newShares);
}
/**
* Calculates how much of the incoming stake fits for subject.
* @param subjectType valid subect type
* @param subject the id of the subject
* @param stakeValue stake sent by staker
* @return stakeValue - excess
* @return true if reached max
*/
function _getInboundStake(uint8 subjectType, uint256 subject, uint256 stakeValue) private view returns (uint256, bool) {
uint256 max = subjectGateway.maxStakeFor(subjectType, subject);
if (activeStakeFor(subjectType, subject) >= max) {
return (0, true);
} else {
uint256 stakeLeft = max - activeStakeFor(subjectType, subject);
return (
Math.min(
stakeValue, // what the user wants to stake
stakeLeft // what is actually left
),
activeStakeFor(subjectType, subject) + stakeValue >= max
);
}
}
/** @notice Starts the withdrawal process for an amount of shares. Burns active shares and mints inactive
* shares (non transferrable). Stake will be available for withdraw() after _withdrawalDelay. If the
* subject has not been slashed, the shares will correspond 1:1 with stake.
* @dev Emits a WithdrawalInitiated event.
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @param sharesValue amount of shares token.
* @return amount of time until withdrawal is valid.
*/
function initiateWithdrawal(uint8 subjectType, uint256 subject, uint256 sharesValue) external onlyValidSubjectType(subjectType) nonReentrant returns (uint64) {
address staker = _msgSender();
uint256 activeSharesId = FortaStakingUtils.subjectToActive(subjectType, subject);
if (balanceOf(staker, activeSharesId) == 0) revert NoActiveShares();
uint64 deadline = SafeCast.toUint64(block.timestamp) + _withdrawalDelay;
_lockingDelay[activeSharesId][staker].setDeadline(deadline);
uint256 activeShares = Math.min(sharesValue, balanceOf(staker, activeSharesId));
uint256 stakeValue = activeSharesToStake(activeSharesId, activeShares);
uint256 inactiveShares = stakeToInactiveShares(FortaStakingUtils.activeToInactive(activeSharesId), stakeValue);
SubjectStakeAgency agency = getSubjectTypeAgency(subjectType);
_activeStake.burn(activeSharesId, stakeValue);
_inactiveStake.mint(FortaStakingUtils.activeToInactive(activeSharesId), stakeValue);
_burn(staker, activeSharesId, activeShares);
_mint(staker, FortaStakingUtils.activeToInactive(activeSharesId), inactiveShares, new bytes(0));
if (agency == SubjectStakeAgency.DELEGATED || agency == SubjectStakeAgency.DELEGATOR) {
allocator.withdrawAllocation(activeSharesId, subjectType, subject, staker, stakeValue, activeShares);
}
emit WithdrawalInitiated(subjectType, subject, staker, deadline);
return deadline;
}
/**
* @notice Burn `sharesValue` inactive shares for a given `subject`, and withdraw the corresponding tokens
* (if the subject type has not been frozen, and the withdrawal delay time has passed).
* @dev shares must have been marked for withdrawal before by initiateWithdrawal().
* Emits events WithdrawalExecuted and ERC1155.TransferSingle.
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return amount of withdrawn staked tokens.
*/
function withdraw(uint8 subjectType, uint256 subject) external onlyValidSubjectType(subjectType) returns (uint256) {
address staker = _msgSender();
uint256 inactiveSharesId = FortaStakingUtils.subjectToInactive(subjectType, subject);
if (balanceOf(staker, inactiveSharesId) == 0) revert NoInactiveShares();
if (openProposals[FortaStakingUtils.inactiveToActive(inactiveSharesId)] > 0) revert FrozenSubject();
Timers.Timestamp storage timer = _lockingDelay[FortaStakingUtils.inactiveToActive(inactiveSharesId)][staker];
if (!timer.isExpired()) revert WithdrawalNotReady();
timer.reset();
emit WithdrawalExecuted(subjectType, subject, staker);
uint256 inactiveShares = balanceOf(staker, inactiveSharesId);
uint256 stakeValue = inactiveSharesToStake(inactiveSharesId, inactiveShares);
_inactiveStake.burn(inactiveSharesId, stakeValue);
_burn(staker, inactiveSharesId, inactiveShares);
SafeERC20.safeTransfer(stakedToken, staker, stakeValue);
return stakeValue;
}
/**
* @notice Slash a fraction of a subject stake, and transfer it to the treasury. Restricted to the `SLASHER_ROLE`.
* @dev This will alter the relationship between shares and stake, reducing shares value for a subject.
* Emits a Slashed event.
* Unallocated stake if needed.
* A slash over a DELEGATED type will propagate to DELEGATORs according to proposerPercent.
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @param stakeValue amount of staked token to be slashed.
* @param proposer address of the slash proposer. Must be nonzero address if proposerPercent > 0
* @param proposerPercent percentage of stakeValue sent to the proposer. From 0 to MAX_SLASHABLE_PERCENT
* @return stakeValue
*/
function slash(
uint8 subjectType,
uint256 subject,
uint256 stakeValue,
address proposer,
uint256 proposerPercent
) external override onlyRole(SLASHER_ROLE) notAgencyType(subjectType, SubjectStakeAgency.DELEGATOR) returns (uint256) {
uint256 activeSharesId = FortaStakingUtils.subjectToActive(subjectType, subject);
if (getSubjectTypeAgency(subjectType) == SubjectStakeAgency.DELEGATED) {
uint256 delegatorSlashValue = Math.mulDiv(stakeValue, slashDelegatorsPercent, HUNDRED_PERCENT);
uint256 delegatedSlashValue = stakeValue - delegatorSlashValue;
_slash(activeSharesId, subjectType, subject, delegatedSlashValue);
if (delegatorSlashValue > 0) {
uint8 delegatorType = getDelegatorSubjectType(subjectType);
uint256 activeDelegatorSharesId = FortaStakingUtils.subjectToActive(delegatorType, subject);
_slash(activeDelegatorSharesId, delegatorType, subject, delegatorSlashValue);
}
} else {
_slash(activeSharesId, subjectType, subject, stakeValue);
}
uint256 proposerShare = Math.mulDiv(stakeValue, proposerPercent, HUNDRED_PERCENT);
if (proposerShare > 0) {
if (proposer == address(0)) revert ZeroAddress("proposer");
SafeERC20.safeTransfer(stakedToken, proposer, proposerShare);
}
SafeERC20.safeTransfer(stakedToken, _treasury, stakeValue - proposerShare);
emit SlashedShareSent(subjectType, subject, proposer, proposerShare);
return stakeValue;
}
/**
* @notice burns slashed stake from active and/or inactive stake for subjectType/subject.
* @param activeSharesId ERC1155 id of the shares being slashed
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @param stakeValue amount of staked token to be slashed.
*/
function _slash(uint256 activeSharesId, uint8 subjectType, uint256 subject, uint256 stakeValue) private {
uint256 activeStake = _activeStake.balanceOf(activeSharesId);
uint256 inactiveStake = _inactiveStake.balanceOf(FortaStakingUtils.activeToInactive(activeSharesId));
// We set the slash limit at 90% of the stake, so new depositors on slashed pools (with now 0 stake) won't mint
// an amounts of shares so big that they might cause overflows.
// New shares = pool shares * new staked amount / pool stake
// See deposit and stakeToActiveShares methods.
uint256 maxSlashableStake = Math.mulDiv(activeStake + inactiveStake, MAX_SLASHABLE_PERCENT, HUNDRED_PERCENT);
if (stakeValue > maxSlashableStake) revert SlashingOver90Percent();
uint256 slashFromActive = Math.mulDiv(activeStake, stakeValue, activeStake + inactiveStake);
uint256 slashFromInactive = stakeValue - slashFromActive;
_activeStake.burn(activeSharesId, slashFromActive);
_inactiveStake.burn(FortaStakingUtils.activeToInactive(activeSharesId), slashFromInactive);
SubjectStakeAgency subjectAgency = getSubjectTypeAgency(subjectType);
if (subjectAgency == SubjectStakeAgency.DELEGATED || subjectAgency == SubjectStakeAgency.DELEGATOR) {
allocator.withdrawAllocation(activeSharesId, subjectType, subject, address(0), slashFromActive, 0);
}
emit Slashed(subjectType, subject, _msgSender(), stakeValue);
}
/**
* @notice Freeze/unfreeze withdrawal of a subject stake. This will be used when something suspicious happens
* with a subject but there is not a strong case yet for slashing.
* Restricted to the `SLASHER_ROLE`.
* @dev Emits a Freeze event.
* @param subjectType type id of Stake Subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @param frozen true to freeze, false to unfreeze.
*/
function freeze(uint8 subjectType, uint256 subject, bool frozen) external override onlyRole(SLASHER_ROLE) onlyValidSubjectType(subjectType) {
uint256 sharesId = FortaStakingUtils.subjectToActive(subjectType, subject);
_migrateFrozenToOpenProposals(sharesId);
if (frozen) {
openProposals[sharesId]++;
} else {
openProposals[sharesId] = openProposals[sharesId] >= 1 ? openProposals[sharesId] - 1 : 0;
}
emit Froze(subjectType, subject, _msgSender(), openProposals[sharesId] != 0);
}
/**
* @notice If there is open cases before upgrading to openProposals (frozen == true), we increment as an extra proposal
* and set to false. There could be more than 1 open, in that case SLASHING_ARBITER_ROLE should be cautious with not unfreezing.
* This method will be obsolete when all the _deprecated_frozen are false
* @param activeSharesId of the subject
*/
function _migrateFrozenToOpenProposals(uint256 activeSharesId) private {
if (_deprecated_frozen[activeSharesId]) {
_deprecated_frozen[activeSharesId] = false;
openProposals[activeSharesId]++;
}
}
/**
* @notice Sweep all token that might be mistakenly sent to the contract. This covers both unrelated tokens and staked
* tokens that would be sent through a direct transfer. Restricted to SWEEPER_ROLE.
* If tokens are the same as staked tokens, only the extra tokens (no stake) will be transferred.
* @dev WARNING: thoroughly review the token to sweep.
* @param token address of the token to be swept.
* @param recipient destination address of the swept tokens
* @return amount of tokens swept. For unrelated tokens is FortaStaking's balance, for stakedToken its
* the balance over the active stake + inactive stake
*/
function sweep(IERC20 token, address recipient) external onlyRole(SWEEPER_ROLE) returns (uint256) {
uint256 amount = token.balanceOf(address(this));
if (token == stakedToken) {
amount -= totalActiveStake();
amount -= totalInactiveStake();
}
SafeERC20.safeTransfer(token, recipient, amount);
emit TokensSwept(address(token), recipient, amount);
return amount;
}
/**
* @dev Relay a ERC2612 permit signature to the staked token. This cal be bundled with a {deposit} or a {reward}
* operation using Multicall.
* @param value amount of token allowance for deposit/reward
* @param deadline for the meta-tx to be relayed.
* @param v part of signature
* @param r part of signature
* @param s part of signature
*/
function relayPermit(uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external {
IERC2612(address(stakedToken)).permit(_msgSender(), address(this), value, deadline, v, r, s);
}
function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual override {
for (uint256 i = 0; i < ids.length; i++) {
if (FortaStakingUtils.isActive(ids[i])) {
uint8 subjectType = FortaStakingUtils.subjectTypeOfShares(ids[i]);
if (subjectType == DELEGATOR_SCANNER_POOL_SUBJECT && to != address(0) && from != address(0)) {
allocator.didTransferShares(ids[i], subjectType, from, to, amounts[i]);
}
} else {
if (!(from == address(0) || to == address(0))) revert WithdrawalSharesNotTransferible();
}
}
super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
}
// Conversions
/**
* @notice Convert active token stake amount to active shares amount
* @param activeSharesId ERC1155 active shares id
* @param amount active stake amount
* @return ERC1155 active shares amount
*/
function stakeToActiveShares(uint256 activeSharesId, uint256 amount) public view returns (uint256) {
uint256 activeStake = _activeStake.balanceOf(activeSharesId);
return activeStake == 0 ? amount : Math.mulDiv(totalSupply(activeSharesId), amount, activeStake);
}
/**
* @notice Convert inactive token stake amount to inactive shares amount
* @param inactiveSharesId ERC1155 inactive shares id
* @param amount inactive stake amount
* @return ERC1155 inactive shares amount
*/
function stakeToInactiveShares(uint256 inactiveSharesId, uint256 amount) public view returns (uint256) {
uint256 inactiveStake = _inactiveStake.balanceOf(inactiveSharesId);
return inactiveStake == 0 ? amount : Math.mulDiv(totalSupply(inactiveSharesId), amount, inactiveStake);
}
/**
* @notice Convert active shares amount to active stake amount.
* @param activeSharesId ERC1155 active shares id
* @param amount ERC1155 active shares amount
* @return active stake amount
*/
function activeSharesToStake(uint256 activeSharesId, uint256 amount) public view returns (uint256) {
uint256 activeSupply = totalSupply(activeSharesId);
return activeSupply == 0 ? 0 : Math.mulDiv(_activeStake.balanceOf(activeSharesId), amount, activeSupply);
}
/**
* @notice Convert inactive shares amount to inactive stake amount.
* @param inactiveSharesId ERC1155 inactive shares id
* @param amount ERC1155 inactive shares amount
* @return inactive stake amount
*/
function inactiveSharesToStake(uint256 inactiveSharesId, uint256 amount) public view returns (uint256) {
uint256 inactiveSupply = totalSupply(inactiveSharesId);
return inactiveSupply == 0 ? 0 : Math.mulDiv(_inactiveStake.balanceOf(inactiveSharesId), amount, inactiveSupply);
}
// Admin: change withdrawal delay
/**
* @notice Sets withdrawal delay. Restricted to DEFAULT_ADMIN_ROLE
* @param newDelay in seconds.
*/
function setDelay(uint64 newDelay) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (newDelay < MIN_WITHDRAWAL_DELAY) revert AmountTooSmall(newDelay, MIN_WITHDRAWAL_DELAY);
if (newDelay > MAX_WITHDRAWAL_DELAY) revert AmountTooLarge(newDelay, MAX_WITHDRAWAL_DELAY);
_withdrawalDelay = newDelay;
emit DelaySet(newDelay);
}
/**
* @notice Sets destination of slashed tokens. Restricted to DEFAULT_ADMIN_ROLE
* @param newTreasury address.
*/
function setTreasury(address newTreasury) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (newTreasury == address(0)) revert ZeroAddress("newTreasury");
_treasury = newTreasury;
emit TreasurySet(newTreasury);
}
// Admin: change staking parameters manager
function configureStakeHelpers(IStakeSubjectGateway _subjectGateway, IStakeAllocator _allocator) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (address(_subjectGateway) == address(0)) revert ZeroAddress("_subjectGateway");
if (address(_allocator) == address(0)) revert ZeroAddress("_allocator");
subjectGateway = _subjectGateway;
allocator = _allocator;
emit StakeHelpersConfigured(address(_subjectGateway), address(_allocator));
}
function setSlashDelegatorsPercent(uint256 percent) external onlyRole(STAKING_ADMIN_ROLE) {
slashDelegatorsPercent = percent;
emit SlashDelegatorsPercentSet(percent);
}
// Overrides
/**
* @notice Sets URI of the ERC1155 tokens. Restricted to DEFAULT_ADMIN_ROLE
* @param newUri root of the hosted metadata.
*/
function setURI(string memory newUri) external onlyRole(DEFAULT_ADMIN_ROLE) {
_setURI(newUri);
}
/**
* @notice Helper to get either msg msg.sender if not a meta transaction, signer of forwarder metatx if it is.
* @inheritdoc ForwardedContext
*/
function _msgSender() internal view virtual override(ContextUpgradeable, BaseComponentUpgradeable) returns (address sender) {
return super._msgSender();
}
/**
* @notice Helper to get msg.data if not a meta transaction, forwarder data in metatx if it is.
* @inheritdoc ForwardedContext
*/
function _msgData() internal view virtual override(ContextUpgradeable, BaseComponentUpgradeable) returns (bytes calldata) {
return super._msgData();
}
/**
* 50
* - 1 (stakedToken)
* - 1 (_activeStake)
* - 1 (_inactiveStake)
* - 1 (_lockingDelay)
* - 1 (_rewards)
* - 1 (_released)
* - 1 _frozen
* - 1 _withdrawalDelay
* - 1 _treasury
* - 1 subjectGateway
* - 1 slashDelegatorsPercent
* - 1 allocator
* - 1 openProposals
* - 1 _reentrancyStatus
* --------------------------
* 36 __gap
*/
uint256[36] private __gap;
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "./IStakeSubject.sol";
interface IDirectStakeSubject is IStakeSubject {
function getStakeThreshold(uint256 subject) external view returns (StakeThreshold memory);
function isStakedOverMin(uint256 subject) external view returns (bool);
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
interface IStakeSubject {
struct StakeThreshold {
uint256 min;
uint256 max;
bool activated;
}
error StakeThresholdMaxLessOrEqualMin();
function isRegistered(uint256 subject) external view returns(bool);
function ownerOf(uint256 subject) external view returns (address);
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/Multicall.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import "./Roles.sol";
import "./utils/AccessManaged.sol";
import "./utils/IVersioned.sol";
import "./utils/ForwardedContext.sol";
import "./utils/Routed.sol";
import "../tools/ENSReverseRegistration.sol";
/**
* @dev The Forta platform is composed of "component" smart contracts that are upgradeable, share a common access
* control scheme and can send use routed hooks to signal one another. They also support the multicall pattern.
*
* This contract contains the base of Forta components. Contracts that inherit this component must call
* - __BaseComponentUpgradeable_init(address manager)
* in their initialization process.
*/
abstract contract BaseComponentUpgradeable is
ForwardedContext,
AccessManagedUpgradeable,
RoutedUpgradeable,
Multicall,
UUPSUpgradeable,
IVersioned
{
function __BaseComponentUpgradeable_init(address __manager) internal initializer {
__AccessManaged_init(__manager);
__UUPSUpgradeable_init();
}
// Access control for the upgrade process
function _authorizeUpgrade(address newImplementation) internal virtual override onlyRole(UPGRADER_ROLE) {
}
// Allow the upgrader to set ENS reverse registration
function setName(address ensRegistry, string calldata ensName) public onlyRole(ENS_MANAGER_ROLE) {
ENSReverseRegistration.setName(ensRegistry, ensName);
}
/**
* @notice Helper to get either msg msg.sender if not a meta transaction, signer of forwarder metatx if it is.
* @inheritdoc ForwardedContext
*/
function _msgSender() internal view virtual override(ContextUpgradeable, ForwardedContext) returns (address sender) {
return super._msgSender();
}
/**
* @notice Helper to get msg.data if not a meta transaction, forwarder data in metatx if it is.
* @inheritdoc ForwardedContext
*/
function _msgData() internal view virtual override(ContextUpgradeable, ForwardedContext) returns (bytes calldata) {
return super._msgData();
}
uint256[50] private __gap;
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
library FortaStakingUtils {
/**
* @dev Encode "active" and subjectType in subject by hashing them together, shifting left 9 bits,
* setting bit 9 (to mark as active) and masking subjectType in
* @param subjectType agents, scanner or future types of stake subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return ERC1155 token id representing active shares.
*/
function subjectToActive(uint8 subjectType, uint256 subject) internal pure returns (uint256) {
return (uint256(keccak256(abi.encodePacked(subjectType, subject))) << 9 | uint16(256)) | uint256(subjectType);
}
/**
* @dev Encode "inactive" and subjectType in subject by hashing them together, shifting left 9 bits,
* letting bit 9 unset (to mark as inactive) and masking subjectType in.
* @param subjectType agents, scanner or future types of stake subject. See SubjectTypeValidator.sol
* @param subject id identifying subject (external to FortaStaking).
* @return ERC1155 token id representing inactive shares.
*/
function subjectToInactive(uint8 subjectType, uint256 subject) internal pure returns (uint256) {
return (uint256(keccak256(abi.encodePacked(subjectType, subject))) << 9) | uint256(subjectType);
}
/**
* @dev Unsets bit 9 of an activeSharesId to mark as inactive
* @param activeSharesId ERC1155 token id representing active shares.
* @return ERC1155 token id representing inactive shares.
*/
function activeToInactive(uint256 activeSharesId) internal pure returns (uint256) {
return activeSharesId & (~uint256(1 << 8));
}
/**
* @dev Sets bit 9 of an inactiveSharesId to mark as inactive
* @param inactiveSharesId ERC1155 token id representing inactive shares.
* @return ERC1155 token id representing active shares.
*/
function inactiveToActive(uint256 inactiveSharesId) internal pure returns (uint256) {
return inactiveSharesId | (1 << 8);
}
/**
* @dev Checks if shares id is active
* @param sharesId ERC1155 token id representing shares.
* @return true if active shares, false if inactive
*/
function isActive(uint256 sharesId) internal pure returns(bool) {
return sharesId & (1 << 8) == 256;
}
/**
* @dev Extracts subject type encoded in shares id
* @param sharesId ERC1155 token id representing shares.
* @return subject type (see SubjectTypeValidator.sol)
*/
function subjectTypeOfShares(uint256 sharesId) internal pure returns(uint8) {
return uint8(sharesId);
}
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
interface IStakeMigrator {
function migrate(
uint8 oldSubjectType,
uint256 oldSubject,
uint8 newSubjectType,
uint256 newSubject,
address staker
) external;
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
uint8 constant UNDEFINED_SUBJECT = 255;
uint8 constant SCANNER_SUBJECT = 0;
uint8 constant AGENT_SUBJECT = 1;
uint8 constant SCANNER_POOL_SUBJECT = 2;
uint8 constant DELEGATOR_SCANNER_POOL_SUBJECT = 3;
/**
* Defines the types of staking Subject Types, their agency and relationships.
* There are different types of subject type agency:
* - MANAGED --> Cannot be staked on directly, allocation of stake is controlled by their manager, a DELEGATED type
* - DIRECT --> Can be staked on by multiple different stakers
* - DELEGATED --> Can be staked on by the owner of the relevant Registry entry. Manages MANAGED subjects.
* - DELEGATOR --> TBD
*
* The current Subject Types and their Agency:
* - SCANNER_SUBJECT --> MANAGED
* - AGENT_SUBJECT (detection bots) --> DIRECT
* - SCANNER_POOL_SUBJECT --> DELEGATED
*
*/
contract SubjectTypeValidator {
enum SubjectStakeAgency {
UNDEFINED,
DIRECT,
DELEGATED,
DELEGATOR,
MANAGED
}
error InvalidSubjectType(uint8 subjectType);
error ForbiddenForType(uint8 subjectType, SubjectStakeAgency provided, SubjectStakeAgency expected);
/**
* @dev check if `subjectType` belongs to the defined SUBJECT_TYPES
* @param subjectType is not an enum because some contracts using subjectTypes are not
* upgradeable (StakingEscrow)
*/
modifier onlyValidSubjectType(uint8 subjectType) {
if (subjectType != SCANNER_SUBJECT && subjectType != AGENT_SUBJECT && subjectType != SCANNER_POOL_SUBJECT && subjectType != DELEGATOR_SCANNER_POOL_SUBJECT)
revert InvalidSubjectType(subjectType);
_;
}
modifier onlyAgencyType(uint8 subjectType, SubjectStakeAgency expected) {
if (getSubjectTypeAgency(subjectType) != expected) revert ForbiddenForType(subjectType, getSubjectTypeAgency(subjectType), expected);
_;
}
modifier notAgencyType(uint8 subjectType, SubjectStakeAgency forbidden) {
if (getSubjectTypeAgency(subjectType) == forbidden) revert ForbiddenForType(subjectType, getSubjectTypeAgency(subjectType), forbidden);
_;
}
function getSubjectTypeAgency(uint8 subjectType) public pure returns (SubjectStakeAgency) {
if (subjectType == AGENT_SUBJECT) {
return SubjectStakeAgency.DIRECT;
} else if (subjectType == SCANNER_POOL_SUBJECT) {
return SubjectStakeAgency.DELEGATED;
} else if (subjectType == DELEGATOR_SCANNER_POOL_SUBJECT) {
return SubjectStakeAgency.DELEGATOR;
} else if (subjectType == SCANNER_SUBJECT) {
return SubjectStakeAgency.MANAGED;
}
return SubjectStakeAgency.UNDEFINED;
}
function getDelegatorSubjectType(uint8 subjectType) public pure returns (uint8) {
if (subjectType == SCANNER_POOL_SUBJECT) {
return DELEGATOR_SCANNER_POOL_SUBJECT;
}
return UNDEFINED_SUBJECT;
}
function getDelegatedSubjectType(uint8 subjectType) public pure returns (uint8) {
if (subjectType == DELEGATOR_SCANNER_POOL_SUBJECT) {
return SCANNER_POOL_SUBJECT;
}
return UNDEFINED_SUBJECT;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.9;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
/**
* @dev Based in OZ's ReentracyGuardUpgradeable, but without it's own storage so
* we can insert the guard respecting storage layout.
*
* Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuardHandlerUpgradeable is Initializable {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
function __ReentrancyGuard_init() internal onlyInitializing {
__ReentrancyGuard_init_unchained();
}
function __ReentrancyGuard_init_unchained() internal onlyInitializing {
_setStatus(_NOT_ENTERED);
}
function _setStatus(uint256 newStatus) internal virtual;
function _getStatus() internal virtual returns (uint256);
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_getStatus() != _ENTERED, "ReentrancyGuardUpgradeable: reentrant call");
// Any calls to nonReentrant after this point will fail
_setStatus(_ENTERED);
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_setStatus(_NOT_ENTERED);
}
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "./IStakeSubject.sol";
interface IStakeSubjectGateway {
event StakeSubjectChanged(address newHandler, address oldHandler);
function setStakeSubject(uint8 subjectType, address subject) external;
function getStakeSubject(uint8 subjectType) external view returns (address);
function activeStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function maxStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function minStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function totalStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function isStakeActivatedFor(uint8 subjectType, uint256 subject) external view returns (bool);
function maxManagedStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function minManagedStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function totalManagedSubjects(uint8 subjectType, uint256 subject) external view returns (uint256);
function canManageAllocation(uint8 subjectType, uint256 subject, address allocator) external view returns (bool);
function ownerOf(uint8 subjectType, uint256 subject) external view returns (address);
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-protocol/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
interface ISlashingExecutor {
function freeze(
uint8 subjectType,
uint256 subject,
bool frozen
) external;
function slash(
uint8 subjectType,
uint256 subject,
uint256 stakeValue,
address proposer,
uint256 proposerPercent
) external returns (uint256);
function treasury() external view returns (address);
function MAX_SLASHABLE_PERCENT() external view returns(uint256);
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
interface IStakeAllocator {
function depositAllocation(
uint256 activeSharesId,
uint8 subjectType,
uint256 subject,
address allocator,
uint256 stakeAmount,
uint256 sharesAmount
) external;
function withdrawAllocation(
uint256 activeSharesId,
uint8 subjectType,
uint256 subject,
address allocator,
uint256 stakeAmount,
uint256 sharesAmount
) external;
function allocatedStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function allocatedManagedStake(uint8 subjectType, uint256 subject) external view returns (uint256);
function allocatedStakePerManaged(uint8 subjectType, uint256 subject) external view returns (uint256);
function unallocatedStakeFor(uint8 subjectType, uint256 subject) external view returns (uint256);
function allocateOwnStake(uint8 subjectType, uint256 subject, uint256 amount) external;
function unallocateOwnStake(uint8 subjectType, uint256 subject, uint256 amount) external;
function unallocateDelegatorStake(uint8 subjectType, uint256 subject, uint256 amount) external;
function didTransferShares(uint256 sharesId, uint8 subjectType, address from, address to, uint256 sharesAmount) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/SafeCast.sol)
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
* Counterpart to Solidity's `uint248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toUint248(uint256 value) internal pure returns (uint248) {
require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits");
return uint248(value);
}
/**
* @dev Returns the downcasted uint240 from uint256, reverting on
* overflow (when the input is greater than largest uint240).
*
* Counterpart to Solidity's `uint240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toUint240(uint256 value) internal pure returns (uint240) {
require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits");
return uint240(value);
}
/**
* @dev Returns the downcasted uint232 from uint256, reverting on
* overflow (when the input is greater than largest uint232).
*
* Counterpart to Solidity's `uint232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toUint232(uint256 value) internal pure returns (uint232) {
require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits");
return uint232(value);
}
/**
* @dev Returns the downcasted uint224 from uint256, reverting on
* overflow (when the input is greater than largest uint224).
*
* Counterpart to Solidity's `uint224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.2._
*/
function toUint224(uint256 value) internal pure returns (uint224) {
require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
return uint224(value);
}
/**
* @dev Returns the downcasted uint216 from uint256, reverting on
* overflow (when the input is greater than largest uint216).
*
* Counterpart to Solidity's `uint216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toUint216(uint256 value) internal pure returns (uint216) {
require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits");
return uint216(value);
}
/**
* @dev Returns the downcasted uint208 from uint256, reverting on
* overflow (when the input is greater than largest uint208).
*
* Counterpart to Solidity's `uint208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toUint208(uint256 value) internal pure returns (uint208) {
require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits");
return uint208(value);
}
/**
* @dev Returns the downcasted uint200 from uint256, reverting on
* overflow (when the input is greater than largest uint200).
*
* Counterpart to Solidity's `uint200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toUint200(uint256 value) internal pure returns (uint200) {
require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits");
return uint200(value);
}
/**
* @dev Returns the downcasted uint192 from uint256, reverting on
* overflow (when the input is greater than largest uint192).
*
* Counterpart to Solidity's `uint192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toUint192(uint256 value) internal pure returns (uint192) {
require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits");
return uint192(value);
}
/**
* @dev Returns the downcasted uint184 from uint256, reverting on
* overflow (when the input is greater than largest uint184).
*
* Counterpart to Solidity's `uint184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toUint184(uint256 value) internal pure returns (uint184) {
require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits");
return uint184(value);
}
/**
* @dev Returns the downcasted uint176 from uint256, reverting on
* overflow (when the input is greater than largest uint176).
*
* Counterpart to Solidity's `uint176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toUint176(uint256 value) internal pure returns (uint176) {
require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits");
return uint176(value);
}
/**
* @dev Returns the downcasted uint168 from uint256, reverting on
* overflow (when the input is greater than largest uint168).
*
* Counterpart to Solidity's `uint168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toUint168(uint256 value) internal pure returns (uint168) {
require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits");
return uint168(value);
}
/**
* @dev Returns the downcasted uint160 from uint256, reverting on
* overflow (when the input is greater than largest uint160).
*
* Counterpart to Solidity's `uint160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toUint160(uint256 value) internal pure returns (uint160) {
require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits");
return uint160(value);
}
/**
* @dev Returns the downcasted uint152 from uint256, reverting on
* overflow (when the input is greater than largest uint152).
*
* Counterpart to Solidity's `uint152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toUint152(uint256 value) internal pure returns (uint152) {
require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits");
return uint152(value);
}
/**
* @dev Returns the downcasted uint144 from uint256, reverting on
* overflow (when the input is greater than largest uint144).
*
* Counterpart to Solidity's `uint144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toUint144(uint256 value) internal pure returns (uint144) {
require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits");
return uint144(value);
}
/**
* @dev Returns the downcasted uint136 from uint256, reverting on
* overflow (when the input is greater than largest uint136).
*
* Counterpart to Solidity's `uint136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toUint136(uint256 value) internal pure returns (uint136) {
require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits");
return uint136(value);
}
/**
* @dev Returns the downcasted uint128 from uint256, reverting on
* overflow (when the input is greater than largest uint128).
*
* Counterpart to Solidity's `uint128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v2.5._
*/
function toUint128(uint256 value) internal pure returns (uint128) {
require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
return uint128(value);
}
/**
* @dev Returns the downcasted uint120 from uint256, reverting on
* overflow (when the input is greater than largest uint120).
*
* Counterpart to Solidity's `uint120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toUint120(uint256 value) internal pure returns (uint120) {
require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits");
return uint120(value);
}
/**
* @dev Returns the downcasted uint112 from uint256, reverting on
* overflow (when the input is greater than largest uint112).
*
* Counterpart to Solidity's `uint112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toUint112(uint256 value) internal pure returns (uint112) {
require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits");
return uint112(value);
}
/**
* @dev Returns the downcasted uint104 from uint256, reverting on
* overflow (when the input is greater than largest uint104).
*
* Counterpart to Solidity's `uint104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toUint104(uint256 value) internal pure returns (uint104) {
require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits");
return uint104(value);
}
/**
* @dev Returns the downcasted uint96 from uint256, reverting on
* overflow (when the input is greater than largest uint96).
*
* Counterpart to Solidity's `uint96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.2._
*/
function toUint96(uint256 value) internal pure returns (uint96) {
require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
return uint96(value);
}
/**
* @dev Returns the downcasted uint88 from uint256, reverting on
* overflow (when the input is greater than largest uint88).
*
* Counterpart to Solidity's `uint88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toUint88(uint256 value) internal pure returns (uint88) {
require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits");
return uint88(value);
}
/**
* @dev Returns the downcasted uint80 from uint256, reverting on
* overflow (when the input is greater than largest uint80).
*
* Counterpart to Solidity's `uint80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toUint80(uint256 value) internal pure returns (uint80) {
require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits");
return uint80(value);
}
/**
* @dev Returns the downcasted uint72 from uint256, reverting on
* overflow (when the input is greater than largest uint72).
*
* Counterpart to Solidity's `uint72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toUint72(uint256 value) internal pure returns (uint72) {
require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits");
return uint72(value);
}
/**
* @dev Returns the downcasted uint64 from uint256, reverting on
* overflow (when the input is greater than largest uint64).
*
* Counterpart to Solidity's `uint64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v2.5._
*/
function toUint64(uint256 value) internal pure returns (uint64) {
require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
return uint64(value);
}
/**
* @dev Returns the downcasted uint56 from uint256, reverting on
* overflow (when the input is greater than largest uint56).
*
* Counterpart to Solidity's `uint56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toUint56(uint256 value) internal pure returns (uint56) {
require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits");
return uint56(value);
}
/**
* @dev Returns the downcasted uint48 from uint256, reverting on
* overflow (when the input is greater than largest uint48).
*
* Counterpart to Solidity's `uint48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toUint48(uint256 value) internal pure returns (uint48) {
require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits");
return uint48(value);
}
/**
* @dev Returns the downcasted uint40 from uint256, reverting on
* overflow (when the input is greater than largest uint40).
*
* Counterpart to Solidity's `uint40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toUint40(uint256 value) internal pure returns (uint40) {
require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits");
return uint40(value);
}
/**
* @dev Returns the downcasted uint32 from uint256, reverting on
* overflow (when the input is greater than largest uint32).
*
* Counterpart to Solidity's `uint32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v2.5._
*/
function toUint32(uint256 value) internal pure returns (uint32) {
require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
return uint32(value);
}
/**
* @dev Returns the downcasted uint24 from uint256, reverting on
* overflow (when the input is greater than largest uint24).
*
* Counterpart to Solidity's `uint24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toUint24(uint256 value) internal pure returns (uint24) {
require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits");
return uint24(value);
}
/**
* @dev Returns the downcasted uint16 from uint256, reverting on
* overflow (when the input is greater than largest uint16).
*
* Counterpart to Solidity's `uint16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v2.5._
*/
function toUint16(uint256 value) internal pure returns (uint16) {
require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
return uint16(value);
}
/**
* @dev Returns the downcasted uint8 from uint256, reverting on
* overflow (when the input is greater than largest uint8).
*
* Counterpart to Solidity's `uint8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v2.5._
*/
function toUint8(uint256 value) internal pure returns (uint8) {
require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
return uint8(value);
}
/**
* @dev Converts a signed int256 into an unsigned uint256.
*
* Requirements:
*
* - input must be greater than or equal to 0.
*
* _Available since v3.0._
*/
function toUint256(int256 value) internal pure returns (uint256) {
require(value >= 0, "SafeCast: value must be positive");
return uint256(value);
}
/**
* @dev Returns the downcasted int248 from int256, reverting on
* overflow (when the input is less than smallest int248 or
* greater than largest int248).
*
* Counterpart to Solidity's `int248` operator.
*
* Requirements:
*
* - input must fit into 248 bits
*
* _Available since v4.7._
*/
function toInt248(int256 value) internal pure returns (int248) {
require(value >= type(int248).min && value <= type(int248).max, "SafeCast: value doesn't fit in 248 bits");
return int248(value);
}
/**
* @dev Returns the downcasted int240 from int256, reverting on
* overflow (when the input is less than smallest int240 or
* greater than largest int240).
*
* Counterpart to Solidity's `int240` operator.
*
* Requirements:
*
* - input must fit into 240 bits
*
* _Available since v4.7._
*/
function toInt240(int256 value) internal pure returns (int240) {
require(value >= type(int240).min && value <= type(int240).max, "SafeCast: value doesn't fit in 240 bits");
return int240(value);
}
/**
* @dev Returns the downcasted int232 from int256, reverting on
* overflow (when the input is less than smallest int232 or
* greater than largest int232).
*
* Counterpart to Solidity's `int232` operator.
*
* Requirements:
*
* - input must fit into 232 bits
*
* _Available since v4.7._
*/
function toInt232(int256 value) internal pure returns (int232) {
require(value >= type(int232).min && value <= type(int232).max, "SafeCast: value doesn't fit in 232 bits");
return int232(value);
}
/**
* @dev Returns the downcasted int224 from int256, reverting on
* overflow (when the input is less than smallest int224 or
* greater than largest int224).
*
* Counterpart to Solidity's `int224` operator.
*
* Requirements:
*
* - input must fit into 224 bits
*
* _Available since v4.7._
*/
function toInt224(int256 value) internal pure returns (int224) {
require(value >= type(int224).min && value <= type(int224).max, "SafeCast: value doesn't fit in 224 bits");
return int224(value);
}
/**
* @dev Returns the downcasted int216 from int256, reverting on
* overflow (when the input is less than smallest int216 or
* greater than largest int216).
*
* Counterpart to Solidity's `int216` operator.
*
* Requirements:
*
* - input must fit into 216 bits
*
* _Available since v4.7._
*/
function toInt216(int256 value) internal pure returns (int216) {
require(value >= type(int216).min && value <= type(int216).max, "SafeCast: value doesn't fit in 216 bits");
return int216(value);
}
/**
* @dev Returns the downcasted int208 from int256, reverting on
* overflow (when the input is less than smallest int208 or
* greater than largest int208).
*
* Counterpart to Solidity's `int208` operator.
*
* Requirements:
*
* - input must fit into 208 bits
*
* _Available since v4.7._
*/
function toInt208(int256 value) internal pure returns (int208) {
require(value >= type(int208).min && value <= type(int208).max, "SafeCast: value doesn't fit in 208 bits");
return int208(value);
}
/**
* @dev Returns the downcasted int200 from int256, reverting on
* overflow (when the input is less than smallest int200 or
* greater than largest int200).
*
* Counterpart to Solidity's `int200` operator.
*
* Requirements:
*
* - input must fit into 200 bits
*
* _Available since v4.7._
*/
function toInt200(int256 value) internal pure returns (int200) {
require(value >= type(int200).min && value <= type(int200).max, "SafeCast: value doesn't fit in 200 bits");
return int200(value);
}
/**
* @dev Returns the downcasted int192 from int256, reverting on
* overflow (when the input is less than smallest int192 or
* greater than largest int192).
*
* Counterpart to Solidity's `int192` operator.
*
* Requirements:
*
* - input must fit into 192 bits
*
* _Available since v4.7._
*/
function toInt192(int256 value) internal pure returns (int192) {
require(value >= type(int192).min && value <= type(int192).max, "SafeCast: value doesn't fit in 192 bits");
return int192(value);
}
/**
* @dev Returns the downcasted int184 from int256, reverting on
* overflow (when the input is less than smallest int184 or
* greater than largest int184).
*
* Counterpart to Solidity's `int184` operator.
*
* Requirements:
*
* - input must fit into 184 bits
*
* _Available since v4.7._
*/
function toInt184(int256 value) internal pure returns (int184) {
require(value >= type(int184).min && value <= type(int184).max, "SafeCast: value doesn't fit in 184 bits");
return int184(value);
}
/**
* @dev Returns the downcasted int176 from int256, reverting on
* overflow (when the input is less than smallest int176 or
* greater than largest int176).
*
* Counterpart to Solidity's `int176` operator.
*
* Requirements:
*
* - input must fit into 176 bits
*
* _Available since v4.7._
*/
function toInt176(int256 value) internal pure returns (int176) {
require(value >= type(int176).min && value <= type(int176).max, "SafeCast: value doesn't fit in 176 bits");
return int176(value);
}
/**
* @dev Returns the downcasted int168 from int256, reverting on
* overflow (when the input is less than smallest int168 or
* greater than largest int168).
*
* Counterpart to Solidity's `int168` operator.
*
* Requirements:
*
* - input must fit into 168 bits
*
* _Available since v4.7._
*/
function toInt168(int256 value) internal pure returns (int168) {
require(value >= type(int168).min && value <= type(int168).max, "SafeCast: value doesn't fit in 168 bits");
return int168(value);
}
/**
* @dev Returns the downcasted int160 from int256, reverting on
* overflow (when the input is less than smallest int160 or
* greater than largest int160).
*
* Counterpart to Solidity's `int160` operator.
*
* Requirements:
*
* - input must fit into 160 bits
*
* _Available since v4.7._
*/
function toInt160(int256 value) internal pure returns (int160) {
require(value >= type(int160).min && value <= type(int160).max, "SafeCast: value doesn't fit in 160 bits");
return int160(value);
}
/**
* @dev Returns the downcasted int152 from int256, reverting on
* overflow (when the input is less than smallest int152 or
* greater than largest int152).
*
* Counterpart to Solidity's `int152` operator.
*
* Requirements:
*
* - input must fit into 152 bits
*
* _Available since v4.7._
*/
function toInt152(int256 value) internal pure returns (int152) {
require(value >= type(int152).min && value <= type(int152).max, "SafeCast: value doesn't fit in 152 bits");
return int152(value);
}
/**
* @dev Returns the downcasted int144 from int256, reverting on
* overflow (when the input is less than smallest int144 or
* greater than largest int144).
*
* Counterpart to Solidity's `int144` operator.
*
* Requirements:
*
* - input must fit into 144 bits
*
* _Available since v4.7._
*/
function toInt144(int256 value) internal pure returns (int144) {
require(value >= type(int144).min && value <= type(int144).max, "SafeCast: value doesn't fit in 144 bits");
return int144(value);
}
/**
* @dev Returns the downcasted int136 from int256, reverting on
* overflow (when the input is less than smallest int136 or
* greater than largest int136).
*
* Counterpart to Solidity's `int136` operator.
*
* Requirements:
*
* - input must fit into 136 bits
*
* _Available since v4.7._
*/
function toInt136(int256 value) internal pure returns (int136) {
require(value >= type(int136).min && value <= type(int136).max, "SafeCast: value doesn't fit in 136 bits");
return int136(value);
}
/**
* @dev Returns the downcasted int128 from int256, reverting on
* overflow (when the input is less than smallest int128 or
* greater than largest int128).
*
* Counterpart to Solidity's `int128` operator.
*
* Requirements:
*
* - input must fit into 128 bits
*
* _Available since v3.1._
*/
function toInt128(int256 value) internal pure returns (int128) {
require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
return int128(value);
}
/**
* @dev Returns the downcasted int120 from int256, reverting on
* overflow (when the input is less than smallest int120 or
* greater than largest int120).
*
* Counterpart to Solidity's `int120` operator.
*
* Requirements:
*
* - input must fit into 120 bits
*
* _Available since v4.7._
*/
function toInt120(int256 value) internal pure returns (int120) {
require(value >= type(int120).min && value <= type(int120).max, "SafeCast: value doesn't fit in 120 bits");
return int120(value);
}
/**
* @dev Returns the downcasted int112 from int256, reverting on
* overflow (when the input is less than smallest int112 or
* greater than largest int112).
*
* Counterpart to Solidity's `int112` operator.
*
* Requirements:
*
* - input must fit into 112 bits
*
* _Available since v4.7._
*/
function toInt112(int256 value) internal pure returns (int112) {
require(value >= type(int112).min && value <= type(int112).max, "SafeCast: value doesn't fit in 112 bits");
return int112(value);
}
/**
* @dev Returns the downcasted int104 from int256, reverting on
* overflow (when the input is less than smallest int104 or
* greater than largest int104).
*
* Counterpart to Solidity's `int104` operator.
*
* Requirements:
*
* - input must fit into 104 bits
*
* _Available since v4.7._
*/
function toInt104(int256 value) internal pure returns (int104) {
require(value >= type(int104).min && value <= type(int104).max, "SafeCast: value doesn't fit in 104 bits");
return int104(value);
}
/**
* @dev Returns the downcasted int96 from int256, reverting on
* overflow (when the input is less than smallest int96 or
* greater than largest int96).
*
* Counterpart to Solidity's `int96` operator.
*
* Requirements:
*
* - input must fit into 96 bits
*
* _Available since v4.7._
*/
function toInt96(int256 value) internal pure returns (int96) {
require(value >= type(int96).min && value <= type(int96).max, "SafeCast: value doesn't fit in 96 bits");
return int96(value);
}
/**
* @dev Returns the downcasted int88 from int256, reverting on
* overflow (when the input is less than smallest int88 or
* greater than largest int88).
*
* Counterpart to Solidity's `int88` operator.
*
* Requirements:
*
* - input must fit into 88 bits
*
* _Available since v4.7._
*/
function toInt88(int256 value) internal pure returns (int88) {
require(value >= type(int88).min && value <= type(int88).max, "SafeCast: value doesn't fit in 88 bits");
return int88(value);
}
/**
* @dev Returns the downcasted int80 from int256, reverting on
* overflow (when the input is less than smallest int80 or
* greater than largest int80).
*
* Counterpart to Solidity's `int80` operator.
*
* Requirements:
*
* - input must fit into 80 bits
*
* _Available since v4.7._
*/
function toInt80(int256 value) internal pure returns (int80) {
require(value >= type(int80).min && value <= type(int80).max, "SafeCast: value doesn't fit in 80 bits");
return int80(value);
}
/**
* @dev Returns the downcasted int72 from int256, reverting on
* overflow (when the input is less than smallest int72 or
* greater than largest int72).
*
* Counterpart to Solidity's `int72` operator.
*
* Requirements:
*
* - input must fit into 72 bits
*
* _Available since v4.7._
*/
function toInt72(int256 value) internal pure returns (int72) {
require(value >= type(int72).min && value <= type(int72).max, "SafeCast: value doesn't fit in 72 bits");
return int72(value);
}
/**
* @dev Returns the downcasted int64 from int256, reverting on
* overflow (when the input is less than smallest int64 or
* greater than largest int64).
*
* Counterpart to Solidity's `int64` operator.
*
* Requirements:
*
* - input must fit into 64 bits
*
* _Available since v3.1._
*/
function toInt64(int256 value) internal pure returns (int64) {
require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
return int64(value);
}
/**
* @dev Returns the downcasted int56 from int256, reverting on
* overflow (when the input is less than smallest int56 or
* greater than largest int56).
*
* Counterpart to Solidity's `int56` operator.
*
* Requirements:
*
* - input must fit into 56 bits
*
* _Available since v4.7._
*/
function toInt56(int256 value) internal pure returns (int56) {
require(value >= type(int56).min && value <= type(int56).max, "SafeCast: value doesn't fit in 56 bits");
return int56(value);
}
/**
* @dev Returns the downcasted int48 from int256, reverting on
* overflow (when the input is less than smallest int48 or
* greater than largest int48).
*
* Counterpart to Solidity's `int48` operator.
*
* Requirements:
*
* - input must fit into 48 bits
*
* _Available since v4.7._
*/
function toInt48(int256 value) internal pure returns (int48) {
require(value >= type(int48).min && value <= type(int48).max, "SafeCast: value doesn't fit in 48 bits");
return int48(value);
}
/**
* @dev Returns the downcasted int40 from int256, reverting on
* overflow (when the input is less than smallest int40 or
* greater than largest int40).
*
* Counterpart to Solidity's `int40` operator.
*
* Requirements:
*
* - input must fit into 40 bits
*
* _Available since v4.7._
*/
function toInt40(int256 value) internal pure returns (int40) {
require(value >= type(int40).min && value <= type(int40).max, "SafeCast: value doesn't fit in 40 bits");
return int40(value);
}
/**
* @dev Returns the downcasted int32 from int256, reverting on
* overflow (when the input is less than smallest int32 or
* greater than largest int32).
*
* Counterpart to Solidity's `int32` operator.
*
* Requirements:
*
* - input must fit into 32 bits
*
* _Available since v3.1._
*/
function toInt32(int256 value) internal pure returns (int32) {
require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
return int32(value);
}
/**
* @dev Returns the downcasted int24 from int256, reverting on
* overflow (when the input is less than smallest int24 or
* greater than largest int24).
*
* Counterpart to Solidity's `int24` operator.
*
* Requirements:
*
* - input must fit into 24 bits
*
* _Available since v4.7._
*/
function toInt24(int256 value) internal pure returns (int24) {
require(value >= type(int24).min && value <= type(int24).max, "SafeCast: value doesn't fit in 24 bits");
return int24(value);
}
/**
* @dev Returns the downcasted int16 from int256, reverting on
* overflow (when the input is less than smallest int16 or
* greater than largest int16).
*
* Counterpart to Solidity's `int16` operator.
*
* Requirements:
*
* - input must fit into 16 bits
*
* _Available since v3.1._
*/
function toInt16(int256 value) internal pure returns (int16) {
require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
return int16(value);
}
/**
* @dev Returns the downcasted int8 from int256, reverting on
* overflow (when the input is less than smallest int8 or
* greater than largest int8).
*
* Counterpart to Solidity's `int8` operator.
*
* Requirements:
*
* - input must fit into 8 bits
*
* _Available since v3.1._
*/
function toInt8(int256 value) internal pure returns (int8) {
require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
return int8(value);
}
/**
* @dev Converts an unsigned uint256 into a signed int256.
*
* Requirements:
*
* - input must be less than or equal to maxInt256.
*
* _Available since v3.0._
*/
function toInt256(uint256 value) internal pure returns (int256) {
// Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
return int256(value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Timers.sol)
pragma solidity ^0.8.0;
/**
* @dev Tooling for timepoints, timers and delays
*/
library Timers {
struct Timestamp {
uint64 _deadline;
}
function getDeadline(Timestamp memory timer) internal pure returns (uint64) {
return timer._deadline;
}
function setDeadline(Timestamp storage timer, uint64 timestamp) internal {
timer._deadline = timestamp;
}
function reset(Timestamp storage timer) internal {
timer._deadline = 0;
}
function isUnset(Timestamp memory timer) internal pure returns (bool) {
return timer._deadline == 0;
}
function isStarted(Timestamp memory timer) internal pure returns (bool) {
return timer._deadline > 0;
}
function isPending(Timestamp memory timer) internal view returns (bool) {
return timer._deadline > block.timestamp;
}
function isExpired(Timestamp memory timer) internal view returns (bool) {
return isStarted(timer) && timer._deadline <= block.timestamp;
}
struct BlockNumber {
uint64 _deadline;
}
function getDeadline(BlockNumber memory timer) internal pure returns (uint64) {
return timer._deadline;
}
function setDeadline(BlockNumber storage timer, uint64 timestamp) internal {
timer._deadline = timestamp;
}
function reset(BlockNumber storage timer) internal {
timer._deadline = 0;
}
function isUnset(BlockNumber memory timer) internal pure returns (bool) {
return timer._deadline == 0;
}
function isStarted(BlockNumber memory timer) internal pure returns (bool) {
return timer._deadline > 0;
}
function isPending(BlockNumber memory timer) internal view returns (bool) {
return timer._deadline > block.number;
}
function isExpired(BlockNumber memory timer) internal view returns (bool) {
return isStarted(timer) && timer._deadline <= block.number;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`.
// We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
// This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
// Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
// good first aproximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1;
uint256 x = a;
if (x >> 128 > 0) {
x >>= 128;
result <<= 64;
}
if (x >> 64 > 0) {
x >>= 64;
result <<= 32;
}
if (x >> 32 > 0) {
x >>= 32;
result <<= 16;
}
if (x >> 16 > 0) {
x >>= 16;
result <<= 8;
}
if (x >> 8 > 0) {
x >>= 8;
result <<= 4;
}
if (x >> 4 > 0) {
x >>= 4;
result <<= 2;
}
if (x >> 2 > 0) {
result <<= 1;
}
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
uint256 result = sqrt(a);
if (rounding == Rounding.Up && result * result < a) {
result += 1;
}
return result;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/draft-IERC2612.sol)
pragma solidity ^0.8.0;
import "../token/ERC20/extensions/draft-IERC20Permit.sol";
interface IERC2612 is IERC20Permit {}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Checker.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Library used to query support of an interface declared via {IERC165}.
*
* Note that these functions return the actual result of the query: they do not
* `revert` if an interface is not supported. It is up to the caller to decide
* what to do in these cases.
*/
library ERC165Checker {
// As per the EIP-165 spec, no interface should ever match 0xffffffff
bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;
/**
* @dev Returns true if `account` supports the {IERC165} interface,
*/
function supportsERC165(address account) internal view returns (bool) {
// Any contract that implements ERC165 must explicitly indicate support of
// InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid
return
_supportsERC165Interface(account, type(IERC165).interfaceId) &&
!_supportsERC165Interface(account, _INTERFACE_ID_INVALID);
}
/**
* @dev Returns true if `account` supports the interface defined by
* `interfaceId`. Support for {IERC165} itself is queried automatically.
*
* See {IERC165-supportsInterface}.
*/
function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {
// query support of both ERC165 as per the spec and support of _interfaceId
return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);
}
/**
* @dev Returns a boolean array where each value corresponds to the
* interfaces passed in and whether they're supported or not. This allows
* you to batch check interfaces for a contract where your expectation
* is that some interfaces may not be supported.
*
* See {IERC165-supportsInterface}.
*
* _Available since v3.4._
*/
function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)
internal
view
returns (bool[] memory)
{
// an array of booleans corresponding to interfaceIds and whether they're supported or not
bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);
// query support of ERC165 itself
if (supportsERC165(account)) {
// query support of each interface in interfaceIds
for (uint256 i = 0; i < interfaceIds.length; i++) {
interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);
}
}
return interfaceIdsSupported;
}
/**
* @dev Returns true if `account` supports all the interfaces defined in
* `interfaceIds`. Support for {IERC165} itself is queried automatically.
*
* Batch-querying can lead to gas savings by skipping repeated checks for
* {IERC165} support.
*
* See {IERC165-supportsInterface}.
*/
function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {
// query support of ERC165 itself
if (!supportsERC165(account)) {
return false;
}
// query support of each interface in _interfaceIds
for (uint256 i = 0; i < interfaceIds.length; i++) {
if (!_supportsERC165Interface(account, interfaceIds[i])) {
return false;
}
}
// all interfaces supported
return true;
}
/**
* @notice Query if a contract implements an interface, does not check ERC165 support
* @param account The address of the contract to query for support of an interface
* @param interfaceId The interface identifier, as specified in ERC-165
* @return true if the contract at account indicates support of the interface with
* identifier interfaceId, false otherwise
* @dev Assumes that account contains a contract that supports ERC165, otherwise
* the behavior of this method is undefined. This precondition can be checked
* with {supportsERC165}.
* Interface identification is specified in ERC-165.
*/
function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {
bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId);
(bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);
if (result.length < 32) return false;
return success && abi.decode(result, (bool));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)
pragma solidity ^0.8.0;
import "../ERC1155Upgradeable.sol";
import "../../../proxy/utils/Initializable.sol";
/**
* @dev Extension of ERC1155 that adds tracking of total supply per id.
*
* Useful for scenarios where Fungible and Non-fungible tokens have to be
* clearly identified. Note: While a totalSupply of 1 might mean the
* corresponding is an NFT, there is no guarantees that no other token with the
* same id are not going to be minted.
*/
abstract contract ERC1155SupplyUpgradeable is Initializable, ERC1155Upgradeable {
function __ERC1155Supply_init() internal onlyInitializing {
}
function __ERC1155Supply_init_unchained() internal onlyInitializing {
}
mapping(uint256 => uint256) private _totalSupply;
/**
* @dev Total amount of tokens in with a given id.
*/
function totalSupply(uint256 id) public view virtual returns (uint256) {
return _totalSupply[id];
}
/**
* @dev Indicates whether any token exist with a given id, or not.
*/
function exists(uint256 id) public view virtual returns (bool) {
return ERC1155SupplyUpgradeable.totalSupply(id) > 0;
}
/**
* @dev See {ERC1155-_beforeTokenTransfer}.
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual override {
super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
if (from == address(0)) {
for (uint256 i = 0; i < ids.length; ++i) {
_totalSupply[ids[i]] += amounts[i];
}
}
if (to == address(0)) {
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 supply = _totalSupply[id];
require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
unchecked {
_totalSupply[id] = supply - amount;
}
}
}
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "../errors/GeneralErrors.sol";
library Distributions {
struct Balances {
mapping(uint256 => uint256) _balances;
uint256 _totalSupply;
}
function balanceOf(Balances storage self, uint256 subjectId) internal view returns (uint256) {
return self._balances[subjectId];
}
function totalSupply(Balances storage self) internal view returns (uint256) {
return self._totalSupply;
}
function mint(Balances storage self, uint256 subjectId, uint256 amount) internal {
self._balances[subjectId] += amount;
self._totalSupply += amount;
}
function burn(Balances storage self, uint256 subjectId, uint256 amount) internal {
self._balances[subjectId] -= amount;
self._totalSupply -= amount;
}
function transfer(Balances storage self, uint256 from, uint256 to, uint256 amount) internal {
self._balances[from] -= amount;
self._balances[to] += amount;
}
struct SignedBalances {
mapping(address => int256) _balances;
int256 _totalSupply;
}
function balanceOf(SignedBalances storage self, address account) internal view returns (int256) {
return self._balances[account];
}
function totalSupply(SignedBalances storage self) internal view returns (int256) {
return self._totalSupply;
}
function mint(SignedBalances storage self, address account, int256 amount) internal {
if (account == address(0)) revert ZeroAddress("mint");
self._balances[account] += amount;
self._totalSupply += amount;
}
function burn(SignedBalances storage self, address account, int256 amount) internal {
if(account == address(0)) revert ZeroAddress("burn");
self._balances[account] -= amount;
self._totalSupply -= amount;
}
function transfer(SignedBalances storage self, address from, address to, int256 amount) internal {
if (from == address(0)) revert ZeroAddress("from");
if (to == address(0)) revert ZeroAddress("to");
self._balances[from] -= amount;
self._balances[to] += amount;
}
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
// These are the roles used in the components of the Forta system, except
// Forta token itself, that needs to define it's own roles for consistency across chains
bytes32 constant DEFAULT_ADMIN_ROLE = bytes32(0);
// Routing
bytes32 constant ROUTER_ADMIN_ROLE = keccak256("ROUTER_ADMIN_ROLE");
// Base component
bytes32 constant ENS_MANAGER_ROLE = keccak256("ENS_MANAGER_ROLE");
bytes32 constant UPGRADER_ROLE = keccak256("UPGRADER_ROLE");
// Registries
bytes32 constant AGENT_ADMIN_ROLE = keccak256("AGENT_ADMIN_ROLE");
bytes32 constant SCANNER_ADMIN_ROLE = keccak256("SCANNER_ADMIN_ROLE");
bytes32 constant SCANNER_POOL_ADMIN_ROLE = keccak256("SCANNER_POOL_ADMIN_ROLE");
bytes32 constant SCANNER_2_SCANNER_POOL_MIGRATOR_ROLE = keccak256("SCANNER_2_SCANNER_POOL_MIGRATOR_ROLE");
bytes32 constant DISPATCHER_ROLE = keccak256("DISPATCHER_ROLE");
bytes32 constant MIGRATION_EXECUTOR_ROLE = keccak256("MIGRATION_EXECUTOR_ROLE");
// Staking
bytes32 constant SLASHER_ROLE = keccak256("SLASHER_ROLE");
bytes32 constant SWEEPER_ROLE = keccak256("SWEEPER_ROLE");
bytes32 constant REWARDER_ROLE = keccak256("REWARDER_ROLE");
bytes32 constant SLASHING_ARBITER_ROLE = keccak256("SLASHING_ARBITER_ROLE");
bytes32 constant STAKING_CONTRACT_ROLE = keccak256("STAKING_CONTRACT_ROLE");
bytes32 constant STAKING_ADMIN_ROLE = keccak256("STAKING_ADMIN_ROLE");
bytes32 constant ALLOCATOR_CONTRACT_ROLE = keccak256("ALLOCATOR_CONTRACT_ROLE");
// Scanner Node Version
bytes32 constant SCANNER_VERSION_ROLE = keccak256("SCANNER_VERSION_ROLE");
bytes32 constant SCANNER_BETA_VERSION_ROLE = keccak256("SCANNER_BETA_VERSION_ROLE");// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/IAccessControl.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165CheckerUpgradeable.sol";
import "../Roles.sol";
import "../../errors/GeneralErrors.sol";
abstract contract AccessManagedUpgradeable is ContextUpgradeable {
using ERC165CheckerUpgradeable for address;
IAccessControl private _accessControl;
event AccessManagerUpdated(address indexed newAddressManager);
error MissingRole(bytes32 role, address account);
/**
* @notice Checks if _msgSender() has `role`, reverts if not.
* @param role the role to be tested, defined in Roles.sol and set in AccessManager instance.
*/
modifier onlyRole(bytes32 role) {
if (!hasRole(role, _msgSender())) {
revert MissingRole(role, _msgSender());
}
_;
}
/**
* @notice Initializer method, access point to initialize inheritance tree.
* @param manager address of AccessManager.
*/
function __AccessManaged_init(address manager) internal initializer {
if (!manager.supportsInterface(type(IAccessControl).interfaceId)) revert UnsupportedInterface("IAccessControl");
_accessControl = IAccessControl(manager);
emit AccessManagerUpdated(manager);
}
/**
* @notice Checks if `account has `role` assigned.
* @param role the role to be tested, defined in Roles.sol and set in AccessManager instance.
* @param account the address to be tested for the role.
* @return return true if account has role, false otherwise.
*/
function hasRole(bytes32 role, address account) internal view returns (bool) {
return _accessControl.hasRole(role, account);
}
/**
* @notice Sets AccessManager instance. Restricted to DEFAULT_ADMIN_ROLE
* @param newManager address of the new instance of AccessManager.
*/
function setAccessManager(address newManager) public onlyRole(DEFAULT_ADMIN_ROLE) {
if (!newManager.supportsInterface(type(IAccessControl).interfaceId)) revert UnsupportedInterface("IAccessControl");
_accessControl = IAccessControl(newManager);
emit AccessManagerUpdated(newManager);
}
/**
* 50
* - 1 _accessControl;
* --------------------------
* 49 __gap
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "./AccessManaged.sol";
/**
* Since Router is deprecated, we are keeping RoutedUpgradeable in this state to preserve storage
* layout in deployed `BaseComponentUpgradeable` contracts.
*/
abstract contract RoutedUpgradeable is AccessManagedUpgradeable {
/// @custom:oz-retyped-from contract IRouter
/// @custom:oz-renamed-from _router
address private _deprecated_router;
event RouterUpdated(address indexed router);
/// Sets Router instance to address(0).
function disableRouter() public {
if (_deprecated_router == address(0)) {
revert ZeroAddress("_deprecated_router");
}
_deprecated_router = address(0);
emit RouterUpdated(address(0));
}
/**
* 50
* - 1 _deprecated_router;
* --------------------------
* 49 __gap
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
abstract contract ForwardedContext is ContextUpgradeable {
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable
address private immutable _trustedForwarder;
/// @custom:oz-upgrades-unsafe-allow constructor
constructor(address trustedForwarder) {
// WARNING: do not set this address to other than a deployed Forwarder instance.
// Forwarder is critical infrastructure with priviledged address, it is safe for the limited
// functionality of the Forwarder contract, any other EOA or contract could be a security issue.
_trustedForwarder = trustedForwarder;
}
/**
* @notice Gets sender of the transaction.
* @return sender address of sender of the transaction of signer if meta transaction.
*/
function _msgSender() internal view virtual override returns (address sender) {
return super._msgSender();
}
/**
* @notice Gets msg.data of the transaction.
* @return msg.data of the transaction of msg.data.
*/
function _msgData() internal view virtual override returns (bytes calldata) {
return super._msgData();
}
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
interface IVersioned {
function version() external returns(string memory v);
}// SPDX-License-Identifier: UNLICENSED
// See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md
pragma solidity ^0.8.9;
import { ENS } from "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
interface IReverseRegistrar {
function ADDR_REVERSE_NODE() external view returns (bytes32);
function ens() external view returns (ENS);
function defaultResolver() external view returns (address);
function claim(address) external returns (bytes32);
function claimWithResolver(address, address) external returns (bytes32);
function setName(string calldata) external returns (bytes32);
function node(address) external pure returns (bytes32);
}
library ENSReverseRegistration {
// namehash('addr.reverse')
bytes32 internal constant ADDR_REVERSE_NODE = 0x91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e2;
function setName(address ensregistry, string calldata ensname) internal {
IReverseRegistrar(ENS(ensregistry).owner(ADDR_REVERSE_NODE)).setName(ensname);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol)
pragma solidity ^0.8.0;
import "./Address.sol";
/**
* @dev Provides a function to batch together multiple calls in a single external call.
*
* _Available since v4.1._
*/
abstract contract Multicall {
/**
* @dev Receives and executes a batch of function calls on this contract.
*/
function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
results = new bytes[](data.length);
for (uint256 i = 0; i < data.length; i++) {
results[i] = Address.functionDelegateCall(address(this), data[i]);
}
return results;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/UUPSUpgradeable.sol)
pragma solidity ^0.8.0;
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../ERC1967/ERC1967UpgradeUpgradeable.sol";
import "./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.
*
* _Available since v4.1._
*/
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
function __UUPSUpgradeable_init() internal onlyInitializing {
}
function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
}
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
address private immutable __self = address(this);
/**
* @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() {
require(address(this) != __self, "Function must be called through delegatecall");
require(_getImplementation() == __self, "Function must be called through active proxy");
_;
}
/**
* @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() {
require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
_;
}
/**
* @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
* implementation. It is used to validate that the this implementation remains valid after 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 override notDelegated returns (bytes32) {
return _IMPLEMENTATION_SLOT;
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*/
function upgradeTo(address newImplementation) external virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
* encoded in `data`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*/
function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, data, true);
}
/**
* @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
* {upgradeTo} and {upgradeToAndCall}.
*
* Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
*
* ```solidity
* function _authorizeUpgrade(address) internal override onlyOwner {}
* ```
*/
function _authorizeUpgrade(address newImplementation) internal virtual;
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: UNLICENSED // See Forta Network License: https://github.com/forta-network/forta-contracts/blob/master/LICENSE.md pragma solidity ^0.8.9; error ZeroAddress(string name); error ZeroAmount(string name); error EmptyArray(string name); error EmptyString(string name); error UnorderedArray(string name); error DifferentLengthArray(string array1, string array2); error ArrayTooBig(uint256 length, uint256 max); error StringTooLarge(uint256 length, uint256 max); error AmountTooLarge(uint256 amount, uint256 max); error AmountTooSmall(uint256 amount, uint256 min); error UnsupportedInterface(string name); error SenderNotOwner(address sender, uint256 ownedId); error DoesNotHaveAccess(address sender, string access); // Permission here refers to XXXRegistry.sol Permission enums error DoesNotHavePermission(address sender, uint8 permission, uint256 id);
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../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;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Checker.sol)
pragma solidity ^0.8.0;
import "./IERC165Upgradeable.sol";
/**
* @dev Library used to query support of an interface declared via {IERC165}.
*
* Note that these functions return the actual result of the query: they do not
* `revert` if an interface is not supported. It is up to the caller to decide
* what to do in these cases.
*/
library ERC165CheckerUpgradeable {
// As per the EIP-165 spec, no interface should ever match 0xffffffff
bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff;
/**
* @dev Returns true if `account` supports the {IERC165} interface,
*/
function supportsERC165(address account) internal view returns (bool) {
// Any contract that implements ERC165 must explicitly indicate support of
// InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid
return
_supportsERC165Interface(account, type(IERC165Upgradeable).interfaceId) &&
!_supportsERC165Interface(account, _INTERFACE_ID_INVALID);
}
/**
* @dev Returns true if `account` supports the interface defined by
* `interfaceId`. Support for {IERC165} itself is queried automatically.
*
* See {IERC165-supportsInterface}.
*/
function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) {
// query support of both ERC165 as per the spec and support of _interfaceId
return supportsERC165(account) && _supportsERC165Interface(account, interfaceId);
}
/**
* @dev Returns a boolean array where each value corresponds to the
* interfaces passed in and whether they're supported or not. This allows
* you to batch check interfaces for a contract where your expectation
* is that some interfaces may not be supported.
*
* See {IERC165-supportsInterface}.
*
* _Available since v3.4._
*/
function getSupportedInterfaces(address account, bytes4[] memory interfaceIds)
internal
view
returns (bool[] memory)
{
// an array of booleans corresponding to interfaceIds and whether they're supported or not
bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length);
// query support of ERC165 itself
if (supportsERC165(account)) {
// query support of each interface in interfaceIds
for (uint256 i = 0; i < interfaceIds.length; i++) {
interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]);
}
}
return interfaceIdsSupported;
}
/**
* @dev Returns true if `account` supports all the interfaces defined in
* `interfaceIds`. Support for {IERC165} itself is queried automatically.
*
* Batch-querying can lead to gas savings by skipping repeated checks for
* {IERC165} support.
*
* See {IERC165-supportsInterface}.
*/
function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) {
// query support of ERC165 itself
if (!supportsERC165(account)) {
return false;
}
// query support of each interface in _interfaceIds
for (uint256 i = 0; i < interfaceIds.length; i++) {
if (!_supportsERC165Interface(account, interfaceIds[i])) {
return false;
}
}
// all interfaces supported
return true;
}
/**
* @notice Query if a contract implements an interface, does not check ERC165 support
* @param account The address of the contract to query for support of an interface
* @param interfaceId The interface identifier, as specified in ERC-165
* @return true if the contract at account indicates support of the interface with
* identifier interfaceId, false otherwise
* @dev Assumes that account contains a contract that supports ERC165, otherwise
* the behavior of this method is undefined. This precondition can be checked
* with {supportsERC165}.
* Interface identification is specified in ERC-165.
*/
function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) {
bytes memory encodedParams = abi.encodeWithSelector(IERC165Upgradeable.supportsInterface.selector, interfaceId);
(bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams);
if (result.length < 32) return false;
return success && abi.decode(result, (bool));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @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]
* ```
* 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 Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 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. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_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.
*
* `initializer` is equivalent to `reinitializer(1)`, so 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.
*
* 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.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_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() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @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.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165Upgradeable {
/**
* @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);
}pragma solidity >=0.8.4;
interface ENS {
// Logged when the owner of a node assigns a new owner to a subnode.
event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner);
// Logged when the owner of a node transfers ownership to a new account.
event Transfer(bytes32 indexed node, address owner);
// Logged when the resolver for a node changes.
event NewResolver(bytes32 indexed node, address resolver);
// Logged when the TTL of a node changes
event NewTTL(bytes32 indexed node, uint64 ttl);
// Logged when an operator is added or removed.
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
function setRecord(bytes32 node, address owner, address resolver, uint64 ttl) external virtual;
function setSubnodeRecord(bytes32 node, bytes32 label, address owner, address resolver, uint64 ttl) external virtual;
function setSubnodeOwner(bytes32 node, bytes32 label, address owner) external virtual returns(bytes32);
function setResolver(bytes32 node, address resolver) external virtual;
function setOwner(bytes32 node, address owner) external virtual;
function setTTL(bytes32 node, uint64 ttl) external virtual;
function setApprovalForAll(address operator, bool approved) external virtual;
function owner(bytes32 node) external virtual view returns (address);
function resolver(bytes32 node) external virtual view returns (address);
function ttl(bytes32 node) external virtual view returns (uint64);
function recordExists(bytes32 node) external virtual view returns (bool);
function isApprovedForAll(address owner, address operator) external virtual view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)
pragma solidity ^0.8.2;
import "../beacon/IBeaconUpgradeable.sol";
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/StorageSlotUpgradeable.sol";
import "../utils/Initializable.sol";
/**
* @dev This abstract contract provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
*
* _Available since v4.1._
*
* @custom:oz-upgrades-unsafe-allow delegatecall
*/
abstract contract ERC1967UpgradeUpgradeable is Initializable {
function __ERC1967Upgrade_init() internal onlyInitializing {
}
function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
}
// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Returns the current implementation address.
*/
function _getImplementation() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Perform implementation upgrade
*
* Emits an {Upgraded} event.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Perform implementation upgrade with additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCall(
address newImplementation,
bytes memory data,
bool forceCall
) internal {
_upgradeTo(newImplementation);
if (data.length > 0 || forceCall) {
_functionDelegateCall(newImplementation, data);
}
}
/**
* @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCallUUPS(
address newImplementation,
bytes memory data,
bool forceCall
) internal {
// Upgrades from old implementations will perform a rollback test. This test requires the new
// implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
// this special case will break upgrade paths from old UUPS implementation to new ones.
if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
_setImplementation(newImplementation);
} else {
try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
} catch {
revert("ERC1967Upgrade: new implementation is not UUPS");
}
_upgradeToAndCall(newImplementation, data, forceCall);
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Returns the current admin.
*/
function _getAdmin() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
require(newAdmin != address(0), "ERC1967: new admin is the zero address");
StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {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 bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
*/
bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Emitted when the beacon is upgraded.
*/
event BeaconUpgraded(address indexed beacon);
/**
* @dev Returns the current beacon.
*/
function _getBeacon() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
require(
AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
"ERC1967: beacon implementation is not a contract"
);
StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
}
/**
* @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
* not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
*
* Emits a {BeaconUpgraded} event.
*/
function _upgradeBeaconToAndCall(
address newBeacon,
bytes memory data,
bool forceCall
) internal {
_setBeacon(newBeacon);
emit BeaconUpgraded(newBeacon);
if (data.length > 0 || forceCall) {
_functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
}
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function _functionDelegateCall(address target, bytes memory data) private returns (bytes memory) {
require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed");
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)
pragma solidity ^0.8.0;
/**
* @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 IERC1822ProxiableUpgradeable {
/**
* @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 v4.4.1 (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.0;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeaconUpgradeable {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {BeaconProxy} will check that this address is a contract.
*/
function implementation() external view returns (address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)
pragma solidity ^0.8.0;
/**
* @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:
* ```
* 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(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
*/
library StorageSlotUpgradeable {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 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
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)
pragma solidity ^0.8.0;
import "./IERC1155Upgradeable.sol";
import "./IERC1155ReceiverUpgradeable.sol";
import "./extensions/IERC1155MetadataURIUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../utils/introspection/ERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.sol";
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC1155Upgradeable, IERC1155MetadataURIUpgradeable {
using AddressUpgradeable for address;
// Mapping from token ID to account balances
mapping(uint256 => mapping(address => uint256)) private _balances;
// Mapping from account to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/**
* @dev See {_setURI}.
*/
function __ERC1155_init(string memory uri_) internal onlyInitializing {
__ERC1155_init_unchained(uri_);
}
function __ERC1155_init_unchained(string memory uri_) internal onlyInitializing {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) {
return
interfaceId == type(IERC1155Upgradeable).interfaceId ||
interfaceId == type(IERC1155MetadataURIUpgradeable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) public view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: address zero is not a valid owner");
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
public
view
virtual
override
returns (uint256[] memory)
{
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner nor approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not token owner nor approved"
);
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
emit TransferSingle(operator, from, to, id, amount);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
}
emit TransferBatch(operator, from, to, ids, amounts);
_afterTokenTransfer(operator, from, to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
_balances[id][to] += amount;
emit TransferSingle(operator, address(0), to, id, amount);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; i++) {
_balances[ids[i]][to] += amounts[i];
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_afterTokenTransfer(operator, address(0), to, ids, amounts, data);
_doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `from`
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `from` must have at least `amount` tokens of token type `id`.
*/
function _burn(
address from,
uint256 id,
uint256 amount
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
uint256[] memory ids = _asSingletonArray(id);
uint256[] memory amounts = _asSingletonArray(amount);
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
emit TransferSingle(operator, from, address(0), id, amount);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(
address from,
uint256[] memory ids,
uint256[] memory amounts
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
for (uint256 i = 0; i < ids.length; i++) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
}
emit TransferBatch(operator, from, address(0), ids, amounts);
_afterTokenTransfer(operator, from, address(0), ids, amounts, "");
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC1155: setting approval status for self");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `ids` and `amounts` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155ReceiverUpgradeable(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
if (response != IERC1155ReceiverUpgradeable.onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155ReceiverUpgradeable(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
bytes4 response
) {
if (response != IERC1155ReceiverUpgradeable.onERC1155BatchReceived.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[47] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165Upgradeable.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155Upgradeable is IERC165Upgradeable {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165Upgradeable.sol";
import "../../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);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
function __ERC165_init() internal onlyInitializing {
}
function __ERC165_init_unchained() internal onlyInitializing {
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165Upgradeable).interfaceId;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165Upgradeable.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155ReceiverUpgradeable is IERC165Upgradeable {
/**
* @dev Handles the receipt of a single ERC1155 token type. This function is
* called at the end of a `safeTransferFrom` after the balance has been updated.
*
* NOTE: To accept the transfer, this must return
* `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
* (i.e. 0xf23a6e61, or its own function selector).
*
* @param operator The address which initiated the transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param id The ID of the token being transferred
* @param value The amount of tokens being transferred
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
* @dev Handles the receipt of a multiple ERC1155 token types. This function
* is called at the end of a `safeBatchTransferFrom` after the balances have
* been updated.
*
* NOTE: To accept the transfer(s), this must return
* `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
* (i.e. 0xbc197c81, or its own function selector).
*
* @param operator The address which initiated the batch transfer (i.e. msg.sender)
* @param from The address which previously owned the token
* @param ids An array containing ids of each token being transferred (order and length must match values array)
* @param values An array containing amounts of each token being transferred (order and length must match ids array)
* @param data Additional data with no specified format
* @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)
pragma solidity ^0.8.0;
import "../IERC1155Upgradeable.sol";
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURIUpgradeable is IERC1155Upgradeable {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract ABI
API[{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"enum SubjectTypeValidator.SubjectStakeAgency","name":"provided","type":"uint8"},{"internalType":"enum SubjectTypeValidator.SubjectStakeAgency","name":"expected","type":"uint8"}],"name":"ForbiddenForType","type":"error"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"}],"name":"InvalidSubjectType","type":"error"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"MissingRole","type":"error"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"address","name":"stakeSubject","type":"address"}],"name":"NonIDelegatedSubjectHandler","type":"error"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"UnsupportedInterface","type":"error"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddressManager","type":"address"}],"name":"AccessManagerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"router","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newHandler","type":"address"},{"indexed":false,"internalType":"address","name":"oldHandler","type":"address"}],"name":"StakeSubjectChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"activeStakeFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"},{"internalType":"address","name":"allocator","type":"address"}],"name":"canManageAllocation","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"}],"name":"getDelegatedSubjectType","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"}],"name":"getDelegatorSubjectType","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"}],"name":"getStakeSubject","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"}],"name":"getSubjectTypeAgency","outputs":[{"internalType":"enum SubjectTypeValidator.SubjectStakeAgency","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"__manager","type":"address"},{"internalType":"address","name":"__fortaStaking","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"isRegistered","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"isStakeActivatedFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"maxManagedStakeFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"maxStakeFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"minManagedStakeFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"minStakeFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newManager","type":"address"}],"name":"setAccessManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ensRegistry","type":"address"},{"internalType":"string","name":"ensName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"address","name":"subject","type":"address"}],"name":"setStakeSubject","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"totalManagedSubjects","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"},{"internalType":"uint256","name":"subject","type":"uint256"}],"name":"totalStakeFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"subjectType","type":"uint8"}],"name":"unsetStakeSubject","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60c06040523060a0523480156200001557600080fd5b5060405162002a4a38038062002a4a833981016040819052620000389162000180565b6001600160a01b038116608052600054610100900460ff1615808015620000665750600054600160ff909116105b8062000096575062000083306200017160201b620016f81760201c565b15801562000096575060005460ff166001145b620000fe5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b6000805460ff19166001179055801562000122576000805461ff0019166101001790555b801562000169576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b5050620001b2565b6001600160a01b03163b151590565b6000602082840312156200019357600080fd5b81516001600160a01b0381168114620001ab57600080fd5b9392505050565b60805160a051612859620001f1600039600081816109010152818161094101528181610bd501528181610c150152610ca80152600050506128596000f3fe6080604052600436106101815760003560e01c8063882b2917116100d1578063c159f74a1161008a578063d858a7e511610064578063d858a7e5146104cf578063e8051313146104e4578063ebe6f2c414610504578063fb527acd1461052457600080fd5b8063c159f74a1461046f578063c95808041461048f578063cdf50e17146104af57600080fd5b8063882b291714610392578063a290bf38146103c2578063ac9650d8146103e2578063b3b68d8b1461040f578063b471f6861461042f578063c133a5621461044f57600080fd5b80633ac219fb1161013e57806352d1902d1161011857806352d1902d146102c057806354fd4d50146102d557806363ba4ff114610313578063762fa7b71461036557600080fd5b80633ac219fb1461026d578063485cc9551461028d5780634f1ef286146102ad57600080fd5b80631a4bc490146101865780631da10640146101a85780631daa0445146101db5780632d510d781461020d5780633121db1c1461022d5780633659cfe61461024d575b600080fd5b34801561019257600080fd5b506101a66101a136600461210c565b610544565b005b3480156101b457600080fd5b506101c86101c3366004612143565b6106b4565b6040519081526020015b60405180910390f35b3480156101e757600080fd5b506101fb6101f636600461216d565b6107a5565b60405160ff90911681526020016101d2565b34801561021957600080fd5b506101c8610228366004612143565b6107c3565b34801561023957600080fd5b506101a6610248366004612188565b6108af565b34801561025957600080fd5b506101a661026836600461220d565b6108f6565b34801561027957600080fd5b506101c8610288366004612143565b6109d6565b34801561029957600080fd5b506101a66102a836600461222a565b610af4565b6101a66102bb36600461228f565b610bca565b3480156102cc57600080fd5b506101c8610c9b565b3480156102e157600080fd5b5061030660405180604001604052806005815260200164302e312e3160d81b81525081565b6040516101d2919061238f565b34801561031f57600080fd5b5061034d61032e36600461216d565b60ff16600090815261012e60205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101d2565b34801561037157600080fd5b5061038561038036600461216d565b610d4e565b6040516101d291906123b8565b34801561039e57600080fd5b506103b26103ad366004612143565b610da4565b60405190151581526020016101d2565b3480156103ce57600080fd5b506101c86103dd366004612143565b610e8a565b3480156103ee57600080fd5b506104026103fd3660046123e0565b610f12565b6040516101d29190612455565b34801561041b57600080fd5b506101c861042a366004612143565b611007565b34801561043b57600080fd5b5061034d61044a366004612143565b61109e565b34801561045b57600080fd5b506101fb61046a36600461216d565b611155565b34801561047b57600080fd5b506103b261048a366004612143565b61116b565b34801561049b57600080fd5b506101a66104aa36600461220d565b61124f565b3480156104bb57600080fd5b506101c86104ca366004612143565b611309565b3480156104db57600080fd5b506101a66113a1565b3480156104f057600080fd5b506101c86104ff366004612143565b61142c565b34801561051057600080fd5b506103b261051f3660046124b7565b6114c4565b34801561053057600080fd5b506101a661053f36600461216d565b61160c565b60006105508133611707565b6105875780335b6040516301d4003760e61b815260048101929092526001600160a01b031660248201526044015b60405180910390fd5b8260ff81161580159061059e575060ff8116600114155b80156105ae575060ff8116600214155b80156105be575060ff8116600314155b156105e15760405163c2628c0b60e01b815260ff8216600482015260240161057e565b6001600160a01b0383166106225760405163eac0d38960e01b81526020600482015260076024820152661cdd589a9958dd60ca1b604482015260640161057e565b60ff8416600090815261012e60209081526040918290205482516001600160a01b038088168252909116918101919091527f3e73127b1191c2cf11f01231adb844b8a6cb9b8cc4b56dd347942db02697e7d7910160405180910390a1505060ff91909116600090815261012e6020526040902080546001600160a01b0319166001600160a01b03909216919091179055565b600060016106c184610d4e565b60048111156106d2576106d26123a2565b146106e0575060001961079f565b60ff8316600090815261012e60205260409020546001600160a01b03166107095750600061079f565b60ff8316600090815261012e602052604090819020549051631892b78f60e21b8152600481018490526001600160a01b039091169063624ade3c906024015b60606040518083038186803b15801561076057600080fd5b505afa158015610774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107989190612507565b6020015190505b92915050565b600060ff8216600314156107bb57506002919050565b5060ff919050565b600060026107d084610d4e565b60048111156107e1576107e16123a2565b146107ee5750600061079f565b60ff8316600090815261012e60205260409020546001600160a01b0316610818575060001961079f565b60ff8316600090815261012e602052604090819020549051632104a02b60e21b8152600481018490526001600160a01b039091169063841280ac906024015b60606040518083038186803b15801561086f57600080fd5b505afa158015610883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a79190612507565b519392505050565b7f664245c7af190fec316596e8231f724e8171b1966cfcd124347ac5a66c34f64a6108da8133611707565b6108e5578033610557565b6108f0848484611741565b50505050565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561093f5760405162461bcd60e51b815260040161057e90612567565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166109886000805160206127dd833981519152546001600160a01b031690565b6001600160a01b0316146109ae5760405162461bcd60e51b815260040161057e906125b3565b6109b781611857565b604080516000808252602082019092526109d39183919061188d565b50565b61012d5460405163dc4653ef60e01b815260ff84166004820152602481018390526000916001600160a01b03169063dc4653ef9060440160206040518083038186803b158015610a2557600080fd5b505afa158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d91906125ff565b61012d5460405163145217e760e31b815260ff86166004820152602481018590526001600160a01b039091169063a290bf389060440160206040518083038186803b158015610aab57600080fd5b505afa158015610abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae391906125ff565b610aed919061262e565b9392505050565b600054610100900460ff1615808015610b145750600054600160ff909116105b80610b2e5750303b158015610b2e575060005460ff166001145b610b4a5760405162461bcd60e51b815260040161057e90612646565b6000805460ff191660011790558015610b6d576000805461ff0019166101001790555b610b7683611a07565b610b7f82611adb565b8015610bc5576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415610c135760405162461bcd60e51b815260040161057e90612567565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610c5c6000805160206127dd833981519152546001600160a01b031690565b6001600160a01b031614610c825760405162461bcd60e51b815260040161057e906125b3565b610c8b82611857565b610c978282600161188d565b5050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610d3b5760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000606482015260840161057e565b506000805160206127dd83398151915290565b600060ff821660011415610d6457506001919050565b60ff821660021415610d7857506002919050565b60ff821660031415610d8c57506003919050565b60ff8216610d9c57506004919050565b506000919050565b600060ff831660021480610dbb575060ff83166003145b15610dc85750600161079f565b60ff8316600090815261012e60205260409020546001600160a01b0316610df15750600061079f565b60ff8316600090815261012e602052604090819020549051631892b78f60e21b8152600481018490526001600160a01b039091169063624ade3c9060240160606040518083038186803b158015610e4757600080fd5b505afa158015610e5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7f9190612507565b604001519392505050565b61012d5460405163145217e760e31b815260ff84166004820152602481018390526000916001600160a01b03169063a290bf38906044015b60206040518083038186803b158015610eda57600080fd5b505afa158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aed91906125ff565b60608167ffffffffffffffff811115610f2d57610f2d612248565b604051908082528060200260200182016040528015610f6057816020015b6060815260200190600190039081610f4b5790505b50905060005b8281101561100057610fd030858584818110610f8457610f84612694565b9050602002810190610f9691906126aa565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b4792505050565b828281518110610fe257610fe2612694565b60200260200101819052508080610ff8906126f8565b915050610f66565b5092915050565b6000600261101484610d4e565b6004811115611025576110256123a2565b146110325750600061079f565b60ff8316600090815261012e60205260409020546001600160a01b031661105b5750600061079f565b60ff8316600090815261012e6020526040908190205490516307246a6960e21b8152600481018490526001600160a01b0390911690631c91a9a490602401610ec2565b60ff8216600090815261012e60205260408120546001600160a01b03166110c75750600061079f565b60ff8316600090815261012e6020526040908190205490516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e9060240160206040518083038186803b15801561111d57600080fd5b505afa158015611131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aed9190612713565b600060ff8216600214156107bb57506003919050565b6000600361117884610d4e565b6004811115611189576111896123a2565b14156111975750600161079f565b60ff8316600090815261012e60205260409020546001600160a01b03166111c05750600061079f565b60ff8316600090815261012e602052604090819020549051630af34d3160e31b8152600481018490526001600160a01b039091169063579a6988906024015b60206040518083038186803b15801561121757600080fd5b505afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aed9190612730565b600061125b8133611707565b611266578033610557565b6112806001600160a01b038316637965db0b60e01b611b6c565b6112be576040516301a1fdbb60e41b815260206004820152600e60248201526d125058d8d95cdcd0dbdb9d1c9bdb60921b604482015260640161057e565b603380546001600160a01b0319166001600160a01b0384169081179091556040517fa5bc17e575e3b53b23d0e93e121a5a66d1de4d5edb4dfde6027b14d79b7f2b9c90600090a25050565b6000600261131684610d4e565b6004811115611327576113276123a2565b14611335575060001961079f565b60ff8316600090815261012e60205260409020546001600160a01b031661135e5750600061079f565b60ff8316600090815261012e602052604090819020549051632104a02b60e21b8152600481018490526001600160a01b039091169063841280ac90602401610748565b6065546001600160a01b03166113ef5760405163eac0d38960e01b81526020600482015260126024820152712fb232b83932b1b0ba32b22fb937baba32b960711b604482015260640161057e565b606580546001600160a01b03191690556040516000907f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc80908290a2565b6000600161143984610d4e565b600481111561144a5761144a6123a2565b146114575750600061079f565b60ff8316600090815261012e60205260409020546001600160a01b0316611481575060001961079f565b60ff8316600090815261012e602052604090819020549051631892b78f60e21b8152600481018490526001600160a01b039091169063624ade3c90602401610857565b6000806114d085610d4e565b905060038160048111156114e6576114e66123a2565b1415801561150657506002816004811115611503576115036123a2565b14155b15611515576000915050610aed565b60ff8516600090815261012e60205260409020546001600160a01b0316611540576000915050610aed565b60ff8516600090815261012e6020526040908190205490516331a9108f60e11b8152600481018690526001600160a01b03858116921690636352211e9060240160206040518083038186803b15801561159857600080fd5b505afa1580156115ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d09190612713565b6001600160a01b03161480611603575060ff8516600090815261012e60205260409020546001600160a01b038481169116145b95945050505050565b60006116188133611707565b611623578033610557565b8160ff81161580159061163a575060ff8116600114155b801561164a575060ff8116600214155b801561165a575060ff8116600314155b1561167d5760405163c2628c0b60e01b815260ff8216600482015260240161057e565b60ff8316600090815261012e602090815260408083205481519384526001600160a01b0316918301919091527f3e73127b1191c2cf11f01231adb844b8a6cb9b8cc4b56dd347942db02697e7d7910160405180910390a1505060ff16600090815261012e6020526040902080546001600160a01b0319169055565b6001600160a01b03163b151590565b603354604051632474521560e21b8152600481018490526001600160a01b03838116602483015260009216906391d14854906044016111ff565b6040516302571be360e01b81527f91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e260048201526001600160a01b038416906302571be39060240160206040518083038186803b1580156117a057600080fd5b505afa1580156117b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d89190612713565b6001600160a01b031663c47f002783836040518363ffffffff1660e01b815260040161180592919061274b565b602060405180830381600087803b15801561181f57600080fd5b505af1158015611833573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f091906125ff565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e36118828133611707565b610c97578033610557565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156118c057610bc583611b88565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118f957600080fd5b505afa925050508015611929575060408051601f3d908101601f19168201909252611926918101906125ff565b60015b61198c5760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b606482015260840161057e565b6000805160206127dd83398151915281146119fb5760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b606482015260840161057e565b50610bc5838383611c24565b600054610100900460ff1615808015611a275750600054600160ff909116105b80611a415750303b158015611a41575060005460ff166001145b611a5d5760405162461bcd60e51b815260040161057e90612646565b6000805460ff191660011790558015611a80576000805461ff0019166101001790555b611a8982611c49565b611a91611da3565b8015610c97576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15050565b6001600160a01b038116611b245760405163eac0d38960e01b815260206004820152600f60248201526e6e6577466f7274615374616b696e6760881b604482015260640161057e565b61012d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060610aed83836040518060600160405280602781526020016127fd60279139611e10565b6000611b7783611eae565b8015610aed5750610aed8383611ee1565b6001600160a01b0381163b611bf55760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161057e565b6000805160206127dd83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b611c2d83611fc0565b600082511180611c3a5750805b15610bc5576108f08383612000565b600054610100900460ff1615808015611c695750600054600160ff909116105b80611c835750303b158015611c83575060005460ff166001145b611c9f5760405162461bcd60e51b815260040161057e90612646565b6000805460ff191660011790558015611cc2576000805461ff0019166101001790555b611cdc6001600160a01b038316637965db0b60e01b611b6c565b611d1a576040516301a1fdbb60e41b815260206004820152600e60248201526d125058d8d95cdcd0dbdb9d1c9bdb60921b604482015260640161057e565b603380546001600160a01b0319166001600160a01b0384169081179091556040517fa5bc17e575e3b53b23d0e93e121a5a66d1de4d5edb4dfde6027b14d79b7f2b9c90600090a28015610c97576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249890602001611acf565b600054610100900460ff16611e0e5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161057e565b565b60606001600160a01b0384163b611e395760405162461bcd60e51b815260040161057e9061277a565b600080856001600160a01b031685604051611e5491906127c0565b600060405180830381855af49150503d8060008114611e8f576040519150601f19603f3d011682016040523d82523d6000602084013e611e94565b606091505b5091509150611ea48282866120a8565b9695505050505050565b6000611ec1826301ffc9a760e01b611ee1565b801561079f5750611eda826001600160e01b0319611ee1565b1592915050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b179052905160009190829081906001600160a01b0387169061753090611f489086906127c0565b6000604051808303818686fa925050503d8060008114611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b5091509150602081511015611fa4576000935050505061079f565b818015611ea4575080806020019051810190611ea49190612730565b611fc981611b88565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b6120295760405162461bcd60e51b815260040161057e9061277a565b600080846001600160a01b03168460405161204491906127c0565b600060405180830381855af49150503d806000811461207f576040519150601f19603f3d011682016040523d82523d6000602084013e612084565b606091505b509150915061160382826040518060600160405280602781526020016127fd602791395b606083156120b7575081610aed565b8251156120c75782518084602001fd5b8160405162461bcd60e51b815260040161057e919061238f565b803560ff811681146120f257600080fd5b919050565b6001600160a01b03811681146109d357600080fd5b6000806040838503121561211f57600080fd5b612128836120e1565b91506020830135612138816120f7565b809150509250929050565b6000806040838503121561215657600080fd5b61215f836120e1565b946020939093013593505050565b60006020828403121561217f57600080fd5b610aed826120e1565b60008060006040848603121561219d57600080fd5b83356121a8816120f7565b9250602084013567ffffffffffffffff808211156121c557600080fd5b818601915086601f8301126121d957600080fd5b8135818111156121e857600080fd5b8760208285010111156121fa57600080fd5b6020830194508093505050509250925092565b60006020828403121561221f57600080fd5b8135610aed816120f7565b6000806040838503121561223d57600080fd5b8235612128816120f7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561228757612287612248565b604052919050565b600080604083850312156122a257600080fd5b82356122ad816120f7565b915060208381013567ffffffffffffffff808211156122cb57600080fd5b818601915086601f8301126122df57600080fd5b8135818111156122f1576122f1612248565b612303601f8201601f1916850161225e565b9150808252878482850101111561231957600080fd5b80848401858401376000848284010152508093505050509250929050565b60005b8381101561235257818101518382015260200161233a565b838111156108f05750506000910152565b6000815180845261237b816020860160208601612337565b601f01601f19169290920160200192915050565b602081526000610aed6020830184612363565b634e487b7160e01b600052602160045260246000fd5b60208101600583106123da57634e487b7160e01b600052602160045260246000fd5b91905290565b600080602083850312156123f357600080fd5b823567ffffffffffffffff8082111561240b57600080fd5b818501915085601f83011261241f57600080fd5b81358181111561242e57600080fd5b8660208260051b850101111561244357600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156124aa57603f19888603018452612498858351612363565b9450928501929085019060010161247c565b5092979650505050505050565b6000806000606084860312156124cc57600080fd5b6124d5846120e1565b92506020840135915060408401356124ec816120f7565b809150509250925092565b805180151581146120f257600080fd5b60006060828403121561251957600080fd5b6040516060810181811067ffffffffffffffff8211171561253c5761253c612248565b8060405250825181526020830151602082015261255b604084016124f7565b60408201529392505050565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b60006020828403121561261157600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561264157612641612618565b500190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126126c157600080fd5b83018035915067ffffffffffffffff8211156126dc57600080fd5b6020019150368190038213156126f157600080fd5b9250929050565b600060001982141561270c5761270c612618565b5060010190565b60006020828403121561272557600080fd5b8151610aed816120f7565b60006020828403121561274257600080fd5b610aed826124f7565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b600082516127d2818460208701612337565b919091019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122069def5c04a3bc4c4c54d5cffb17dae3479814f5a8200c024f4d0a8e77abf559f64736f6c634300080900330000000000000000000000004cf374988bdb78ba81d59f915612d7d74ef93380
Deployed Bytecode
0x6080604052600436106101815760003560e01c8063882b2917116100d1578063c159f74a1161008a578063d858a7e511610064578063d858a7e5146104cf578063e8051313146104e4578063ebe6f2c414610504578063fb527acd1461052457600080fd5b8063c159f74a1461046f578063c95808041461048f578063cdf50e17146104af57600080fd5b8063882b291714610392578063a290bf38146103c2578063ac9650d8146103e2578063b3b68d8b1461040f578063b471f6861461042f578063c133a5621461044f57600080fd5b80633ac219fb1161013e57806352d1902d1161011857806352d1902d146102c057806354fd4d50146102d557806363ba4ff114610313578063762fa7b71461036557600080fd5b80633ac219fb1461026d578063485cc9551461028d5780634f1ef286146102ad57600080fd5b80631a4bc490146101865780631da10640146101a85780631daa0445146101db5780632d510d781461020d5780633121db1c1461022d5780633659cfe61461024d575b600080fd5b34801561019257600080fd5b506101a66101a136600461210c565b610544565b005b3480156101b457600080fd5b506101c86101c3366004612143565b6106b4565b6040519081526020015b60405180910390f35b3480156101e757600080fd5b506101fb6101f636600461216d565b6107a5565b60405160ff90911681526020016101d2565b34801561021957600080fd5b506101c8610228366004612143565b6107c3565b34801561023957600080fd5b506101a6610248366004612188565b6108af565b34801561025957600080fd5b506101a661026836600461220d565b6108f6565b34801561027957600080fd5b506101c8610288366004612143565b6109d6565b34801561029957600080fd5b506101a66102a836600461222a565b610af4565b6101a66102bb36600461228f565b610bca565b3480156102cc57600080fd5b506101c8610c9b565b3480156102e157600080fd5b5061030660405180604001604052806005815260200164302e312e3160d81b81525081565b6040516101d2919061238f565b34801561031f57600080fd5b5061034d61032e36600461216d565b60ff16600090815261012e60205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016101d2565b34801561037157600080fd5b5061038561038036600461216d565b610d4e565b6040516101d291906123b8565b34801561039e57600080fd5b506103b26103ad366004612143565b610da4565b60405190151581526020016101d2565b3480156103ce57600080fd5b506101c86103dd366004612143565b610e8a565b3480156103ee57600080fd5b506104026103fd3660046123e0565b610f12565b6040516101d29190612455565b34801561041b57600080fd5b506101c861042a366004612143565b611007565b34801561043b57600080fd5b5061034d61044a366004612143565b61109e565b34801561045b57600080fd5b506101fb61046a36600461216d565b611155565b34801561047b57600080fd5b506103b261048a366004612143565b61116b565b34801561049b57600080fd5b506101a66104aa36600461220d565b61124f565b3480156104bb57600080fd5b506101c86104ca366004612143565b611309565b3480156104db57600080fd5b506101a66113a1565b3480156104f057600080fd5b506101c86104ff366004612143565b61142c565b34801561051057600080fd5b506103b261051f3660046124b7565b6114c4565b34801561053057600080fd5b506101a661053f36600461216d565b61160c565b60006105508133611707565b6105875780335b6040516301d4003760e61b815260048101929092526001600160a01b031660248201526044015b60405180910390fd5b8260ff81161580159061059e575060ff8116600114155b80156105ae575060ff8116600214155b80156105be575060ff8116600314155b156105e15760405163c2628c0b60e01b815260ff8216600482015260240161057e565b6001600160a01b0383166106225760405163eac0d38960e01b81526020600482015260076024820152661cdd589a9958dd60ca1b604482015260640161057e565b60ff8416600090815261012e60209081526040918290205482516001600160a01b038088168252909116918101919091527f3e73127b1191c2cf11f01231adb844b8a6cb9b8cc4b56dd347942db02697e7d7910160405180910390a1505060ff91909116600090815261012e6020526040902080546001600160a01b0319166001600160a01b03909216919091179055565b600060016106c184610d4e565b60048111156106d2576106d26123a2565b146106e0575060001961079f565b60ff8316600090815261012e60205260409020546001600160a01b03166107095750600061079f565b60ff8316600090815261012e602052604090819020549051631892b78f60e21b8152600481018490526001600160a01b039091169063624ade3c906024015b60606040518083038186803b15801561076057600080fd5b505afa158015610774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107989190612507565b6020015190505b92915050565b600060ff8216600314156107bb57506002919050565b5060ff919050565b600060026107d084610d4e565b60048111156107e1576107e16123a2565b146107ee5750600061079f565b60ff8316600090815261012e60205260409020546001600160a01b0316610818575060001961079f565b60ff8316600090815261012e602052604090819020549051632104a02b60e21b8152600481018490526001600160a01b039091169063841280ac906024015b60606040518083038186803b15801561086f57600080fd5b505afa158015610883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a79190612507565b519392505050565b7f664245c7af190fec316596e8231f724e8171b1966cfcd124347ac5a66c34f64a6108da8133611707565b6108e5578033610557565b6108f0848484611741565b50505050565b306001600160a01b037f00000000000000000000000098fb54af7f508e83b35d81c65158bc8449128bb916141561093f5760405162461bcd60e51b815260040161057e90612567565b7f00000000000000000000000098fb54af7f508e83b35d81c65158bc8449128bb96001600160a01b03166109886000805160206127dd833981519152546001600160a01b031690565b6001600160a01b0316146109ae5760405162461bcd60e51b815260040161057e906125b3565b6109b781611857565b604080516000808252602082019092526109d39183919061188d565b50565b61012d5460405163dc4653ef60e01b815260ff84166004820152602481018390526000916001600160a01b03169063dc4653ef9060440160206040518083038186803b158015610a2557600080fd5b505afa158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d91906125ff565b61012d5460405163145217e760e31b815260ff86166004820152602481018590526001600160a01b039091169063a290bf389060440160206040518083038186803b158015610aab57600080fd5b505afa158015610abf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae391906125ff565b610aed919061262e565b9392505050565b600054610100900460ff1615808015610b145750600054600160ff909116105b80610b2e5750303b158015610b2e575060005460ff166001145b610b4a5760405162461bcd60e51b815260040161057e90612646565b6000805460ff191660011790558015610b6d576000805461ff0019166101001790555b610b7683611a07565b610b7f82611adb565b8015610bc5576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b306001600160a01b037f00000000000000000000000098fb54af7f508e83b35d81c65158bc8449128bb9161415610c135760405162461bcd60e51b815260040161057e90612567565b7f00000000000000000000000098fb54af7f508e83b35d81c65158bc8449128bb96001600160a01b0316610c5c6000805160206127dd833981519152546001600160a01b031690565b6001600160a01b031614610c825760405162461bcd60e51b815260040161057e906125b3565b610c8b82611857565b610c978282600161188d565b5050565b6000306001600160a01b037f00000000000000000000000098fb54af7f508e83b35d81c65158bc8449128bb91614610d3b5760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000606482015260840161057e565b506000805160206127dd83398151915290565b600060ff821660011415610d6457506001919050565b60ff821660021415610d7857506002919050565b60ff821660031415610d8c57506003919050565b60ff8216610d9c57506004919050565b506000919050565b600060ff831660021480610dbb575060ff83166003145b15610dc85750600161079f565b60ff8316600090815261012e60205260409020546001600160a01b0316610df15750600061079f565b60ff8316600090815261012e602052604090819020549051631892b78f60e21b8152600481018490526001600160a01b039091169063624ade3c9060240160606040518083038186803b158015610e4757600080fd5b505afa158015610e5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7f9190612507565b604001519392505050565b61012d5460405163145217e760e31b815260ff84166004820152602481018390526000916001600160a01b03169063a290bf38906044015b60206040518083038186803b158015610eda57600080fd5b505afa158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aed91906125ff565b60608167ffffffffffffffff811115610f2d57610f2d612248565b604051908082528060200260200182016040528015610f6057816020015b6060815260200190600190039081610f4b5790505b50905060005b8281101561100057610fd030858584818110610f8457610f84612694565b9050602002810190610f9691906126aa565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611b4792505050565b828281518110610fe257610fe2612694565b60200260200101819052508080610ff8906126f8565b915050610f66565b5092915050565b6000600261101484610d4e565b6004811115611025576110256123a2565b146110325750600061079f565b60ff8316600090815261012e60205260409020546001600160a01b031661105b5750600061079f565b60ff8316600090815261012e6020526040908190205490516307246a6960e21b8152600481018490526001600160a01b0390911690631c91a9a490602401610ec2565b60ff8216600090815261012e60205260408120546001600160a01b03166110c75750600061079f565b60ff8316600090815261012e6020526040908190205490516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e9060240160206040518083038186803b15801561111d57600080fd5b505afa158015611131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aed9190612713565b600060ff8216600214156107bb57506003919050565b6000600361117884610d4e565b6004811115611189576111896123a2565b14156111975750600161079f565b60ff8316600090815261012e60205260409020546001600160a01b03166111c05750600061079f565b60ff8316600090815261012e602052604090819020549051630af34d3160e31b8152600481018490526001600160a01b039091169063579a6988906024015b60206040518083038186803b15801561121757600080fd5b505afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aed9190612730565b600061125b8133611707565b611266578033610557565b6112806001600160a01b038316637965db0b60e01b611b6c565b6112be576040516301a1fdbb60e41b815260206004820152600e60248201526d125058d8d95cdcd0dbdb9d1c9bdb60921b604482015260640161057e565b603380546001600160a01b0319166001600160a01b0384169081179091556040517fa5bc17e575e3b53b23d0e93e121a5a66d1de4d5edb4dfde6027b14d79b7f2b9c90600090a25050565b6000600261131684610d4e565b6004811115611327576113276123a2565b14611335575060001961079f565b60ff8316600090815261012e60205260409020546001600160a01b031661135e5750600061079f565b60ff8316600090815261012e602052604090819020549051632104a02b60e21b8152600481018490526001600160a01b039091169063841280ac90602401610748565b6065546001600160a01b03166113ef5760405163eac0d38960e01b81526020600482015260126024820152712fb232b83932b1b0ba32b22fb937baba32b960711b604482015260640161057e565b606580546001600160a01b03191690556040516000907f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc80908290a2565b6000600161143984610d4e565b600481111561144a5761144a6123a2565b146114575750600061079f565b60ff8316600090815261012e60205260409020546001600160a01b0316611481575060001961079f565b60ff8316600090815261012e602052604090819020549051631892b78f60e21b8152600481018490526001600160a01b039091169063624ade3c90602401610857565b6000806114d085610d4e565b905060038160048111156114e6576114e66123a2565b1415801561150657506002816004811115611503576115036123a2565b14155b15611515576000915050610aed565b60ff8516600090815261012e60205260409020546001600160a01b0316611540576000915050610aed565b60ff8516600090815261012e6020526040908190205490516331a9108f60e11b8152600481018690526001600160a01b03858116921690636352211e9060240160206040518083038186803b15801561159857600080fd5b505afa1580156115ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d09190612713565b6001600160a01b03161480611603575060ff8516600090815261012e60205260409020546001600160a01b038481169116145b95945050505050565b60006116188133611707565b611623578033610557565b8160ff81161580159061163a575060ff8116600114155b801561164a575060ff8116600214155b801561165a575060ff8116600314155b1561167d5760405163c2628c0b60e01b815260ff8216600482015260240161057e565b60ff8316600090815261012e602090815260408083205481519384526001600160a01b0316918301919091527f3e73127b1191c2cf11f01231adb844b8a6cb9b8cc4b56dd347942db02697e7d7910160405180910390a1505060ff16600090815261012e6020526040902080546001600160a01b0319169055565b6001600160a01b03163b151590565b603354604051632474521560e21b8152600481018490526001600160a01b03838116602483015260009216906391d14854906044016111ff565b6040516302571be360e01b81527f91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e260048201526001600160a01b038416906302571be39060240160206040518083038186803b1580156117a057600080fd5b505afa1580156117b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d89190612713565b6001600160a01b031663c47f002783836040518363ffffffff1660e01b815260040161180592919061274b565b602060405180830381600087803b15801561181f57600080fd5b505af1158015611833573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f091906125ff565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e36118828133611707565b610c97578033610557565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156118c057610bc583611b88565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156118f957600080fd5b505afa925050508015611929575060408051601f3d908101601f19168201909252611926918101906125ff565b60015b61198c5760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b606482015260840161057e565b6000805160206127dd83398151915281146119fb5760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b606482015260840161057e565b50610bc5838383611c24565b600054610100900460ff1615808015611a275750600054600160ff909116105b80611a415750303b158015611a41575060005460ff166001145b611a5d5760405162461bcd60e51b815260040161057e90612646565b6000805460ff191660011790558015611a80576000805461ff0019166101001790555b611a8982611c49565b611a91611da3565b8015610c97576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15050565b6001600160a01b038116611b245760405163eac0d38960e01b815260206004820152600f60248201526e6e6577466f7274615374616b696e6760881b604482015260640161057e565b61012d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060610aed83836040518060600160405280602781526020016127fd60279139611e10565b6000611b7783611eae565b8015610aed5750610aed8383611ee1565b6001600160a01b0381163b611bf55760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840161057e565b6000805160206127dd83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b611c2d83611fc0565b600082511180611c3a5750805b15610bc5576108f08383612000565b600054610100900460ff1615808015611c695750600054600160ff909116105b80611c835750303b158015611c83575060005460ff166001145b611c9f5760405162461bcd60e51b815260040161057e90612646565b6000805460ff191660011790558015611cc2576000805461ff0019166101001790555b611cdc6001600160a01b038316637965db0b60e01b611b6c565b611d1a576040516301a1fdbb60e41b815260206004820152600e60248201526d125058d8d95cdcd0dbdb9d1c9bdb60921b604482015260640161057e565b603380546001600160a01b0319166001600160a01b0384169081179091556040517fa5bc17e575e3b53b23d0e93e121a5a66d1de4d5edb4dfde6027b14d79b7f2b9c90600090a28015610c97576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249890602001611acf565b600054610100900460ff16611e0e5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b606482015260840161057e565b565b60606001600160a01b0384163b611e395760405162461bcd60e51b815260040161057e9061277a565b600080856001600160a01b031685604051611e5491906127c0565b600060405180830381855af49150503d8060008114611e8f576040519150601f19603f3d011682016040523d82523d6000602084013e611e94565b606091505b5091509150611ea48282866120a8565b9695505050505050565b6000611ec1826301ffc9a760e01b611ee1565b801561079f5750611eda826001600160e01b0319611ee1565b1592915050565b604080516001600160e01b0319831660248083019190915282518083039091018152604490910182526020810180516001600160e01b03166301ffc9a760e01b179052905160009190829081906001600160a01b0387169061753090611f489086906127c0565b6000604051808303818686fa925050503d8060008114611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b5091509150602081511015611fa4576000935050505061079f565b818015611ea4575080806020019051810190611ea49190612730565b611fc981611b88565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b6120295760405162461bcd60e51b815260040161057e9061277a565b600080846001600160a01b03168460405161204491906127c0565b600060405180830381855af49150503d806000811461207f576040519150601f19603f3d011682016040523d82523d6000602084013e612084565b606091505b509150915061160382826040518060600160405280602781526020016127fd602791395b606083156120b7575081610aed565b8251156120c75782518084602001fd5b8160405162461bcd60e51b815260040161057e919061238f565b803560ff811681146120f257600080fd5b919050565b6001600160a01b03811681146109d357600080fd5b6000806040838503121561211f57600080fd5b612128836120e1565b91506020830135612138816120f7565b809150509250929050565b6000806040838503121561215657600080fd5b61215f836120e1565b946020939093013593505050565b60006020828403121561217f57600080fd5b610aed826120e1565b60008060006040848603121561219d57600080fd5b83356121a8816120f7565b9250602084013567ffffffffffffffff808211156121c557600080fd5b818601915086601f8301126121d957600080fd5b8135818111156121e857600080fd5b8760208285010111156121fa57600080fd5b6020830194508093505050509250925092565b60006020828403121561221f57600080fd5b8135610aed816120f7565b6000806040838503121561223d57600080fd5b8235612128816120f7565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561228757612287612248565b604052919050565b600080604083850312156122a257600080fd5b82356122ad816120f7565b915060208381013567ffffffffffffffff808211156122cb57600080fd5b818601915086601f8301126122df57600080fd5b8135818111156122f1576122f1612248565b612303601f8201601f1916850161225e565b9150808252878482850101111561231957600080fd5b80848401858401376000848284010152508093505050509250929050565b60005b8381101561235257818101518382015260200161233a565b838111156108f05750506000910152565b6000815180845261237b816020860160208601612337565b601f01601f19169290920160200192915050565b602081526000610aed6020830184612363565b634e487b7160e01b600052602160045260246000fd5b60208101600583106123da57634e487b7160e01b600052602160045260246000fd5b91905290565b600080602083850312156123f357600080fd5b823567ffffffffffffffff8082111561240b57600080fd5b818501915085601f83011261241f57600080fd5b81358181111561242e57600080fd5b8660208260051b850101111561244357600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156124aa57603f19888603018452612498858351612363565b9450928501929085019060010161247c565b5092979650505050505050565b6000806000606084860312156124cc57600080fd5b6124d5846120e1565b92506020840135915060408401356124ec816120f7565b809150509250925092565b805180151581146120f257600080fd5b60006060828403121561251957600080fd5b6040516060810181811067ffffffffffffffff8211171561253c5761253c612248565b8060405250825181526020830151602082015261255b604084016124f7565b60408201529392505050565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b60006020828403121561261157600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561264157612641612618565b500190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000808335601e198436030181126126c157600080fd5b83018035915067ffffffffffffffff8211156126dc57600080fd5b6020019150368190038213156126f157600080fd5b9250929050565b600060001982141561270c5761270c612618565b5060010190565b60006020828403121561272557600080fd5b8151610aed816120f7565b60006020828403121561274257600080fd5b610aed826124f7565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b600082516127d2818460208701612337565b919091019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122069def5c04a3bc4c4c54d5cffb17dae3479814f5a8200c024f4d0a8e77abf559f64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004cf374988bdb78ba81d59f915612d7d74ef93380
-----Decoded View---------------
Arg [0] : forwarder (address): 0x4cf374988bDb78Ba81D59f915612D7D74ef93380
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004cf374988bdb78ba81d59f915612d7d74ef93380
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.