Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
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:
WithdrawRequestNFT
Compiler Version
v0.8.27+commit.40a35a09
Optimization Enabled:
Yes with 1500 runs
Other Settings:
prague EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin-upgradeable/contracts/token/ERC721/ERC721Upgradeable.sol";
import "@openzeppelin-upgradeable/contracts/proxy/utils/UUPSUpgradeable.sol";
import "@openzeppelin-upgradeable/contracts/access/OwnableUpgradeable.sol";
import "./interfaces/IeETH.sol";
import "./interfaces/ILiquidityPool.sol";
import "./interfaces/IWithdrawRequestNFT.sol";
import "./interfaces/IMembershipManager.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./RoleRegistry.sol";
contract WithdrawRequestNFT is ERC721Upgradeable, UUPSUpgradeable, OwnableUpgradeable, IWithdrawRequestNFT {
using Math for uint256;
using SafeERC20 for IERC20;
uint256 private constant BASIS_POINT_SCALE = 1e4;
// this treasury address is set to ethfi buyback wallet address
address public immutable treasury;
ILiquidityPool public liquidityPool;
IeETH public eETH;
IMembershipManager public membershipManager;
mapping(uint256 => IWithdrawRequestNFT.WithdrawRequest) private _requests;
mapping(address => bool) public DEPRECATED_admins;
uint32 public nextRequestId;
uint32 public lastFinalizedRequestId;
uint16 public shareRemainderSplitToTreasuryInBps;
uint16 public _unused_gap;
// inclusive
uint32 public currentRequestIdToScanFromForShareRemainder;
uint32 public lastRequestIdToScanUntilForShareRemainder;
uint256 public aggregateSumOfEEthShare;
uint256 public totalRemainderEEthShares;
bool public paused;
RoleRegistry public roleRegistry;
bytes32 public constant WITHDRAW_REQUEST_NFT_ADMIN_ROLE = keccak256("WITHDRAW_REQUEST_NFT_ADMIN_ROLE");
bytes32 public constant IMPLICIT_FEE_CLAIMER_ROLE = keccak256("IMPLICIT_FEE_CLAIMER_ROLE");
event WithdrawRequestCreated(uint32 indexed requestId, uint256 amountOfEEth, uint256 shareOfEEth, address owner, uint256 fee);
event WithdrawRequestClaimed(uint32 indexed requestId, uint256 amountOfEEth, uint256 burntShareOfEEth, address owner, uint256 fee);
event WithdrawRequestInvalidated(uint32 indexed requestId);
event WithdrawRequestValidated(uint32 indexed requestId);
event WithdrawRequestSeized(uint32 indexed requestId);
event HandledRemainderOfClaimedWithdrawRequests(uint256 eEthAmountToTreasury, uint256 eEthAmountBurnt);
event Paused(address account);
event Unpaused(address account);
error IncorrectRole();
/// @custom:oz-upgrades-unsafe-allow constructor
constructor(address _treasury) {
treasury = _treasury;
_disableInitializers();
}
function initialize(address _liquidityPoolAddress, address _eEthAddress, address _membershipManagerAddress) initializer external {
require(_liquidityPoolAddress != address(0), "No zero addresses");
require(_eEthAddress != address(0), "No zero addresses");
__ERC721_init("Withdraw Request NFT", "WithdrawRequestNFT");
__Ownable_init();
__UUPSUpgradeable_init();
liquidityPool = ILiquidityPool(_liquidityPoolAddress);
eETH = IeETH(_eEthAddress);
membershipManager = IMembershipManager(_membershipManagerAddress);
nextRequestId = 1;
}
function initializeOnUpgrade(address _roleRegistry, uint16 _shareRemainderSplitToTreasuryInBps) external onlyOwner {
require(address(roleRegistry) == address(0) && _roleRegistry != address(0), "Already initialized");
require(_shareRemainderSplitToTreasuryInBps <= BASIS_POINT_SCALE, "INVALID");
paused = true; // make sure the contract is paused after the upgrade
roleRegistry = RoleRegistry(_roleRegistry);
_unused_gap = 0;
shareRemainderSplitToTreasuryInBps = _shareRemainderSplitToTreasuryInBps;
currentRequestIdToScanFromForShareRemainder = 1;
lastRequestIdToScanUntilForShareRemainder = nextRequestId - 1;
aggregateSumOfEEthShare = 0;
totalRemainderEEthShares = 0;
}
/// @notice creates a withdraw request and issues an associated NFT to the recipient
/// @dev liquidity pool contract will call this function when a user requests withdraw
/// @param amountOfEEth amount of eETH requested for withdrawal
/// @param shareOfEEth share of eETH requested for withdrawal
/// @param recipient address to recieve with WithdrawRequestNFT
/// @param fee fee to be subtracted from amount when recipient calls claimWithdraw
/// @return uint256 id of the withdraw request
function requestWithdraw(uint96 amountOfEEth, uint96 shareOfEEth, address recipient, uint256 fee) external payable onlyLiquidityPool whenNotPaused returns (uint256) {
uint256 requestId = nextRequestId++;
uint32 feeGwei = uint32(fee / 1 gwei);
_requests[requestId] = IWithdrawRequestNFT.WithdrawRequest(amountOfEEth, shareOfEEth, true, feeGwei);
_safeMint(recipient, requestId);
emit WithdrawRequestCreated(uint32(requestId), amountOfEEth, shareOfEEth, recipient, fee);
return requestId;
}
function getClaimableAmount(uint256 tokenId) public view returns (uint256) {
require(tokenId <= lastFinalizedRequestId, "Request is not finalized");
require(ownerOf(tokenId) != address(0), "Already Claimed");
IWithdrawRequestNFT.WithdrawRequest memory request = _requests[tokenId];
// send the lesser value of the originally requested amount of eEth or the current eEth value of the shares
uint256 amountForShares = liquidityPool.amountForShare(request.shareOfEEth);
uint256 amountToTransfer = (request.amountOfEEth < amountForShares) ? request.amountOfEEth : amountForShares;
uint256 fee = uint256(request.feeGwei) * 1 gwei;
return amountToTransfer - fee;
}
/// @notice called by the NFT owner to claim their ETH
/// @dev burns the NFT and transfers ETH from the liquidity pool to the owner minus any fee, withdraw request must be valid and finalized
/// @param tokenId the id of the withdraw request and associated NFT
function claimWithdraw(uint256 tokenId) external whenNotPaused {
return _claimWithdraw(tokenId, ownerOf(tokenId));
}
function _claimWithdraw(uint256 tokenId, address recipient) internal {
require(ownerOf(tokenId) == msg.sender, "Not the owner of the NFT");
IWithdrawRequestNFT.WithdrawRequest memory request = _requests[tokenId];
require(request.isValid, "Request is not valid");
uint256 amountToWithdraw = getClaimableAmount(tokenId);
uint256 shareAmountToBurnForWithdrawal = liquidityPool.sharesForWithdrawalAmount(amountToWithdraw);
// transfer eth to recipient
_burn(tokenId);
delete _requests[tokenId];
// update accounting
totalRemainderEEthShares += request.shareOfEEth - shareAmountToBurnForWithdrawal;
uint256 amountBurnedShare = liquidityPool.withdraw(recipient, amountToWithdraw);
assert (amountBurnedShare == shareAmountToBurnForWithdrawal);
emit WithdrawRequestClaimed(uint32(tokenId), amountToWithdraw, amountBurnedShare, recipient, 0);
}
function batchClaimWithdraw(uint256[] calldata tokenIds) external whenNotPaused {
for (uint256 i = 0; i < tokenIds.length; i++) {
_claimWithdraw(tokenIds[i], ownerOf(tokenIds[i]));
}
}
// This function is used to aggregate the sum of the eEth shares of the requests that have not been claimed yet.
// To be triggered during the upgrade to the new version of the contract.
function aggregateSumEEthShareAmount(uint256 _numReqsToScan) external {
require(!isScanOfShareRemainderCompleted(), "scan is completed");
// [scanFrom, scanUntil]
uint256 scanFrom = currentRequestIdToScanFromForShareRemainder;
uint256 scanUntil = Math.min(lastRequestIdToScanUntilForShareRemainder, scanFrom + _numReqsToScan - 1);
for (uint256 i = scanFrom; i <= scanUntil; i++) {
if (!_exists(i)) continue;
aggregateSumOfEEthShare += _requests[i].shareOfEEth;
}
currentRequestIdToScanFromForShareRemainder = uint32(scanUntil + 1);
// When the scan is completed, update the `totalRemainderEEthShares` and reset the `aggregateSumOfEEthShare`
if (isScanOfShareRemainderCompleted()) {
totalRemainderEEthShares = eETH.shares(address(this)) - aggregateSumOfEEthShare;
aggregateSumOfEEthShare = 0; // gone
}
}
// Seize the request simply by transferring it to another recipient
function seizeInvalidRequest(uint256 requestId, address recipient) external onlyOwner {
require(!_requests[requestId].isValid, "Request is valid");
require(_exists(requestId), "Request does not exist");
_transfer(ownerOf(requestId), recipient, requestId);
emit WithdrawRequestSeized(uint32(requestId));
}
function getRequest(uint256 requestId) external view returns (IWithdrawRequestNFT.WithdrawRequest memory) {
return _requests[requestId];
}
function isFinalized(uint256 requestId) public view returns (bool) {
return requestId <= lastFinalizedRequestId;
}
function isValid(uint256 requestId) public view returns (bool) {
require(_exists(requestId), "Request does not exist");
return _requests[requestId].isValid;
}
function finalizeRequests(uint256 requestId) external onlyAdmin {
require(requestId >= lastFinalizedRequestId, "Cannot undo finalization");
require(requestId < nextRequestId, "Cannot finalize future requests");
lastFinalizedRequestId = uint32(requestId);
}
function invalidateRequest(uint256 requestId) external onlyAdmin {
require(isValid(requestId), "Request is not valid");
_requests[requestId].isValid = false;
emit WithdrawRequestInvalidated(uint32(requestId));
}
function validateRequest(uint256 requestId) external onlyAdmin {
require(_exists(requestId), "Request does not exist");
require(!_requests[requestId].isValid, "Request is valid");
_requests[requestId].isValid = true;
emit WithdrawRequestValidated(uint32(requestId));
}
function updateShareRemainderSplitToTreasuryInBps(uint16 _shareRemainderSplitToTreasuryInBps) external onlyOwner {
require(_shareRemainderSplitToTreasuryInBps <= BASIS_POINT_SCALE, "INVALID");
shareRemainderSplitToTreasuryInBps = _shareRemainderSplitToTreasuryInBps;
}
function pauseContract() external {
if (!roleRegistry.hasRole(roleRegistry.PROTOCOL_PAUSER(), msg.sender)) revert IncorrectRole();
if (paused) revert("Pausable: already paused");
paused = true;
emit Paused(msg.sender);
}
function unPauseContract() external {
require(isScanOfShareRemainderCompleted(), "scan is not completed");
if (!roleRegistry.hasRole(roleRegistry.PROTOCOL_UNPAUSER(), msg.sender)) revert IncorrectRole();
if (!paused) revert("Pausable: not paused");
paused = false;
emit Unpaused(msg.sender);
}
/// @dev Handles the remainder of the eEth shares after the claim of the withdraw request
/// the remainder eETH share for a request = request.shareOfEEth - request.amountOfEEth / (eETH amount to eETH shares rate)
/// - Splits the remainder into two parts:
/// - Treasury: treasury gets a split of the remainder
/// - Burn: the rest of the remainder is burned
/// @param _eEthAmount: the remainder of the eEth amount
function handleRemainder(uint256 _eEthAmount) external {
if(!roleRegistry.hasRole(IMPLICIT_FEE_CLAIMER_ROLE, msg.sender)) revert IncorrectRole();
require(_eEthAmount != 0, "EETH amount cannot be 0");
require(isScanOfShareRemainderCompleted(), "Not all prev requests have been scanned");
require(getEEthRemainderAmount() >= _eEthAmount, "Not enough eETH remainder");
uint256 beforeEEthShares = eETH.shares(address(this));
uint256 eEthAmountToTreasury = _eEthAmount.mulDiv(shareRemainderSplitToTreasuryInBps, BASIS_POINT_SCALE);
uint256 eEthAmountToBurn = _eEthAmount - eEthAmountToTreasury;
uint256 eEthSharesToBurn = liquidityPool.sharesForAmount(eEthAmountToBurn);
uint256 eEthSharesToMoved = eEthSharesToBurn + liquidityPool.sharesForAmount(eEthAmountToTreasury);
totalRemainderEEthShares -= eEthSharesToMoved;
if (eEthAmountToTreasury > 0) IERC20(address(eETH)).safeTransfer(treasury, eEthAmountToTreasury);
if (eEthSharesToBurn > 0) liquidityPool.burnEEthShares(eEthSharesToBurn);
require (beforeEEthShares - eEthSharesToMoved == eETH.shares(address(this)), "Invalid eETH shares after remainder handling");
emit HandledRemainderOfClaimedWithdrawRequests(eEthAmountToTreasury, liquidityPool.amountForShare(eEthSharesToBurn));
}
function getEEthRemainderAmount() public view returns (uint256) {
return liquidityPool.amountForShare(totalRemainderEEthShares);
}
function isScanOfShareRemainderCompleted() public view returns (bool) {
return currentRequestIdToScanFromForShareRemainder == (lastRequestIdToScanUntilForShareRemainder + 1);
}
// the withdraw request NFT is transferrable
// - if the request is valid, it can be transferred by the owner of the NFT
// - if the request is invalid, it can be transferred only by the owner of the WithdarwRequestNFT contract
function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal override {
for (uint256 i = 0; i < batchSize; i++) {
uint256 tokenId = firstTokenId + i;
require(_requests[tokenId].isValid || msg.sender == owner(), "INVALID_REQUEST");
}
}
function _authorizeUpgrade(address newImplementation) internal override onlyOwner {}
function getImplementation() external view returns (address) {
return _getImplementation();
}
function _requireNotPaused() internal view virtual {
require(!paused, "Pausable: paused");
}
modifier onlyAdmin() {
require(roleRegistry.hasRole(WITHDRAW_REQUEST_NFT_ADMIN_ROLE, msg.sender), "Caller is not admin");
_;
}
modifier onlyLiquidityPool() {
require(msg.sender == address(liquidityPool), "Caller is not the liquidity pool");
_;
}
modifier whenNotPaused() {
_requireNotPaused();
_;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721Upgradeable.sol";
import "./IERC721ReceiverUpgradeable.sol";
import "./extensions/IERC721MetadataUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/ContextUpgradeable.sol";
import "../../utils/StringsUpgradeable.sol";
import "../../utils/introspection/ERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable {
using AddressUpgradeable for address;
using StringsUpgradeable for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing {
__ERC721_init_unchained(name_, symbol_);
}
function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) {
return
interfaceId == type(IERC721Upgradeable).interfaceId ||
interfaceId == type(IERC721MetadataUpgradeable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721Upgradeable.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721Upgradeable.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721Upgradeable.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721Upgradeable.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId);
}
/**
* @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, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721ReceiverUpgradeable.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += 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[44] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 the implementation's compatibility when performing an upgrade.
*
* IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
* function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
*/
function proxiableUUID() external view virtual 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: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @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: MIT
pragma solidity ^0.8.13;
interface IeETH {
struct PermitInput {
uint256 value;
uint256 deadline;
uint8 v;
bytes32 r;
bytes32 s;
}
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalShares() external view returns (uint256);
function shares(address _user) external view returns (uint256);
function balanceOf(address _user) external view returns (uint256);
function initialize(address _liquidityPool) external;
function mintShares(address _user, uint256 _share) external;
function burnShares(address _user, uint256 _share) external;
function transferFrom(address _sender, address _recipient, uint256 _amount) external returns (bool);
function transfer(address _recipient, uint256 _amount) external returns (bool);
function approve(address _spender, uint256 _amount) external returns (bool);
function increaseAllowance(address _spender, uint256 _increaseAmount) external returns (bool);
function decreaseAllowance(address _spender, uint256 _decreaseAmount) external returns (bool);
function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "./IStakingManager.sol";
import "./IeETH.sol";
interface ILiquidityPool {
struct PermitInput {
uint256 value;
uint256 deadline;
uint8 v;
bytes32 r;
bytes32 s;
}
enum SourceOfFunds {
UNDEFINED,
EETH,
ETHER_FAN,
DELEGATED_STAKING
}
struct FundStatistics {
uint32 numberOfValidators;
uint32 targetWeight;
}
// Necessary to preserve "statelessness" of dutyForWeek().
// Handles case where new users join/leave holder list during an active slot
struct HoldersUpdate {
uint32 timestamp;
uint32 startOfSlotNumOwners;
}
struct BnftHolder {
address holder;
}
struct ValidatorSpawner {
bool registered;
}
function numPendingDeposits() external view returns (uint32);
function totalValueOutOfLp() external view returns (uint128);
function totalValueInLp() external view returns (uint128);
function getTotalEtherClaimOf(address _user) external view returns (uint256);
function getTotalPooledEther() external view returns (uint256);
function sharesForAmount(uint256 _amount) external view returns (uint256);
function sharesForWithdrawalAmount(uint256 _amount) external view returns (uint256);
function amountForShare(uint256 _share) external view returns (uint256);
function eETH() external view returns (IeETH);
function ethAmountLockedForWithdrawal() external view returns (uint128);
function deposit() external payable returns (uint256);
function deposit(address _referral) external payable returns (uint256);
function deposit(address _user, address _referral) external payable returns (uint256);
function depositToRecipient(address _recipient, uint256 _amount, address _referral) external returns (uint256);
function withdraw(address _recipient, uint256 _amount) external returns (uint256);
function requestWithdraw(address recipient, uint256 amount) external returns (uint256);
function requestWithdrawWithPermit(address _owner, uint256 _amount, PermitInput calldata _permit) external returns (uint256);
function requestMembershipNFTWithdraw(address recipient, uint256 amount, uint256 fee) external returns (uint256);
function batchDeposit(uint256[] calldata _candidateBidIds, uint256 _numberOfValidators) external returns (uint256[] memory);
function batchDeposit(uint256[] calldata _candidateBidIds, uint256 _numberOfValidators, uint256 _validatorIdToCoUseWithdrawalSafe) external returns (uint256[] memory);
function batchRegister(bytes32 _depositRoot, uint256[] calldata _validatorIds, IStakingManager.DepositData[] calldata _registerValidatorDepositData, bytes32[] calldata _depositDataRootApproval, bytes[] calldata _signaturesForApprovalDeposit) external;
function batchApproveRegistration(uint256[] memory _validatorIds, bytes[] calldata _pubKey, bytes[] calldata _signature) external;
function batchCancelDeposit(uint256[] calldata _validatorIds) external;
function sendExitRequests(uint256[] calldata _validatorIds) external;
function registerValidatorSpawner(address _user) external;
function unregisterValidatorSpawner(address _user) external;
function rebase(int128 _accruedRewards) external;
function payProtocolFees(uint128 _protocolFees) external;
function addEthAmountLockedForWithdrawal(uint128 _amount) external;
function pauseContract() external;
function burnEEthShares(uint256 shares) external;
function unPauseContract() external;
function setStakingTargetWeights(uint32 _eEthWeight, uint32 _etherFanWeight) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IWithdrawRequestNFT {
struct WithdrawRequest {
uint96 amountOfEEth;
uint96 shareOfEEth;
bool isValid;
uint32 feeGwei;
}
function initialize(address _liquidityPoolAddress, address _eEthAddress, address _membershipManager) external;
function requestWithdraw(uint96 amountOfEEth, uint96 shareOfEEth, address requester, uint256 fee) external payable returns (uint256);
function claimWithdraw(uint256 requestId) external;
function getRequest(uint256 requestId) external view returns (WithdrawRequest memory);
function isFinalized(uint256 requestId) external view returns (bool);
function invalidateRequest(uint256 requestId) external;
function finalizeRequests(uint256 upperBound) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IMembershipManager {
struct TokenDeposit {
uint128 amounts;
uint128 shares;
}
struct TokenData {
uint96 vaultShare;
uint40 baseLoyaltyPoints;
uint40 baseTierPoints;
uint32 prevPointsAccrualTimestamp;
uint32 prevTopUpTimestamp;
uint8 tier;
uint8 version;
}
// Used for V1
struct TierVault {
uint128 totalPooledEEthShares; // total share of eEth in the tier vault
uint128 totalVaultShares; // total share of the tier vault
}
// Used for V0
struct TierDeposit {
uint128 amounts; // total pooled eth amount
uint128 shares; // total pooled eEth shares
}
struct TierData {
uint96 rewardsGlobalIndex;
uint40 requiredTierPoints;
uint24 weight;
uint96 __gap;
}
// State-changing functions
function wrapEthForEap(uint256 _amount, uint256 _amountForPoint, uint32 _eapDepositBlockNumber, uint256 _snapshotEthAmount, uint256 _points, bytes32[] calldata _merkleProof) external payable returns (uint256);
function wrapEth(uint256 _amount, uint256 _amountForPoint) external payable returns (uint256);
function wrapEth(uint256 _amount, uint256 _amountForPoint, address _referral) external payable returns (uint256);
function topUpDepositWithEth(uint256 _tokenId, uint128 _amount, uint128 _amountForPoints) external payable;
function requestWithdraw(uint256 _tokenId, uint256 _amount) external returns (uint256);
function requestWithdrawAndBurn(uint256 _tokenId) external returns (uint256);
function claim(uint256 _tokenId) external;
function migrateFromV0ToV1(uint256 _tokenId) external;
// Getter functions
function tokenDeposits(uint256) external view returns (uint128, uint128);
function tokenData(uint256) external view returns (uint96, uint40, uint40, uint32, uint32, uint8, uint8);
function tierDeposits(uint256) external view returns (uint128, uint128);
function tierData(uint256) external view returns (uint96, uint40, uint24, uint96);
function rewardsGlobalIndex(uint8 _tier) external view returns (uint256);
function allTimeHighDepositAmount(uint256 _tokenId) external view returns (uint256);
function tierForPoints(uint40 _tierPoints) external view returns (uint8);
function canTopUp(uint256 _tokenId, uint256 _totalAmount, uint128 _amount, uint128 _amountForPoints) external view returns (bool);
function pointsBoostFactor() external view returns (uint16);
function pointsGrowthRate() external view returns (uint16);
function maxDepositTopUpPercent() external view returns (uint8);
function numberOfTiers() external view returns (uint8);
function getImplementation() external view returns (address);
function minimumAmountForMint() external view returns (uint256);
function eEthShareForVaultShare(uint8 _tier, uint256 _vaultShare) external view returns (uint256);
function vaultShareForEEthShare(uint8 _tier, uint256 _eEthShare) external view returns (uint256);
function ethAmountForVaultShare(uint8 _tier, uint256 _vaultShare) external view returns (uint256);
function vaultShareForEthAmount(uint8 _tier, uint256 _ethAmount) external view returns (uint256);
// only Owner
function initializeOnUpgrade(address _etherFiAdminAddress, uint256 _fanBoostThresholdAmount, uint16 _burnFeeWaiverPeriodInDays) external;
function setWithdrawalLockBlocks(uint32 _blocks) external;
function updatePointsParams(uint16 _newPointsBoostFactor, uint16 _newPointsGrowthRate) external;
function rebase(int128 _accruedRewards) external;
function addNewTier(uint40 _requiredTierPoints, uint24 _weight) external;
function updateTier(uint8 _tier, uint40 _requiredTierPoints, uint24 _weight) external;
function setPoints(uint256 _tokenId, uint40 _loyaltyPoints, uint40 _tierPoints) external;
function setDepositAmountParams(uint56 _minDepositGwei, uint8 _maxDepositTopUpPercent) external;
function setTopUpCooltimePeriod(uint32 _newWaitTime) external;
function updateAdmin(address _address, bool _isAdmin) external;
function pauseContract() external;
function unPauseContract() external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {Ownable2StepUpgradeable} from "@openzeppelin-upgradeable/contracts/access/Ownable2StepUpgradeable.sol";
import {UUPSUpgradeable, Initializable} from "@openzeppelin-upgradeable/contracts/proxy/utils/UUPSUpgradeable.sol";
import {EnumerableRoles} from "solady/auth/EnumerableRoles.sol";
/// @title RoleRegistry - An upgradeable role-based access control system
/// @notice Provides functionality for managing and querying roles with enumeration capabilities
/// @dev Implements UUPS upgradeability pattern and uses Solady's EnumerableRoles for efficient role management
/// @author EtherFi
contract RoleRegistry is Initializable, Ownable2StepUpgradeable, UUPSUpgradeable, EnumerableRoles {
bytes32 public constant PROTOCOL_PAUSER = keccak256("PROTOCOL_PAUSER");
bytes32 public constant PROTOCOL_UNPAUSER = keccak256("PROTOCOL_UNPAUSER");
error OnlyProtocolUpgrader();
/// @notice Returns the maximum allowed role value
/// @dev This is used by EnumerableRoles._validateRole to ensure roles are within valid range
/// @return uint256 The maximum role value
function MAX_ROLE() public pure returns (uint256) {
return type(uint256).max;
}
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
function initialize(address _owner) public initializer {
__Ownable2Step_init();
__UUPSUpgradeable_init();
_transferOwnership(_owner);
}
/// @notice Checks if an account has any of the specified roles
/// @dev Reverts if the account doesn't have at least one of the roles
/// @param account The address to check roles for
/// @param encodedRoles ABI encoded roles (abi.encode(ROLE_1, ROLE_2, ...))
function checkRoles(address account, bytes memory encodedRoles) public view {
if (!_hasAnyRoles(account, encodedRoles)) __revertEnumerableRolesUnauthorized();
}
/// @notice Checks if an account has a specific role
/// @param role The role to check (as bytes32)
/// @param account The address to check the role for
/// @return bool True if the account has the role, false otherwise
function hasRole(bytes32 role, address account) public view returns (bool) {
return hasRole(account, uint256(role));
}
/// @notice Grants a role to an account
/// @dev Only callable by the contract owner (handled in setRole function)
/// @param role The role to grant (as bytes32)
/// @param account The address to grant the role to
function grantRole(bytes32 role, address account) public {
setRole(account, uint256(role), true);
}
/// @notice Revokes a role from an account
/// @dev Only callable by the contract owner (handled in setRole function)
/// @param role The role to revoke (as bytes32)
/// @param account The address to revoke the role from
function revokeRole(bytes32 role, address account) public {
setRole(account, uint256(role), false);
}
/// @notice Gets all addresses that have a specific role
/// @dev Wrapper around EnumerableRoles roleHolders function converting bytes32 to uint256
/// @param role The role to query (as bytes32)
/// @return address[] Array of addresses that have the specified role
function roleHolders(bytes32 role) public view returns (address[] memory) {
return roleHolders(uint256(role));
}
function onlyProtocolUpgrader(address account) public view {
if (owner() != account) revert OnlyProtocolUpgrader();
}
function __revertEnumerableRolesUnauthorized() private pure {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, 0x99152cca) // `EnumerableRolesUnauthorized()`.
revert(0x1c, 0x04)
}
}
function _authorizeUpgrade(address newImplementation) internal override onlyOwner {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165Upgradeable.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721Upgradeable is IERC165Upgradeable {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721ReceiverUpgradeable {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721Upgradeable.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721MetadataUpgradeable is IERC721Upgradeable {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library 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 functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
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 (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/MathUpgradeable.sol";
/**
* @dev String operations.
*/
library StringsUpgradeable {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = MathUpgradeable.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, MathUpgradeable.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}// SPDX-License-Identifier: MIT
// 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.8.1) (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.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
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.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
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.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// 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 (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
pragma solidity ^0.8.13;
import "./ILiquidityPool.sol";
interface IStakingManager {
struct DepositData {
bytes publicKey;
bytes signature;
bytes32 depositDataRoot;
string ipfsHashForEncryptedValidatorKey;
}
struct StakerInfo {
address staker;
ILiquidityPool.SourceOfFunds sourceOfFund;
}
function bidIdToStaker(uint256 id) external view returns (address);
function getEtherFiNodeBeacon() external view returns (address);
function initialize(address _auctionAddress, address _depositContractAddress) external;
function setEtherFiNodesManagerAddress(address _managerAddress) external;
function setLiquidityPoolAddress(address _liquidityPoolAddress) external;
function batchDepositWithBidIds(uint256[] calldata _candidateBidIds, uint256 _numberOfValidators, address _staker, address _tnftHolder, address _bnftHolder, ILiquidityPool.SourceOfFunds source, bool _enableRestaking, uint256 _validatorIdToCoUseWithdrawalSafe) external returns (uint256[] memory);
function batchDepositWithBidIds(uint256[] calldata _candidateBidIds, bool _enableRestaking) external payable returns (uint256[] memory);
function batchRegisterValidators(bytes32 _depositRoot, uint256[] calldata _validatorId, DepositData[] calldata _depositData) external;
function batchRegisterValidators(bytes32 _depositRoot, uint256[] calldata _validatorId, address _bNftRecipient, address _tNftRecipient, DepositData[] calldata _depositData, address _user) external payable;
function batchApproveRegistration(uint256[] memory _validatorId, bytes[] calldata _pubKey, bytes[] calldata _signature, bytes32[] calldata _depositDataRootApproval) external payable;
function batchCancelDeposit(uint256[] calldata _validatorIds) external;
function batchCancelDepositAsBnftHolder(uint256[] calldata _validatorIds, address _caller) external;
function instantiateEtherFiNode(bool _createEigenPod) external returns (address);
function updateAdmin(address _address, bool _isAdmin) external;
function pauseContract() external;
function unPauseContract() external;
}// 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 v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)
pragma solidity ^0.8.0;
import "./OwnableUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership} and {acceptOwnership}.
*
* This module is used through inheritance. It will make available all functions
* from parent (Ownable).
*/
abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable {
function __Ownable2Step_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable2Step_init_unchained() internal onlyInitializing {
}
address private _pendingOwner;
event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);
/**
* @dev Returns the address of the pending owner.
*/
function pendingOwner() public view virtual returns (address) {
return _pendingOwner;
}
/**
* @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual override onlyOwner {
_pendingOwner = newOwner;
emit OwnershipTransferStarted(owner(), newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual override {
delete _pendingOwner;
super._transferOwnership(newOwner);
}
/**
* @dev The new owner accepts the ownership transfer.
*/
function acceptOwnership() external {
address sender = _msgSender();
require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
_transferOwnership(sender);
}
/**
* @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: MIT
pragma solidity ^0.8.4;
/// @notice Enumerable multiroles authorization mixin.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/auth/EnumerableRoles.sol)
///
/// @dev Note:
/// This implementation is agnostic to the Ownable that the contract inherits from.
/// It performs a self-staticcall to the `owner()` function to determine the owner.
/// This is useful for situations where the contract inherits from
/// OpenZeppelin's Ownable, such as in LayerZero's OApp contracts.
///
/// This implementation performs a self-staticcall to `MAX_ROLE()` to determine
/// the maximum role that can be set/unset. If the inheriting contract does not
/// have `MAX_ROLE()`, then any role can be set/unset.
///
/// This implementation allows for any uint256 role,
/// it does NOT take in a bitmask of roles.
/// This is to accommodate teams that are allergic to bitwise flags.
///
/// By default, the `owner()` is the only account that is authorized to set roles.
/// This behavior can be changed via overrides.
///
/// This implementation is compatible with any Ownable.
/// This implementation is NOT compatible with OwnableRoles.
abstract contract EnumerableRoles {
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* EVENTS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev The status of `role` for `holder` has been set to `active`.
event RoleSet(address indexed holder, uint256 indexed role, bool indexed active);
/// @dev `keccak256(bytes("RoleSet(address,uint256,bool)"))`.
uint256 private constant _ROLE_SET_EVENT_SIGNATURE =
0xaddc47d7e02c95c00ec667676636d772a589ffbf0663cfd7cd4dd3d4758201b8;
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* CUSTOM ERRORS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev The index is out of bounds of the role holders array.
error RoleHoldersIndexOutOfBounds();
/// @dev Cannot set the role of the zero address.
error RoleHolderIsZeroAddress();
/// @dev The role has exceeded the maximum role.
error InvalidRole();
/// @dev Unauthorized to perform the action.
error EnumerableRolesUnauthorized();
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* STORAGE */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev The storage layout of the holders enumerable mapping is given by:
/// ```
/// mstore(0x18, holder)
/// mstore(0x04, _ENUMERABLE_ROLES_SLOT_SEED)
/// mstore(0x00, role)
/// let rootSlot := keccak256(0x00, 0x24)
/// let positionSlot := keccak256(0x00, 0x38)
/// let holderSlot := add(rootSlot, sload(positionSlot))
/// let holderInStorage := shr(96, sload(holderSlot))
/// let length := shr(160, shl(160, sload(rootSlot)))
/// ```
uint256 private constant _ENUMERABLE_ROLES_SLOT_SEED = 0xee9853bb;
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* PUBLIC UPDATE FUNCTIONS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev Sets the status of `role` of `holder` to `active`.
function setRole(address holder, uint256 role, bool active) public payable virtual {
_authorizeSetRole(holder, role, active);
_setRole(holder, role, active);
}
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* PUBLIC READ FUNCTIONS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev Returns if `holder` has active `role`.
function hasRole(address holder, uint256 role) public view virtual returns (bool result) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x18, holder)
mstore(0x04, _ENUMERABLE_ROLES_SLOT_SEED)
mstore(0x00, role)
result := iszero(iszero(sload(keccak256(0x00, 0x38))))
}
}
/// @dev Returns an array of the holders of `role`.
function roleHolders(uint256 role) public view virtual returns (address[] memory result) {
/// @solidity memory-safe-assembly
assembly {
result := mload(0x40)
mstore(0x04, _ENUMERABLE_ROLES_SLOT_SEED)
mstore(0x00, role)
let rootSlot := keccak256(0x00, 0x24)
let rootPacked := sload(rootSlot)
let n := shr(160, shl(160, rootPacked))
let o := add(0x20, result)
mstore(o, shr(96, rootPacked))
for { let i := 1 } lt(i, n) { i := add(i, 1) } {
mstore(add(o, shl(5, i)), shr(96, sload(add(rootSlot, i))))
}
mstore(result, n)
mstore(0x40, add(o, shl(5, n)))
}
}
/// @dev Returns the total number of holders of `role`.
function roleHolderCount(uint256 role) public view virtual returns (uint256 result) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x04, _ENUMERABLE_ROLES_SLOT_SEED)
mstore(0x00, role)
result := shr(160, shl(160, sload(keccak256(0x00, 0x24))))
}
}
/// @dev Returns the holder of `role` at the index `i`.
function roleHolderAt(uint256 role, uint256 i) public view virtual returns (address result) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x04, _ENUMERABLE_ROLES_SLOT_SEED)
mstore(0x00, role)
let rootSlot := keccak256(0x00, 0x24)
let rootPacked := sload(rootSlot)
if iszero(lt(i, shr(160, shl(160, rootPacked)))) {
mstore(0x00, 0x5694da8e) // `RoleHoldersIndexOutOfBounds()`.
revert(0x1c, 0x04)
}
result := shr(96, rootPacked)
if i { result := shr(96, sload(add(rootSlot, i))) }
}
}
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* INTERNAL FUNCTIONS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev Set the role for holder directly without authorization guard.
function _setRole(address holder, uint256 role, bool active) internal virtual {
_validateRole(role);
/// @solidity memory-safe-assembly
assembly {
let holder_ := shl(96, holder)
if iszero(holder_) {
mstore(0x00, 0x82550143) // `RoleHolderIsZeroAddress()`.
revert(0x1c, 0x04)
}
mstore(0x18, holder)
mstore(0x04, _ENUMERABLE_ROLES_SLOT_SEED)
mstore(0x00, role)
let rootSlot := keccak256(0x00, 0x24)
let n := shr(160, shl(160, sload(rootSlot)))
let positionSlot := keccak256(0x00, 0x38)
let position := sload(positionSlot)
for {} 1 {} {
if iszero(active) {
if iszero(position) { break }
let nSub := sub(n, 1)
if iszero(eq(sub(position, 1), nSub)) {
let lastHolder_ := shl(96, shr(96, sload(add(rootSlot, nSub))))
sstore(add(rootSlot, sub(position, 1)), lastHolder_)
sstore(add(rootSlot, nSub), 0)
mstore(0x24, lastHolder_)
sstore(keccak256(0x00, 0x38), position)
}
sstore(rootSlot, or(shl(96, shr(96, sload(rootSlot))), nSub))
sstore(positionSlot, 0)
break
}
if iszero(position) {
sstore(add(rootSlot, n), holder_)
sstore(positionSlot, add(n, 1))
sstore(rootSlot, add(sload(rootSlot), 1))
}
break
}
// forgefmt: disable-next-item
log4(0x00, 0x00, _ROLE_SET_EVENT_SIGNATURE, shr(96, holder_), role, iszero(iszero(active)))
}
}
/// @dev Requires the role is not greater than `MAX_ROLE()`.
/// If `MAX_ROLE()` is not implemented, this is an no-op.
function _validateRole(uint256 role) internal view virtual {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, 0xd24f19d5) // `MAX_ROLE()`.
if and(
and(gt(role, mload(0x00)), gt(returndatasize(), 0x1f)),
staticcall(gas(), address(), 0x1c, 0x04, 0x00, 0x20)
) {
mstore(0x00, 0xd954416a) // `InvalidRole()`.
revert(0x1c, 0x04)
}
}
}
/// @dev Checks that the caller is authorized to set the role.
function _authorizeSetRole(address holder, uint256 role, bool active) internal virtual {
if (!_enumerableRolesSenderIsContractOwner()) _revertEnumerableRolesUnauthorized();
// Silence compiler warning on unused variables.
(holder, role, active) = (holder, role, active);
}
/// @dev Returns if `holder` has any roles in `encodedRoles`.
/// `encodedRoles` is `abi.encode(SAMPLE_ROLE_0, SAMPLE_ROLE_1, ...)`.
function _hasAnyRoles(address holder, bytes memory encodedRoles)
internal
view
virtual
returns (bool result)
{
/// @solidity memory-safe-assembly
assembly {
mstore(0x18, holder)
mstore(0x04, _ENUMERABLE_ROLES_SLOT_SEED)
let end := add(encodedRoles, shl(5, shr(5, mload(encodedRoles))))
for {} lt(result, lt(encodedRoles, end)) {} {
encodedRoles := add(0x20, encodedRoles)
mstore(0x00, mload(encodedRoles))
result := sload(keccak256(0x00, 0x38))
}
result := iszero(iszero(result))
}
}
/// @dev Reverts if `msg.sender` does not have `role`.
function _checkRole(uint256 role) internal view virtual {
if (!hasRole(msg.sender, role)) _revertEnumerableRolesUnauthorized();
}
/// @dev Reverts if `msg.sender` does not have any role in `encodedRoles`.
function _checkRoles(bytes memory encodedRoles) internal view virtual {
if (!_hasAnyRoles(msg.sender, encodedRoles)) _revertEnumerableRolesUnauthorized();
}
/// @dev Reverts if `msg.sender` is not the contract owner and does not have `role`.
function _checkOwnerOrRole(uint256 role) internal view virtual {
if (!_enumerableRolesSenderIsContractOwner()) _checkRole(role);
}
/// @dev Reverts if `msg.sender` is not the contract owner and
/// does not have any role in `encodedRoles`.
function _checkOwnerOrRoles(bytes memory encodedRoles) internal view virtual {
if (!_enumerableRolesSenderIsContractOwner()) _checkRoles(encodedRoles);
}
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* MODIFIERS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev Marks a function as only callable by an account with `role`.
modifier onlyRole(uint256 role) virtual {
_checkRole(role);
_;
}
/// @dev Marks a function as only callable by an account with any role in `encodedRoles`.
/// `encodedRoles` is `abi.encode(SAMPLE_ROLE_0, SAMPLE_ROLE_1, ...)`.
modifier onlyRoles(bytes memory encodedRoles) virtual {
_checkRoles(encodedRoles);
_;
}
/// @dev Marks a function as only callable by the owner or by an account with `role`.
modifier onlyOwnerOrRole(uint256 role) virtual {
_checkOwnerOrRole(role);
_;
}
/// @dev Marks a function as only callable by the owner or
/// by an account with any role in `encodedRoles`.
/// Checks for ownership first, then checks for roles.
/// `encodedRoles` is `abi.encode(SAMPLE_ROLE_0, SAMPLE_ROLE_1, ...)`.
modifier onlyOwnerOrRoles(bytes memory encodedRoles) virtual {
_checkOwnerOrRoles(encodedRoles);
_;
}
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* PRIVATE HELPERS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev Returns if the `msg.sender` is equal to `owner()` on this contract.
/// If the contract does not have `owner()` implemented, returns false.
function _enumerableRolesSenderIsContractOwner() private view returns (bool result) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, 0x8da5cb5b) // `owner()`.
result :=
and(
and(eq(caller(), mload(0x00)), gt(returndatasize(), 0x1f)),
staticcall(gas(), address(), 0x1c, 0x04, 0x00, 0x20)
)
}
}
/// @dev Reverts with `EnumerableRolesUnauthorized()`.
function _revertEnumerableRolesUnauthorized() private pure {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, 0x99152cca) // `EnumerableRolesUnauthorized()`.
revert(0x1c, 0x04)
}
}
}// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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
}
}
}{
"remappings": [
"forge-std/=lib/forge-std/src/",
"@openzeppelin/=lib/openzeppelin-contracts/",
"@openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"@uniswap/=lib/",
"@eigenlayer/=lib/eigenlayer-contracts/src/",
"@layerzerolabs/lz-evm-oapp-v2/contracts/=lib/Etherfi-SyncPools/node_modules/@layerzerolabs/lz-evm-oapp-v2/contracts/",
"@layerzerolabs/lz-evm-protocol-v2/contracts/=lib/Etherfi-SyncPools/node_modules/@layerzerolabs/lz-evm-protocol-v2/contracts/",
"@layerzerolabs/lz-evm-messagelib-v2/contracts/=lib/Etherfi-SyncPools/node_modules/@layerzerolabs/lz-evm-messagelib-v2/contracts/",
"@layerzerolabs/lz-evm-oapp-v2/contracts-upgradeable/=lib/Etherfi-SyncPools/node_modules/layerzero-v2/oapp/contracts/",
"ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/",
"openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"solady/=lib/solady/src/",
"v3-core/=lib/v3-core/",
"v3-periphery/=lib/v3-periphery/contracts/"
],
"optimizer": {
"enabled": true,
"runs": 1500
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "none",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "prague",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"IncorrectRole","type":"error"},{"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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"eEthAmountToTreasury","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"eEthAmountBurnt","type":"uint256"}],"name":"HandledRemainderOfClaimedWithdrawRequests","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"requestId","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amountOfEEth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burntShareOfEEth","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"WithdrawRequestClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"requestId","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"amountOfEEth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shareOfEEth","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"WithdrawRequestCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"requestId","type":"uint32"}],"name":"WithdrawRequestInvalidated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"requestId","type":"uint32"}],"name":"WithdrawRequestSeized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint32","name":"requestId","type":"uint32"}],"name":"WithdrawRequestValidated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DEPRECATED_admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IMPLICIT_FEE_CLAIMER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAW_REQUEST_NFT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_unused_gap","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numReqsToScan","type":"uint256"}],"name":"aggregateSumEEthShareAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"aggregateSumOfEEthShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"batchClaimWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentRequestIdToScanFromForShareRemainder","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eETH","outputs":[{"internalType":"contract IeETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"finalizeRequests","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getClaimableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEEthRemainderAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"getRequest","outputs":[{"components":[{"internalType":"uint96","name":"amountOfEEth","type":"uint96"},{"internalType":"uint96","name":"shareOfEEth","type":"uint96"},{"internalType":"bool","name":"isValid","type":"bool"},{"internalType":"uint32","name":"feeGwei","type":"uint32"}],"internalType":"struct IWithdrawRequestNFT.WithdrawRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eEthAmount","type":"uint256"}],"name":"handleRemainder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPoolAddress","type":"address"},{"internalType":"address","name":"_eEthAddress","type":"address"},{"internalType":"address","name":"_membershipManagerAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_roleRegistry","type":"address"},{"internalType":"uint16","name":"_shareRemainderSplitToTreasuryInBps","type":"uint16"}],"name":"initializeOnUpgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"invalidateRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"isFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isScanOfShareRemainderCompleted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastFinalizedRequestId","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRequestIdToScanUntilForShareRemainder","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"contract ILiquidityPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"membershipManager","outputs":[{"internalType":"contract IMembershipManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextRequestId","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"amountOfEEth","type":"uint96"},{"internalType":"uint96","name":"shareOfEEth","type":"uint96"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"requestWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"roleRegistry","outputs":[{"internalType":"contract RoleRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"seizeInvalidRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareRemainderSplitToTreasuryInBps","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRemainderEEthShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unPauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_shareRemainderSplitToTreasuryInBps","type":"uint16"}],"name":"updateShareRemainderSplitToTreasuryInBps","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":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"name":"validateRequest","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405230608052348015610013575f5ffd5b5060405161545d38038061545d8339810160408190526100329161010a565b6001600160a01b03811660a05261004761004d565b50610137565b5f54610100900460ff16156100b85760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b5f5460ff9081161015610108575f805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b5f6020828403121561011a575f5ffd5b81516001600160a01b0381168114610130575f5ffd5b9392505050565b60805160a0516152e261017b5f395f818161063b0152612ab001525f8181611211015281816112a70152818161157201528181611608015261170201526152e25ff3fe608060405260043610610366575f3560e01c8063715018a6116101c8578063c87b56dd116100fd578063e27d067b1161009d578063f577a5001161006d578063f577a50014610b2c578063f8a025b414610b4b578063fc00a93714610b6a578063fc6dfe4e14610b8e575f5ffd5b8063e27d067b14610a87578063e985e9c514610aa6578063ee30511614610aed578063f2fde38b14610b0d575f5ffd5b8063d416eecd116100d8578063d416eecd14610a10578063d908bb2714610a26578063d966b2da14610a4f578063e0b62cf714610a63575f5ffd5b8063c87b56dd1461099f578063cf54278e146109be578063d2051277146109f1575f5ffd5b8063b13acedd11610168578063bac1520311610143578063bac152031461083b578063c02eda9e1461084f578063c0c53b8b14610882578063c58343ef146108a1575f5ffd5b8063b13acedd146107de578063b88d4fde146107fd578063b99071741461081c575f5ffd5b80638da5cb5b116101a35780638da5cb5b1461077a57806395d89b4114610797578063a22cb465146107ab578063aaf10f42146107ca575f5ffd5b8063715018a6146107315780637452bc40146107455780637d8ca2421461075b575f5ffd5b80634f1ef2861161029e57806361d027b31161023e578063667a739e11610219578063667a739e1461069c57806366eb8b19146106d65780636a84a985146106f557806370a0823114610712575f5ffd5b806361d027b31461062a5780636352211e1461065d578063665a11ca1461067c575f5ffd5b8063554e34f711610279578063554e34f7146105a3578063574465de146105c25780635c975abb146105d657806361c90e0e146105f0575f5ffd5b80634f1ef2861461055d57806352d1902d146105705780635476857114610584575f5ffd5b806319691cb01161030957806333727c4d116102e457806333727c4d146104da5780633659cfe61461050b57806342842e0e1461052a578063439766ce14610549575f5ffd5b806319691cb01461047b57806323b872dd1461049c57806324fccdcf146104bb575f5ffd5b806308c732591161034457806308c73259146103f6578063095ea7b31461041b5780630de371e21461043c578063105a66951461045c575f5ffd5b806301ffc9a71461036a57806306fdde031461039e578063081812fc146103bf575b5f5ffd5b348015610375575f5ffd5b50610389610384366004614b4e565b610bbd565b60405190151581526020015b60405180910390f35b3480156103a9575f5ffd5b506103b2610c59565b6040516103959190614b97565b3480156103ca575f5ffd5b506103de6103d9366004614ba9565b610ce9565b6040516001600160a01b039091168152602001610395565b348015610401575f5ffd5b50610135546103de9061010090046001600160a01b031681565b348015610426575f5ffd5b5061043a610435366004614bdb565b610d0e565b005b348015610447575f5ffd5b5061012e546103de906001600160a01b031681565b348015610467575f5ffd5b5061043a610476366004614c14565b610e60565b61048e610489366004614c48565b610f00565b604051908152602001610395565b3480156104a7575f5ffd5b5061043a6104b6366004614c90565b611124565b3480156104c6575f5ffd5b5061043a6104d5366004614cca565b6111ab565b3480156104e5575f5ffd5b506103896104f4366004614ba9565b61013254640100000000900463ffffffff16101590565b348015610516575f5ffd5b5061043a610525366004614d3b565b611207565b348015610535575f5ffd5b5061043a610544366004614c90565b6113a3565b348015610554575f5ffd5b5061043a6113bd565b61043a61056b366004614df3565b611568565b34801561057b575f5ffd5b5061048e6116f6565b34801561058f575f5ffd5b5061043a61059e366004614ba9565b6117ba565b3480156105ae575f5ffd5b5061043a6105bd366004614e3e565b61197d565b3480156105cd575f5ffd5b50610389611a95565b3480156105e1575f5ffd5b50610135546103899060ff1681565b3480156105fb575f5ffd5b50610132546106179068010000000000000000900461ffff1681565b60405161ffff9091168152602001610395565b348015610635575f5ffd5b506103de7f000000000000000000000000000000000000000000000000000000000000000081565b348015610668575f5ffd5b506103de610677366004614ba9565b611ace565b348015610687575f5ffd5b5061012d546103de906001600160a01b031681565b3480156106a7575f5ffd5b50610132546106c190640100000000900463ffffffff1681565b60405163ffffffff9091168152602001610395565b3480156106e1575f5ffd5b5061043a6106f0366004614ba9565b611b32565b348015610700575f5ffd5b50610132546106c19063ffffffff1681565b34801561071d575f5ffd5b5061048e61072c366004614d3b565b611cfb565b34801561073c575f5ffd5b5061043a611d93565b348015610750575f5ffd5b5061048e6101335481565b348015610766575f5ffd5b5061048e610775366004614ba9565b611da6565b348015610785575f5ffd5b5060fb546001600160a01b03166103de565b3480156107a2575f5ffd5b506103b2611f99565b3480156107b6575f5ffd5b5061043a6107c5366004614e75565b611fa8565b3480156107d5575f5ffd5b506103de611fb3565b3480156107e9575f5ffd5b5061043a6107f8366004614ba9565b611fea565b348015610808575f5ffd5b5061043a610817366004614eaa565b611fff565b348015610827575f5ffd5b5061043a610836366004614ba9565b61208d565b348015610846575f5ffd5b5061043a612227565b34801561085a575f5ffd5b5061048e7f4fb62203ff7abbe51d8c53865ac09965620ebfa150bfb9e0d3c26869f5c4393581565b34801561088d575f5ffd5b5061043a61089c366004614f0e565b61241c565b3480156108ac575f5ffd5b506109446108bb366004614ba9565b604080516080810182525f808252602082018190529181018290526060810191909152505f9081526101306020908152604091829020825160808101845290546bffffffffffffffffffffffff8082168352600160601b82041692820192909252600160c01b820460ff16151592810192909252600160c81b900463ffffffff16606082015290565b60405161039591905f6080820190506bffffffffffffffffffffffff83511682526bffffffffffffffffffffffff602084015116602083015260408301511515604083015263ffffffff606084015116606083015292915050565b3480156109aa575f5ffd5b506103b26109b9366004614ba9565b6126b1565b3480156109c9575f5ffd5b5061048e7fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a81565b3480156109fc575f5ffd5b5061043a610a0b366004614ba9565b612721565b348015610a1b575f5ffd5b5061048e6101345481565b348015610a31575f5ffd5b5061013254610617906a0100000000000000000000900461ffff1681565b348015610a5a575f5ffd5b5061048e612ce7565b348015610a6e575f5ffd5b50610132546106c190600160601b900463ffffffff1681565b348015610a92575f5ffd5b5061043a610aa1366004614ba9565b612d58565b348015610ab1575f5ffd5b50610389610ac0366004614f4e565b6001600160a01b039182165f908152606a6020908152604080832093909416825291909152205460ff1690565b348015610af8575f5ffd5b5061012f546103de906001600160a01b031681565b348015610b18575f5ffd5b5061043a610b27366004614d3b565b612f6c565b348015610b37575f5ffd5b50610389610b46366004614ba9565b612ff9565b348015610b56575f5ffd5b5061043a610b65366004614f76565b613079565b348015610b75575f5ffd5b50610132546106c190600160801b900463ffffffff1681565b348015610b99575f5ffd5b50610389610ba8366004614d3b565b6101316020525f908152604090205460ff1681565b5f6001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c1f57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c5357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060658054610c6890614f9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9490614f9e565b8015610cdf5780601f10610cb657610100808354040283529160200191610cdf565b820191905f5260205f20905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b5f610cf38261324c565b505f908152606960205260409020546001600160a01b031690565b5f610d1882611ace565b9050806001600160a01b0316836001600160a01b031603610da65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610ddf57506001600160a01b0381165f908152606a6020908152604080832033845290915290205460ff165b610e515760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d9d565b610e5b83836132af565b505050565b610e6861331c565b6127108161ffff161115610ebe5760405162461bcd60e51b815260206004820152600760248201527f494e56414c4944000000000000000000000000000000000000000000000000006044820152606401610d9d565b610132805461ffff90921668010000000000000000027fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff909216919091179055565b61012d545f906001600160a01b03163314610f5d5760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f7420746865206c697175696469747920706f6f6c6044820152606401610d9d565b610f65613376565b61013280545f9163ffffffff9091169082610f7f83614fea565b91906101000a81548163ffffffff021916908363ffffffff16021790555063ffffffff1690505f633b9aca0084610fb69190615022565b604080516080810182526bffffffffffffffffffffffff808b1682528981166020808401918252600184860190815263ffffffff808816606087019081525f8b81526101309094529690922094518554935191519651909216600160c81b027fffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffffff961515600160c01b02969096167fffffff0000000000ffffffffffffffffffffffffffffffffffffffffffffffff918516600160601b027fffffffffffffffff000000000000000000000000000000000000000000000000909416929094169190911791909117161791909117905590506110b185836133ca565b604080516bffffffffffffffffffffffff8981168252881660208201526001600160a01b0387168183015260608101869052905163ffffffff8416917f52ec6b5a2ebc56de823b66702bbb52ae3c6c2859f806c7628c374f32147b5940919081900360800190a25090505b949350505050565b61112e33826133e3565b6111a05760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d9d565b610e5b83838361345f565b6111b3613376565b5f5b81811015610e5b576111ff8383838181106111d2576111d2615041565b905060200201356111fa8585858181106111ee576111ee615041565b90506020020135611ace565b613663565b6001016111b5565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036112a55760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610d9d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166113007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b03161461137c5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610d9d565b61138581613978565b604080515f808252602082019092526113a091839190613980565b50565b610e5b83838360405180602001604052805f815250611fff565b61013554604080517f77a9193e00000000000000000000000000000000000000000000000000000000815290516101009092046001600160a01b0316916391d148549183916377a9193e916004808201926020929091908290030181865afa15801561142b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144f9190615055565b6040516001600160e01b031960e084901b1681526004810191909152336024820152604401602060405180830381865afa15801561148f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114b3919061506c565b6114d05760405163209296a360e01b815260040160405180910390fd5b6101355460ff16156115245760405162461bcd60e51b815260206004820152601860248201527f5061757361626c653a20616c72656164792070617573656400000000000000006044820152606401610d9d565b610135805460ff191660011790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906020015b60405180910390a1565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036116065760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610d9d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166116617f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146116dd5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610d9d565b6116e682613978565b6116f282826001613980565b5050565b5f306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146117955760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610d9d565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b61013554604051632474521560e21b81527fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a60048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa15801561182b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184f919061506c565b61189b5760405162461bcd60e51b815260206004820152601360248201527f43616c6c6572206973206e6f742061646d696e000000000000000000000000006044820152606401610d9d565b61013254640100000000900463ffffffff168110156118fc5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420756e646f2066696e616c697a6174696f6e00000000000000006044820152606401610d9d565b6101325463ffffffff1681106119545760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f742066696e616c697a6520667574757265207265717565737473006044820152606401610d9d565b610132805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b61198561331c565b5f8281526101306020526040902054600160c01b900460ff16156119eb5760405162461bcd60e51b815260206004820152601060248201527f526571756573742069732076616c6964000000000000000000000000000000006044820152606401610d9d565b5f828152606760205260409020546001600160a01b0316611a4e5760405162461bcd60e51b815260206004820152601660248201527f5265717565737420646f6573206e6f74206578697374000000000000000000006044820152606401610d9d565b611a61611a5a83611ace565b828461345f565b60405163ffffffff8316907f8f13b46229b7bc68329da7a7aec3a926547f0cbb2e5379d36e1310e81052b8f6905f90a25050565b610132545f90611ab390600160801b900463ffffffff166001615087565b61013254600160601b900463ffffffff908116911614919050565b5f818152606760205260408120546001600160a01b031680610c535760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d9d565b611b3a611a95565b15611b875760405162461bcd60e51b815260206004820152601160248201527f7363616e20697320636f6d706c657465640000000000000000000000000000006044820152606401610d9d565b6101325463ffffffff600160601b82048116915f91611bc391600160801b9004166001611bb486866150a3565b611bbe91906150b6565b613b20565b9050815b818111611c3a575f818152606760205260409020546001600160a01b031615611c28575f81815261013060205260408120546101338054600160601b9092046bffffffffffffffffffffffff16929091611c229084906150a3565b90915550505b80611c32816150c9565b915050611bc7565b50611c468160016150a3565b610132600c6101000a81548163ffffffff021916908363ffffffff160217905550611c6f611a95565b15610e5b576101335461012e5460405163673e156160e11b81523060048201526001600160a01b039091169063ce7c2ac290602401602060405180830381865afa158015611cbf573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce39190615055565b611ced91906150b6565b610134555f61013355505050565b5f6001600160a01b038216611d785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d9d565b506001600160a01b03165f9081526068602052604090205490565b611d9b61331c565b611da45f613b35565b565b610132545f90640100000000900463ffffffff16821115611e095760405162461bcd60e51b815260206004820152601860248201527f52657175657374206973206e6f742066696e616c697a656400000000000000006044820152606401610d9d565b5f611e1383611ace565b6001600160a01b031603611e695760405162461bcd60e51b815260206004820152600f60248201527f416c726561647920436c61696d656400000000000000000000000000000000006044820152606401610d9d565b5f82815261013060209081526040808320815160808101835290546bffffffffffffffffffffffff8082168352600160601b820416938201849052600160c01b810460ff16151582840152600160c81b900463ffffffff16606082015261012d549151630ac37bbf60e31b8152600481019390935292916001600160a01b039091169063561bddf890602401602060405180830381865afa158015611f10573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f349190615055565b90505f81835f01516bffffffffffffffffffffffff1610611f555781611f66565b82516bffffffffffffffffffffffff165b90505f836060015163ffffffff16633b9aca00611f8391906150e1565b9050611f8f81836150b6565b9695505050505050565b606060668054610c6890614f9e565b6116f2338383613b86565b5f611fe57f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b611ff2613376565b6113a0816111fa83611ace565b61200933836133e3565b61207b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d9d565b61208784848484613c53565b50505050565b61013554604051632474521560e21b81527fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a60048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa1580156120fe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612122919061506c565b61216e5760405162461bcd60e51b815260206004820152601360248201527f43616c6c6572206973206e6f742061646d696e000000000000000000000000006044820152606401610d9d565b61217781612ff9565b6121c35760405162461bcd60e51b815260206004820152601460248201527f52657175657374206973206e6f742076616c69640000000000000000000000006044820152606401610d9d565b5f818152610130602052604080822080547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff1690555163ffffffff8316917fd1438bf0c355cea90a9b9659e0a0455232d0e6da85797802b4c73778f1e35f1391a250565b61222f611a95565b61227b5760405162461bcd60e51b815260206004820152601560248201527f7363616e206973206e6f7420636f6d706c6574656400000000000000000000006044820152606401610d9d565b61013554604080517f421d0eb300000000000000000000000000000000000000000000000000000000815290516101009092046001600160a01b0316916391d1485491839163421d0eb3916004808201926020929091908290030181865afa1580156122e9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230d9190615055565b6040516001600160e01b031960e084901b1681526004810191909152336024820152604401602060405180830381865afa15801561234d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612371919061506c565b61238e5760405163209296a360e01b815260040160405180910390fd5b6101355460ff166123e15760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610d9d565b610135805460ff191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9060200161155e565b5f54610100900460ff161580801561243a57505f54600160ff909116105b806124535750303b15801561245357505f5460ff166001145b6124c55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610d9d565b5f805460ff1916600117905580156124e6575f805461ff0019166101001790555b6001600160a01b03841661253c5760405162461bcd60e51b815260206004820152601160248201527f4e6f207a65726f206164647265737365730000000000000000000000000000006044820152606401610d9d565b6001600160a01b0383166125925760405162461bcd60e51b815260206004820152601160248201527f4e6f207a65726f206164647265737365730000000000000000000000000000006044820152606401610d9d565b6126066040518060400160405280601481526020017f57697468647261772052657175657374204e46540000000000000000000000008152506040518060400160405280601281526020017f5769746864726177526571756573744e46540000000000000000000000000000815250613cdc565b61260e613d50565b612616613dc2565b61012d80546001600160a01b038087166001600160a01b03199283161790925561012e805486841690831617905561012f805492851692909116919091179055610132805463ffffffff191660011790558015612087575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150505050565b60606126bc8261324c565b5f6126d160408051602081019091525f815290565b90505f8151116126ef5760405180602001604052805f81525061271a565b806126f984613e2c565b60405160200161270a92919061510f565b6040516020818303038152906040525b9392505050565b61013554604051632474521560e21b81527f4fb62203ff7abbe51d8c53865ac09965620ebfa150bfb9e0d3c26869f5c4393560048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa158015612792573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b6919061506c565b6127d35760405163209296a360e01b815260040160405180910390fd5b805f036128225760405162461bcd60e51b815260206004820152601760248201527f4545544820616d6f756e742063616e6e6f7420626520300000000000000000006044820152606401610d9d565b61282a611a95565b61289c5760405162461bcd60e51b815260206004820152602760248201527f4e6f7420616c6c20707265762072657175657374732068617665206265656e2060448201527f7363616e6e6564000000000000000000000000000000000000000000000000006064820152608401610d9d565b806128a5612ce7565b10156128f35760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820654554482072656d61696e646572000000000000006044820152606401610d9d565b61012e5460405163673e156160e11b81523060048201525f916001600160a01b03169063ce7c2ac290602401602060405180830381865afa15801561293a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061295e9190615055565b610132549091505f9061298590849068010000000000000000900461ffff16612710613ec9565b90505f61299282856150b6565b61012d546040516303a53acb60e41b8152600481018390529192505f916001600160a01b0390911690633a53acb090602401602060405180830381865afa1580156129df573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a039190615055565b61012d546040516303a53acb60e41b8152600481018690529192505f916001600160a01b0390911690633a53acb090602401602060405180830381865afa158015612a50573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a749190615055565b612a7e90836150a3565b9050806101345f828254612a9291906150b6565b90915550508315612ad55761012e54612ad5906001600160a01b03167f000000000000000000000000000000000000000000000000000000000000000086613f71565b8115612b4f5761012d546040517ff2c5998a000000000000000000000000000000000000000000000000000000008152600481018490526001600160a01b039091169063f2c5998a906024015f604051808303815f87803b158015612b38575f5ffd5b505af1158015612b4a573d5f5f3e3d5ffd5b505050505b61012e5460405163673e156160e11b81523060048201526001600160a01b039091169063ce7c2ac290602401602060405180830381865afa158015612b96573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bba9190615055565b612bc482876150b6565b14612c375760405162461bcd60e51b815260206004820152602c60248201527f496e76616c69642065455448207368617265732061667465722072656d61696e60448201527f6465722068616e646c696e6700000000000000000000000000000000000000006064820152608401610d9d565b61012d54604051630ac37bbf60e31b8152600481018490527ff4e83d660533687b256958119163acfc4d5d46d5eb73a4ebbf5d43f42c208f509186916001600160a01b039091169063561bddf890602401602060405180830381865afa158015612ca3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cc79190615055565b6040805192835260208301919091520160405180910390a1505050505050565b61012d5461013454604051630ac37bbf60e31b815260048101919091525f916001600160a01b03169063561bddf890602401602060405180830381865afa158015612d34573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fe59190615055565b61013554604051632474521560e21b81527fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a60048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa158015612dc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ded919061506c565b612e395760405162461bcd60e51b815260206004820152601360248201527f43616c6c6572206973206e6f742061646d696e000000000000000000000000006044820152606401610d9d565b5f818152606760205260409020546001600160a01b0316612e9c5760405162461bcd60e51b815260206004820152601660248201527f5265717565737420646f6573206e6f74206578697374000000000000000000006044820152606401610d9d565b5f8181526101306020526040902054600160c01b900460ff1615612f025760405162461bcd60e51b815260206004820152601060248201527f526571756573742069732076616c6964000000000000000000000000000000006044820152606401610d9d565b5f818152610130602052604080822080547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b1790555163ffffffff8316917f785e8e7d6014e174f050f6e4499adea51c4595e705b1b71f79a290d87a055fb491a250565b612f7461331c565b6001600160a01b038116612ff05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d9d565b6113a081613b35565b5f818152606760205260408120546001600160a01b031661305c5760405162461bcd60e51b815260206004820152601660248201527f5265717565737420646f6573206e6f74206578697374000000000000000000006044820152606401610d9d565b505f9081526101306020526040902054600160c01b900460ff1690565b61308161331c565b6101355461010090046001600160a01b03161580156130a857506001600160a01b03821615155b6130f45760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a6564000000000000000000000000006044820152606401610d9d565b6127108161ffff16111561314a5760405162461bcd60e51b815260206004820152600760248201527f494e56414c4944000000000000000000000000000000000000000000000000006044820152606401610d9d565b610135805460017fffffffffffffffffffffff0000000000000000000000000000000000000000009091166101006001600160a01b038616021781179091556101328054600160601b7fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff9091166801000000000000000061ffff8616027fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff161717908190556131ff919063ffffffff16615123565b610132805463ffffffff92909216600160801b027fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff90921691909117905550505f61013381905561013455565b5f818152606760205260409020546001600160a01b03166113a05760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d9d565b5f81815260696020526040902080546001600160a01b0319166001600160a01b03841690811790915581906132e382611ace565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60fb546001600160a01b03163314611da45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d9d565b6101355460ff1615611da45760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610d9d565b6116f2828260405180602001604052805f815250613ff1565b5f5f6133ee83611ace565b9050806001600160a01b0316846001600160a01b0316148061343457506001600160a01b038082165f908152606a602090815260408083209388168352929052205460ff165b8061111c5750836001600160a01b031661344d84610ce9565b6001600160a01b031614949350505050565b826001600160a01b031661347282611ace565b6001600160a01b0316146134d65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d9d565b6001600160a01b0382166135515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d9d565b61355e8383836001614079565b826001600160a01b031661357182611ace565b6001600160a01b0316146135d55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d9d565b5f81815260696020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526068855283862080545f1901905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b3361366d83611ace565b6001600160a01b0316146136c35760405162461bcd60e51b815260206004820152601860248201527f4e6f7420746865206f776e6572206f6620746865204e465400000000000000006044820152606401610d9d565b5f8281526101306020908152604091829020825160808101845290546bffffffffffffffffffffffff8082168352600160601b82041692820192909252600160c01b820460ff161515928101839052600160c81b90910463ffffffff166060820152906137725760405162461bcd60e51b815260206004820152601460248201527f52657175657374206973206e6f742076616c69640000000000000000000000006044820152606401610d9d565b5f61377c84611da6565b61012d546040517f917266fa000000000000000000000000000000000000000000000000000000008152600481018390529192505f916001600160a01b039091169063917266fa90602401602060405180830381865afa1580156137e2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138069190615055565b90506138118561411b565b5f8581526101306020908152604090912080547fffffff00000000000000000000000000000000000000000000000000000000001690558301516138649082906bffffffffffffffffffffffff166150b6565b6101345f82825461387591906150a3565b909155505061012d546040517ff3fef3a30000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152602482018590525f92169063f3fef3a3906044016020604051808303815f875af11580156138e4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139089190615055565b90508181146139195761391961513f565b60408051848152602081018390526001600160a01b038716818301525f6060820152905163ffffffff8816917f4ed779dfda2dd4cb90349b61fba6c125f68e3246023e6109203ddfa8db61ce05919081900360800190a2505050505050565b6113a061331c565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156139b357610e5b836141ba565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015613a0d575060408051601f3d908101601f19168201909252613a0a91810190615055565b60015b613a7f5760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610d9d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114613b145760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610d9d565b50610e5b838383614278565b5f818310613b2e578161271a565b5090919050565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b816001600160a01b0316836001600160a01b031603613be75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d9d565b6001600160a01b038381165f818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613c5e84848461345f565b613c6a8484848461429c565b6120875760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d9d565b5f54610100900460ff16613d465760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b6116f282826143ec565b5f54610100900460ff16613dba5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b611da461446f565b5f54610100900460ff16611da45760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b60605f613e38836144e2565b60010190505f8167ffffffffffffffff811115613e5757613e57614d54565b6040519080825280601f01601f191660200182016040528015613e81576020820181803683370190505b5090508181016020015b5f19017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084613e8b57509392505050565b5f80805f19858709858702925082811083820303915050805f03613f0057838281613ef657613ef661500e565b049250505061271a565b808411613f0b575f5ffd5b5f84868809600260036001881981018916988990049182028318808302840302808302840302808302840302808302840302808302840302918202909203025f889003889004909101858311909403939093029303949094049190911702949350505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610e5b9084906145c3565b613ffb83836146a7565b6140075f84848461429c565b610e5b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d9d565b5f5b81811015614114575f61408e82856150a3565b5f8181526101306020526040902054909150600160c01b900460ff16806140bf575060fb546001600160a01b031633145b61410b5760405162461bcd60e51b815260206004820152600f60248201527f494e56414c49445f5245515545535400000000000000000000000000000000006044820152606401610d9d565b5060010161407b565b5050505050565b5f61412582611ace565b9050614134815f846001614079565b61413d82611ace565b5f83815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080545f190190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0381163b6142375760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610d9d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6142818361483c565b5f8251118061428d5750805b15610e5b57612087838361487b565b5f6001600160a01b0384163b156143e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906142df903390899088908890600401615153565b6020604051808303815f875af1925050508015614319575060408051601f3d908101601f1916820190925261431691810190615189565b60015b6143ca573d808015614346576040519150601f19603f3d011682016040523d82523d5f602084013e61434b565b606091505b5080515f036143c25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d9d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061111c565b50600161111c565b5f54610100900460ff166144565760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b606561446283826151e8565b506066610e5b82826151e8565b5f54610100900460ff166144d95760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b611da433613b35565b5f807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061452a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310614556576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061457457662386f26fc10000830492506010015b6305f5e100831061458c576305f5e100830492506008015b61271083106145a057612710830492506004015b606483106145b2576064830492506002015b600a8310610c535760010192915050565b5f614617826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166149829092919063ffffffff16565b805190915015610e5b5780806020019051810190614635919061506c565b610e5b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610d9d565b6001600160a01b0382166146fd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d9d565b5f818152606760205260409020546001600160a01b0316156147615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d9d565b61476e5f83836001614079565b5f818152606760205260409020546001600160a01b0316156147d25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d9d565b6001600160a01b0382165f81815260686020908152604080832080546001019055848352606790915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b614845816141ba565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606001600160a01b0383163b6148fa5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610d9d565b5f5f846001600160a01b03168460405161491491906152a3565b5f60405180830381855af49150503d805f811461494c576040519150601f19603f3d011682016040523d82523d5f602084013e614951565b606091505b509150915061497982826040518060600160405280602781526020016152af60279139614990565b95945050505050565b606061111c84845f856149a9565b6060831561499f57508161271a565b61271a8383614a97565b606082471015614a215760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610d9d565b5f5f866001600160a01b03168587604051614a3c91906152a3565b5f6040518083038185875af1925050503d805f8114614a76576040519150601f19603f3d011682016040523d82523d5f602084013e614a7b565b606091505b5091509150614a8c87838387614ac1565b979650505050505050565b815115614aa75781518083602001fd5b8060405162461bcd60e51b8152600401610d9d9190614b97565b60608315614b2f5782515f03614b28576001600160a01b0385163b614b285760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d9d565b508161111c565b61111c8383614a97565b6001600160e01b0319811681146113a0575f5ffd5b5f60208284031215614b5e575f5ffd5b813561271a81614b39565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61271a6020830184614b69565b5f60208284031215614bb9575f5ffd5b5035919050565b80356001600160a01b0381168114614bd6575f5ffd5b919050565b5f5f60408385031215614bec575f5ffd5b614bf583614bc0565b946020939093013593505050565b803561ffff81168114614bd6575f5ffd5b5f60208284031215614c24575f5ffd5b61271a82614c03565b80356bffffffffffffffffffffffff81168114614bd6575f5ffd5b5f5f5f5f60808587031215614c5b575f5ffd5b614c6485614c2d565b9350614c7260208601614c2d565b9250614c8060408601614bc0565b9396929550929360600135925050565b5f5f5f60608486031215614ca2575f5ffd5b614cab84614bc0565b9250614cb960208501614bc0565b929592945050506040919091013590565b5f5f60208385031215614cdb575f5ffd5b823567ffffffffffffffff811115614cf1575f5ffd5b8301601f81018513614d01575f5ffd5b803567ffffffffffffffff811115614d17575f5ffd5b8560208260051b8401011115614d2b575f5ffd5b6020919091019590945092505050565b5f60208284031215614d4b575f5ffd5b61271a82614bc0565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112614d77575f5ffd5b813567ffffffffffffffff811115614d9157614d91614d54565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715614dc057614dc0614d54565b604052818152838201602001851015614dd7575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f5f60408385031215614e04575f5ffd5b614e0d83614bc0565b9150602083013567ffffffffffffffff811115614e28575f5ffd5b614e3485828601614d68565b9150509250929050565b5f5f60408385031215614e4f575f5ffd5b82359150614e5f60208401614bc0565b90509250929050565b80151581146113a0575f5ffd5b5f5f60408385031215614e86575f5ffd5b614e8f83614bc0565b91506020830135614e9f81614e68565b809150509250929050565b5f5f5f5f60808587031215614ebd575f5ffd5b614ec685614bc0565b9350614ed460208601614bc0565b925060408501359150606085013567ffffffffffffffff811115614ef6575f5ffd5b614f0287828801614d68565b91505092959194509250565b5f5f5f60608486031215614f20575f5ffd5b614f2984614bc0565b9250614f3760208501614bc0565b9150614f4560408501614bc0565b90509250925092565b5f5f60408385031215614f5f575f5ffd5b614f6883614bc0565b9150614e5f60208401614bc0565b5f5f60408385031215614f87575f5ffd5b614f9083614bc0565b9150614e5f60208401614c03565b600181811c90821680614fb257607f821691505b602082108103614fd057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f63ffffffff821663ffffffff810361500557615005614fd6565b60010192915050565b634e487b7160e01b5f52601260045260245ffd5b5f8261503c57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215615065575f5ffd5b5051919050565b5f6020828403121561507c575f5ffd5b815161271a81614e68565b63ffffffff8181168382160190811115610c5357610c53614fd6565b80820180821115610c5357610c53614fd6565b81810381811115610c5357610c53614fd6565b5f600182016150da576150da614fd6565b5060010190565b8082028115828204841417610c5357610c53614fd6565b5f81518060208401855e5f93019283525090919050565b5f61111c61511d83866150f8565b846150f8565b63ffffffff8281168282160390811115610c5357610c53614fd6565b634e487b7160e01b5f52600160045260245ffd5b6001600160a01b03851681526001600160a01b0384166020820152826040820152608060608201525f611f8f6080830184614b69565b5f60208284031215615199575f5ffd5b815161271a81614b39565b601f821115610e5b57805f5260205f20601f840160051c810160208510156151c95750805b601f840160051c820191505b81811015614114575f81556001016151d5565b815167ffffffffffffffff81111561520257615202614d54565b615216816152108454614f9e565b846151a4565b6020601f821160018114615248575f83156152315750848201515b5f19600385901b1c1916600184901b178455614114565b5f84815260208120601f198516915b828110156152775787850151825560209485019460019092019101615257565b508482101561529457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f61271a82846150f856fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c634300081b000a0000000000000000000000002f5301a3d59388c509c65f8698f521377d41fd0f
Deployed Bytecode
0x608060405260043610610366575f3560e01c8063715018a6116101c8578063c87b56dd116100fd578063e27d067b1161009d578063f577a5001161006d578063f577a50014610b2c578063f8a025b414610b4b578063fc00a93714610b6a578063fc6dfe4e14610b8e575f5ffd5b8063e27d067b14610a87578063e985e9c514610aa6578063ee30511614610aed578063f2fde38b14610b0d575f5ffd5b8063d416eecd116100d8578063d416eecd14610a10578063d908bb2714610a26578063d966b2da14610a4f578063e0b62cf714610a63575f5ffd5b8063c87b56dd1461099f578063cf54278e146109be578063d2051277146109f1575f5ffd5b8063b13acedd11610168578063bac1520311610143578063bac152031461083b578063c02eda9e1461084f578063c0c53b8b14610882578063c58343ef146108a1575f5ffd5b8063b13acedd146107de578063b88d4fde146107fd578063b99071741461081c575f5ffd5b80638da5cb5b116101a35780638da5cb5b1461077a57806395d89b4114610797578063a22cb465146107ab578063aaf10f42146107ca575f5ffd5b8063715018a6146107315780637452bc40146107455780637d8ca2421461075b575f5ffd5b80634f1ef2861161029e57806361d027b31161023e578063667a739e11610219578063667a739e1461069c57806366eb8b19146106d65780636a84a985146106f557806370a0823114610712575f5ffd5b806361d027b31461062a5780636352211e1461065d578063665a11ca1461067c575f5ffd5b8063554e34f711610279578063554e34f7146105a3578063574465de146105c25780635c975abb146105d657806361c90e0e146105f0575f5ffd5b80634f1ef2861461055d57806352d1902d146105705780635476857114610584575f5ffd5b806319691cb01161030957806333727c4d116102e457806333727c4d146104da5780633659cfe61461050b57806342842e0e1461052a578063439766ce14610549575f5ffd5b806319691cb01461047b57806323b872dd1461049c57806324fccdcf146104bb575f5ffd5b806308c732591161034457806308c73259146103f6578063095ea7b31461041b5780630de371e21461043c578063105a66951461045c575f5ffd5b806301ffc9a71461036a57806306fdde031461039e578063081812fc146103bf575b5f5ffd5b348015610375575f5ffd5b50610389610384366004614b4e565b610bbd565b60405190151581526020015b60405180910390f35b3480156103a9575f5ffd5b506103b2610c59565b6040516103959190614b97565b3480156103ca575f5ffd5b506103de6103d9366004614ba9565b610ce9565b6040516001600160a01b039091168152602001610395565b348015610401575f5ffd5b50610135546103de9061010090046001600160a01b031681565b348015610426575f5ffd5b5061043a610435366004614bdb565b610d0e565b005b348015610447575f5ffd5b5061012e546103de906001600160a01b031681565b348015610467575f5ffd5b5061043a610476366004614c14565b610e60565b61048e610489366004614c48565b610f00565b604051908152602001610395565b3480156104a7575f5ffd5b5061043a6104b6366004614c90565b611124565b3480156104c6575f5ffd5b5061043a6104d5366004614cca565b6111ab565b3480156104e5575f5ffd5b506103896104f4366004614ba9565b61013254640100000000900463ffffffff16101590565b348015610516575f5ffd5b5061043a610525366004614d3b565b611207565b348015610535575f5ffd5b5061043a610544366004614c90565b6113a3565b348015610554575f5ffd5b5061043a6113bd565b61043a61056b366004614df3565b611568565b34801561057b575f5ffd5b5061048e6116f6565b34801561058f575f5ffd5b5061043a61059e366004614ba9565b6117ba565b3480156105ae575f5ffd5b5061043a6105bd366004614e3e565b61197d565b3480156105cd575f5ffd5b50610389611a95565b3480156105e1575f5ffd5b50610135546103899060ff1681565b3480156105fb575f5ffd5b50610132546106179068010000000000000000900461ffff1681565b60405161ffff9091168152602001610395565b348015610635575f5ffd5b506103de7f0000000000000000000000002f5301a3d59388c509c65f8698f521377d41fd0f81565b348015610668575f5ffd5b506103de610677366004614ba9565b611ace565b348015610687575f5ffd5b5061012d546103de906001600160a01b031681565b3480156106a7575f5ffd5b50610132546106c190640100000000900463ffffffff1681565b60405163ffffffff9091168152602001610395565b3480156106e1575f5ffd5b5061043a6106f0366004614ba9565b611b32565b348015610700575f5ffd5b50610132546106c19063ffffffff1681565b34801561071d575f5ffd5b5061048e61072c366004614d3b565b611cfb565b34801561073c575f5ffd5b5061043a611d93565b348015610750575f5ffd5b5061048e6101335481565b348015610766575f5ffd5b5061048e610775366004614ba9565b611da6565b348015610785575f5ffd5b5060fb546001600160a01b03166103de565b3480156107a2575f5ffd5b506103b2611f99565b3480156107b6575f5ffd5b5061043a6107c5366004614e75565b611fa8565b3480156107d5575f5ffd5b506103de611fb3565b3480156107e9575f5ffd5b5061043a6107f8366004614ba9565b611fea565b348015610808575f5ffd5b5061043a610817366004614eaa565b611fff565b348015610827575f5ffd5b5061043a610836366004614ba9565b61208d565b348015610846575f5ffd5b5061043a612227565b34801561085a575f5ffd5b5061048e7f4fb62203ff7abbe51d8c53865ac09965620ebfa150bfb9e0d3c26869f5c4393581565b34801561088d575f5ffd5b5061043a61089c366004614f0e565b61241c565b3480156108ac575f5ffd5b506109446108bb366004614ba9565b604080516080810182525f808252602082018190529181018290526060810191909152505f9081526101306020908152604091829020825160808101845290546bffffffffffffffffffffffff8082168352600160601b82041692820192909252600160c01b820460ff16151592810192909252600160c81b900463ffffffff16606082015290565b60405161039591905f6080820190506bffffffffffffffffffffffff83511682526bffffffffffffffffffffffff602084015116602083015260408301511515604083015263ffffffff606084015116606083015292915050565b3480156109aa575f5ffd5b506103b26109b9366004614ba9565b6126b1565b3480156109c9575f5ffd5b5061048e7fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a81565b3480156109fc575f5ffd5b5061043a610a0b366004614ba9565b612721565b348015610a1b575f5ffd5b5061048e6101345481565b348015610a31575f5ffd5b5061013254610617906a0100000000000000000000900461ffff1681565b348015610a5a575f5ffd5b5061048e612ce7565b348015610a6e575f5ffd5b50610132546106c190600160601b900463ffffffff1681565b348015610a92575f5ffd5b5061043a610aa1366004614ba9565b612d58565b348015610ab1575f5ffd5b50610389610ac0366004614f4e565b6001600160a01b039182165f908152606a6020908152604080832093909416825291909152205460ff1690565b348015610af8575f5ffd5b5061012f546103de906001600160a01b031681565b348015610b18575f5ffd5b5061043a610b27366004614d3b565b612f6c565b348015610b37575f5ffd5b50610389610b46366004614ba9565b612ff9565b348015610b56575f5ffd5b5061043a610b65366004614f76565b613079565b348015610b75575f5ffd5b50610132546106c190600160801b900463ffffffff1681565b348015610b99575f5ffd5b50610389610ba8366004614d3b565b6101316020525f908152604090205460ff1681565b5f6001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610c1f57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c5357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060658054610c6890614f9e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9490614f9e565b8015610cdf5780601f10610cb657610100808354040283529160200191610cdf565b820191905f5260205f20905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b5f610cf38261324c565b505f908152606960205260409020546001600160a01b031690565b5f610d1882611ace565b9050806001600160a01b0316836001600160a01b031603610da65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610ddf57506001600160a01b0381165f908152606a6020908152604080832033845290915290205460ff165b610e515760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d9d565b610e5b83836132af565b505050565b610e6861331c565b6127108161ffff161115610ebe5760405162461bcd60e51b815260206004820152600760248201527f494e56414c4944000000000000000000000000000000000000000000000000006044820152606401610d9d565b610132805461ffff90921668010000000000000000027fffffffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffff909216919091179055565b61012d545f906001600160a01b03163314610f5d5760405162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f7420746865206c697175696469747920706f6f6c6044820152606401610d9d565b610f65613376565b61013280545f9163ffffffff9091169082610f7f83614fea565b91906101000a81548163ffffffff021916908363ffffffff16021790555063ffffffff1690505f633b9aca0084610fb69190615022565b604080516080810182526bffffffffffffffffffffffff808b1682528981166020808401918252600184860190815263ffffffff808816606087019081525f8b81526101309094529690922094518554935191519651909216600160c81b027fffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffffff961515600160c01b02969096167fffffff0000000000ffffffffffffffffffffffffffffffffffffffffffffffff918516600160601b027fffffffffffffffff000000000000000000000000000000000000000000000000909416929094169190911791909117161791909117905590506110b185836133ca565b604080516bffffffffffffffffffffffff8981168252881660208201526001600160a01b0387168183015260608101869052905163ffffffff8416917f52ec6b5a2ebc56de823b66702bbb52ae3c6c2859f806c7628c374f32147b5940919081900360800190a25090505b949350505050565b61112e33826133e3565b6111a05760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d9d565b610e5b83838361345f565b6111b3613376565b5f5b81811015610e5b576111ff8383838181106111d2576111d2615041565b905060200201356111fa8585858181106111ee576111ee615041565b90506020020135611ace565b613663565b6001016111b5565b6001600160a01b037f000000000000000000000000b74ff2782c76cd1e5c47abffe37a13afb0809ffe1630036112a55760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610d9d565b7f000000000000000000000000b74ff2782c76cd1e5c47abffe37a13afb0809ffe6001600160a01b03166113007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b03161461137c5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610d9d565b61138581613978565b604080515f808252602082019092526113a091839190613980565b50565b610e5b83838360405180602001604052805f815250611fff565b61013554604080517f77a9193e00000000000000000000000000000000000000000000000000000000815290516101009092046001600160a01b0316916391d148549183916377a9193e916004808201926020929091908290030181865afa15801561142b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061144f9190615055565b6040516001600160e01b031960e084901b1681526004810191909152336024820152604401602060405180830381865afa15801561148f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114b3919061506c565b6114d05760405163209296a360e01b815260040160405180910390fd5b6101355460ff16156115245760405162461bcd60e51b815260206004820152601860248201527f5061757361626c653a20616c72656164792070617573656400000000000000006044820152606401610d9d565b610135805460ff191660011790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906020015b60405180910390a1565b6001600160a01b037f000000000000000000000000b74ff2782c76cd1e5c47abffe37a13afb0809ffe1630036116065760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610d9d565b7f000000000000000000000000b74ff2782c76cd1e5c47abffe37a13afb0809ffe6001600160a01b03166116617f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146116dd5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610d9d565b6116e682613978565b6116f282826001613980565b5050565b5f306001600160a01b037f000000000000000000000000b74ff2782c76cd1e5c47abffe37a13afb0809ffe16146117955760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610d9d565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b61013554604051632474521560e21b81527fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a60048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa15801561182b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061184f919061506c565b61189b5760405162461bcd60e51b815260206004820152601360248201527f43616c6c6572206973206e6f742061646d696e000000000000000000000000006044820152606401610d9d565b61013254640100000000900463ffffffff168110156118fc5760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f7420756e646f2066696e616c697a6174696f6e00000000000000006044820152606401610d9d565b6101325463ffffffff1681106119545760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f742066696e616c697a6520667574757265207265717565737473006044820152606401610d9d565b610132805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b61198561331c565b5f8281526101306020526040902054600160c01b900460ff16156119eb5760405162461bcd60e51b815260206004820152601060248201527f526571756573742069732076616c6964000000000000000000000000000000006044820152606401610d9d565b5f828152606760205260409020546001600160a01b0316611a4e5760405162461bcd60e51b815260206004820152601660248201527f5265717565737420646f6573206e6f74206578697374000000000000000000006044820152606401610d9d565b611a61611a5a83611ace565b828461345f565b60405163ffffffff8316907f8f13b46229b7bc68329da7a7aec3a926547f0cbb2e5379d36e1310e81052b8f6905f90a25050565b610132545f90611ab390600160801b900463ffffffff166001615087565b61013254600160601b900463ffffffff908116911614919050565b5f818152606760205260408120546001600160a01b031680610c535760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d9d565b611b3a611a95565b15611b875760405162461bcd60e51b815260206004820152601160248201527f7363616e20697320636f6d706c657465640000000000000000000000000000006044820152606401610d9d565b6101325463ffffffff600160601b82048116915f91611bc391600160801b9004166001611bb486866150a3565b611bbe91906150b6565b613b20565b9050815b818111611c3a575f818152606760205260409020546001600160a01b031615611c28575f81815261013060205260408120546101338054600160601b9092046bffffffffffffffffffffffff16929091611c229084906150a3565b90915550505b80611c32816150c9565b915050611bc7565b50611c468160016150a3565b610132600c6101000a81548163ffffffff021916908363ffffffff160217905550611c6f611a95565b15610e5b576101335461012e5460405163673e156160e11b81523060048201526001600160a01b039091169063ce7c2ac290602401602060405180830381865afa158015611cbf573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce39190615055565b611ced91906150b6565b610134555f61013355505050565b5f6001600160a01b038216611d785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d9d565b506001600160a01b03165f9081526068602052604090205490565b611d9b61331c565b611da45f613b35565b565b610132545f90640100000000900463ffffffff16821115611e095760405162461bcd60e51b815260206004820152601860248201527f52657175657374206973206e6f742066696e616c697a656400000000000000006044820152606401610d9d565b5f611e1383611ace565b6001600160a01b031603611e695760405162461bcd60e51b815260206004820152600f60248201527f416c726561647920436c61696d656400000000000000000000000000000000006044820152606401610d9d565b5f82815261013060209081526040808320815160808101835290546bffffffffffffffffffffffff8082168352600160601b820416938201849052600160c01b810460ff16151582840152600160c81b900463ffffffff16606082015261012d549151630ac37bbf60e31b8152600481019390935292916001600160a01b039091169063561bddf890602401602060405180830381865afa158015611f10573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f349190615055565b90505f81835f01516bffffffffffffffffffffffff1610611f555781611f66565b82516bffffffffffffffffffffffff165b90505f836060015163ffffffff16633b9aca00611f8391906150e1565b9050611f8f81836150b6565b9695505050505050565b606060668054610c6890614f9e565b6116f2338383613b86565b5f611fe57f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b611ff2613376565b6113a0816111fa83611ace565b61200933836133e3565b61207b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d9d565b61208784848484613c53565b50505050565b61013554604051632474521560e21b81527fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a60048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa1580156120fe573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612122919061506c565b61216e5760405162461bcd60e51b815260206004820152601360248201527f43616c6c6572206973206e6f742061646d696e000000000000000000000000006044820152606401610d9d565b61217781612ff9565b6121c35760405162461bcd60e51b815260206004820152601460248201527f52657175657374206973206e6f742076616c69640000000000000000000000006044820152606401610d9d565b5f818152610130602052604080822080547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff1690555163ffffffff8316917fd1438bf0c355cea90a9b9659e0a0455232d0e6da85797802b4c73778f1e35f1391a250565b61222f611a95565b61227b5760405162461bcd60e51b815260206004820152601560248201527f7363616e206973206e6f7420636f6d706c6574656400000000000000000000006044820152606401610d9d565b61013554604080517f421d0eb300000000000000000000000000000000000000000000000000000000815290516101009092046001600160a01b0316916391d1485491839163421d0eb3916004808201926020929091908290030181865afa1580156122e9573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061230d9190615055565b6040516001600160e01b031960e084901b1681526004810191909152336024820152604401602060405180830381865afa15801561234d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612371919061506c565b61238e5760405163209296a360e01b815260040160405180910390fd5b6101355460ff166123e15760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610d9d565b610135805460ff191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa9060200161155e565b5f54610100900460ff161580801561243a57505f54600160ff909116105b806124535750303b15801561245357505f5460ff166001145b6124c55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610d9d565b5f805460ff1916600117905580156124e6575f805461ff0019166101001790555b6001600160a01b03841661253c5760405162461bcd60e51b815260206004820152601160248201527f4e6f207a65726f206164647265737365730000000000000000000000000000006044820152606401610d9d565b6001600160a01b0383166125925760405162461bcd60e51b815260206004820152601160248201527f4e6f207a65726f206164647265737365730000000000000000000000000000006044820152606401610d9d565b6126066040518060400160405280601481526020017f57697468647261772052657175657374204e46540000000000000000000000008152506040518060400160405280601281526020017f5769746864726177526571756573744e46540000000000000000000000000000815250613cdc565b61260e613d50565b612616613dc2565b61012d80546001600160a01b038087166001600160a01b03199283161790925561012e805486841690831617905561012f805492851692909116919091179055610132805463ffffffff191660011790558015612087575f805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a150505050565b60606126bc8261324c565b5f6126d160408051602081019091525f815290565b90505f8151116126ef5760405180602001604052805f81525061271a565b806126f984613e2c565b60405160200161270a92919061510f565b6040516020818303038152906040525b9392505050565b61013554604051632474521560e21b81527f4fb62203ff7abbe51d8c53865ac09965620ebfa150bfb9e0d3c26869f5c4393560048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa158015612792573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127b6919061506c565b6127d35760405163209296a360e01b815260040160405180910390fd5b805f036128225760405162461bcd60e51b815260206004820152601760248201527f4545544820616d6f756e742063616e6e6f7420626520300000000000000000006044820152606401610d9d565b61282a611a95565b61289c5760405162461bcd60e51b815260206004820152602760248201527f4e6f7420616c6c20707265762072657175657374732068617665206265656e2060448201527f7363616e6e6564000000000000000000000000000000000000000000000000006064820152608401610d9d565b806128a5612ce7565b10156128f35760405162461bcd60e51b815260206004820152601960248201527f4e6f7420656e6f75676820654554482072656d61696e646572000000000000006044820152606401610d9d565b61012e5460405163673e156160e11b81523060048201525f916001600160a01b03169063ce7c2ac290602401602060405180830381865afa15801561293a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061295e9190615055565b610132549091505f9061298590849068010000000000000000900461ffff16612710613ec9565b90505f61299282856150b6565b61012d546040516303a53acb60e41b8152600481018390529192505f916001600160a01b0390911690633a53acb090602401602060405180830381865afa1580156129df573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a039190615055565b61012d546040516303a53acb60e41b8152600481018690529192505f916001600160a01b0390911690633a53acb090602401602060405180830381865afa158015612a50573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a749190615055565b612a7e90836150a3565b9050806101345f828254612a9291906150b6565b90915550508315612ad55761012e54612ad5906001600160a01b03167f0000000000000000000000002f5301a3d59388c509c65f8698f521377d41fd0f86613f71565b8115612b4f5761012d546040517ff2c5998a000000000000000000000000000000000000000000000000000000008152600481018490526001600160a01b039091169063f2c5998a906024015f604051808303815f87803b158015612b38575f5ffd5b505af1158015612b4a573d5f5f3e3d5ffd5b505050505b61012e5460405163673e156160e11b81523060048201526001600160a01b039091169063ce7c2ac290602401602060405180830381865afa158015612b96573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bba9190615055565b612bc482876150b6565b14612c375760405162461bcd60e51b815260206004820152602c60248201527f496e76616c69642065455448207368617265732061667465722072656d61696e60448201527f6465722068616e646c696e6700000000000000000000000000000000000000006064820152608401610d9d565b61012d54604051630ac37bbf60e31b8152600481018490527ff4e83d660533687b256958119163acfc4d5d46d5eb73a4ebbf5d43f42c208f509186916001600160a01b039091169063561bddf890602401602060405180830381865afa158015612ca3573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cc79190615055565b6040805192835260208301919091520160405180910390a1505050505050565b61012d5461013454604051630ac37bbf60e31b815260048101919091525f916001600160a01b03169063561bddf890602401602060405180830381865afa158015612d34573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fe59190615055565b61013554604051632474521560e21b81527fdf341d2a9af804fa0099198f83a0a0611aa273a03b36d576993f914e695dff2a60048201523360248201526101009091046001600160a01b0316906391d1485490604401602060405180830381865afa158015612dc9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ded919061506c565b612e395760405162461bcd60e51b815260206004820152601360248201527f43616c6c6572206973206e6f742061646d696e000000000000000000000000006044820152606401610d9d565b5f818152606760205260409020546001600160a01b0316612e9c5760405162461bcd60e51b815260206004820152601660248201527f5265717565737420646f6573206e6f74206578697374000000000000000000006044820152606401610d9d565b5f8181526101306020526040902054600160c01b900460ff1615612f025760405162461bcd60e51b815260206004820152601060248201527f526571756573742069732076616c6964000000000000000000000000000000006044820152606401610d9d565b5f818152610130602052604080822080547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b1790555163ffffffff8316917f785e8e7d6014e174f050f6e4499adea51c4595e705b1b71f79a290d87a055fb491a250565b612f7461331c565b6001600160a01b038116612ff05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d9d565b6113a081613b35565b5f818152606760205260408120546001600160a01b031661305c5760405162461bcd60e51b815260206004820152601660248201527f5265717565737420646f6573206e6f74206578697374000000000000000000006044820152606401610d9d565b505f9081526101306020526040902054600160c01b900460ff1690565b61308161331c565b6101355461010090046001600160a01b03161580156130a857506001600160a01b03821615155b6130f45760405162461bcd60e51b815260206004820152601360248201527f416c726561647920696e697469616c697a6564000000000000000000000000006044820152606401610d9d565b6127108161ffff16111561314a5760405162461bcd60e51b815260206004820152600760248201527f494e56414c4944000000000000000000000000000000000000000000000000006044820152606401610d9d565b610135805460017fffffffffffffffffffffff0000000000000000000000000000000000000000009091166101006001600160a01b038616021781179091556101328054600160601b7fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff9091166801000000000000000061ffff8616027fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff161717908190556131ff919063ffffffff16615123565b610132805463ffffffff92909216600160801b027fffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff90921691909117905550505f61013381905561013455565b5f818152606760205260409020546001600160a01b03166113a05760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d9d565b5f81815260696020526040902080546001600160a01b0319166001600160a01b03841690811790915581906132e382611ace565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60fb546001600160a01b03163314611da45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d9d565b6101355460ff1615611da45760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610d9d565b6116f2828260405180602001604052805f815250613ff1565b5f5f6133ee83611ace565b9050806001600160a01b0316846001600160a01b0316148061343457506001600160a01b038082165f908152606a602090815260408083209388168352929052205460ff165b8061111c5750836001600160a01b031661344d84610ce9565b6001600160a01b031614949350505050565b826001600160a01b031661347282611ace565b6001600160a01b0316146134d65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d9d565b6001600160a01b0382166135515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d9d565b61355e8383836001614079565b826001600160a01b031661357182611ace565b6001600160a01b0316146135d55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d9d565b5f81815260696020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526068855283862080545f1901905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b3361366d83611ace565b6001600160a01b0316146136c35760405162461bcd60e51b815260206004820152601860248201527f4e6f7420746865206f776e6572206f6620746865204e465400000000000000006044820152606401610d9d565b5f8281526101306020908152604091829020825160808101845290546bffffffffffffffffffffffff8082168352600160601b82041692820192909252600160c01b820460ff161515928101839052600160c81b90910463ffffffff166060820152906137725760405162461bcd60e51b815260206004820152601460248201527f52657175657374206973206e6f742076616c69640000000000000000000000006044820152606401610d9d565b5f61377c84611da6565b61012d546040517f917266fa000000000000000000000000000000000000000000000000000000008152600481018390529192505f916001600160a01b039091169063917266fa90602401602060405180830381865afa1580156137e2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138069190615055565b90506138118561411b565b5f8581526101306020908152604090912080547fffffff00000000000000000000000000000000000000000000000000000000001690558301516138649082906bffffffffffffffffffffffff166150b6565b6101345f82825461387591906150a3565b909155505061012d546040517ff3fef3a30000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152602482018590525f92169063f3fef3a3906044016020604051808303815f875af11580156138e4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139089190615055565b90508181146139195761391961513f565b60408051848152602081018390526001600160a01b038716818301525f6060820152905163ffffffff8816917f4ed779dfda2dd4cb90349b61fba6c125f68e3246023e6109203ddfa8db61ce05919081900360800190a2505050505050565b6113a061331c565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff16156139b357610e5b836141ba565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015613a0d575060408051601f3d908101601f19168201909252613a0a91810190615055565b60015b613a7f5760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610d9d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114613b145760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610d9d565b50610e5b838383614278565b5f818310613b2e578161271a565b5090919050565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b816001600160a01b0316836001600160a01b031603613be75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d9d565b6001600160a01b038381165f818152606a6020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613c5e84848461345f565b613c6a8484848461429c565b6120875760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d9d565b5f54610100900460ff16613d465760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b6116f282826143ec565b5f54610100900460ff16613dba5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b611da461446f565b5f54610100900460ff16611da45760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b60605f613e38836144e2565b60010190505f8167ffffffffffffffff811115613e5757613e57614d54565b6040519080825280601f01601f191660200182016040528015613e81576020820181803683370190505b5090508181016020015b5f19017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084613e8b57509392505050565b5f80805f19858709858702925082811083820303915050805f03613f0057838281613ef657613ef661500e565b049250505061271a565b808411613f0b575f5ffd5b5f84868809600260036001881981018916988990049182028318808302840302808302840302808302840302808302840302808302840302918202909203025f889003889004909101858311909403939093029303949094049190911702949350505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610e5b9084906145c3565b613ffb83836146a7565b6140075f84848461429c565b610e5b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d9d565b5f5b81811015614114575f61408e82856150a3565b5f8181526101306020526040902054909150600160c01b900460ff16806140bf575060fb546001600160a01b031633145b61410b5760405162461bcd60e51b815260206004820152600f60248201527f494e56414c49445f5245515545535400000000000000000000000000000000006044820152606401610d9d565b5060010161407b565b5050505050565b5f61412582611ace565b9050614134815f846001614079565b61413d82611ace565b5f83815260696020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526068845282852080545f190190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0381163b6142375760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610d9d565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6142818361483c565b5f8251118061428d5750805b15610e5b57612087838361487b565b5f6001600160a01b0384163b156143e457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906142df903390899088908890600401615153565b6020604051808303815f875af1925050508015614319575060408051601f3d908101601f1916820190925261431691810190615189565b60015b6143ca573d808015614346576040519150601f19603f3d011682016040523d82523d5f602084013e61434b565b606091505b5080515f036143c25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d9d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061111c565b50600161111c565b5f54610100900460ff166144565760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b606561446283826151e8565b506066610e5b82826151e8565b5f54610100900460ff166144d95760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610d9d565b611da433613b35565b5f807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061452a577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310614556576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061457457662386f26fc10000830492506010015b6305f5e100831061458c576305f5e100830492506008015b61271083106145a057612710830492506004015b606483106145b2576064830492506002015b600a8310610c535760010192915050565b5f614617826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166149829092919063ffffffff16565b805190915015610e5b5780806020019051810190614635919061506c565b610e5b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610d9d565b6001600160a01b0382166146fd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d9d565b5f818152606760205260409020546001600160a01b0316156147615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d9d565b61476e5f83836001614079565b5f818152606760205260409020546001600160a01b0316156147d25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d9d565b6001600160a01b0382165f81815260686020908152604080832080546001019055848352606790915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b614845816141ba565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606001600160a01b0383163b6148fa5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610d9d565b5f5f846001600160a01b03168460405161491491906152a3565b5f60405180830381855af49150503d805f811461494c576040519150601f19603f3d011682016040523d82523d5f602084013e614951565b606091505b509150915061497982826040518060600160405280602781526020016152af60279139614990565b95945050505050565b606061111c84845f856149a9565b6060831561499f57508161271a565b61271a8383614a97565b606082471015614a215760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610d9d565b5f5f866001600160a01b03168587604051614a3c91906152a3565b5f6040518083038185875af1925050503d805f8114614a76576040519150601f19603f3d011682016040523d82523d5f602084013e614a7b565b606091505b5091509150614a8c87838387614ac1565b979650505050505050565b815115614aa75781518083602001fd5b8060405162461bcd60e51b8152600401610d9d9190614b97565b60608315614b2f5782515f03614b28576001600160a01b0385163b614b285760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d9d565b508161111c565b61111c8383614a97565b6001600160e01b0319811681146113a0575f5ffd5b5f60208284031215614b5e575f5ffd5b813561271a81614b39565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61271a6020830184614b69565b5f60208284031215614bb9575f5ffd5b5035919050565b80356001600160a01b0381168114614bd6575f5ffd5b919050565b5f5f60408385031215614bec575f5ffd5b614bf583614bc0565b946020939093013593505050565b803561ffff81168114614bd6575f5ffd5b5f60208284031215614c24575f5ffd5b61271a82614c03565b80356bffffffffffffffffffffffff81168114614bd6575f5ffd5b5f5f5f5f60808587031215614c5b575f5ffd5b614c6485614c2d565b9350614c7260208601614c2d565b9250614c8060408601614bc0565b9396929550929360600135925050565b5f5f5f60608486031215614ca2575f5ffd5b614cab84614bc0565b9250614cb960208501614bc0565b929592945050506040919091013590565b5f5f60208385031215614cdb575f5ffd5b823567ffffffffffffffff811115614cf1575f5ffd5b8301601f81018513614d01575f5ffd5b803567ffffffffffffffff811115614d17575f5ffd5b8560208260051b8401011115614d2b575f5ffd5b6020919091019590945092505050565b5f60208284031215614d4b575f5ffd5b61271a82614bc0565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112614d77575f5ffd5b813567ffffffffffffffff811115614d9157614d91614d54565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715614dc057614dc0614d54565b604052818152838201602001851015614dd7575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f5f60408385031215614e04575f5ffd5b614e0d83614bc0565b9150602083013567ffffffffffffffff811115614e28575f5ffd5b614e3485828601614d68565b9150509250929050565b5f5f60408385031215614e4f575f5ffd5b82359150614e5f60208401614bc0565b90509250929050565b80151581146113a0575f5ffd5b5f5f60408385031215614e86575f5ffd5b614e8f83614bc0565b91506020830135614e9f81614e68565b809150509250929050565b5f5f5f5f60808587031215614ebd575f5ffd5b614ec685614bc0565b9350614ed460208601614bc0565b925060408501359150606085013567ffffffffffffffff811115614ef6575f5ffd5b614f0287828801614d68565b91505092959194509250565b5f5f5f60608486031215614f20575f5ffd5b614f2984614bc0565b9250614f3760208501614bc0565b9150614f4560408501614bc0565b90509250925092565b5f5f60408385031215614f5f575f5ffd5b614f6883614bc0565b9150614e5f60208401614bc0565b5f5f60408385031215614f87575f5ffd5b614f9083614bc0565b9150614e5f60208401614c03565b600181811c90821680614fb257607f821691505b602082108103614fd057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f63ffffffff821663ffffffff810361500557615005614fd6565b60010192915050565b634e487b7160e01b5f52601260045260245ffd5b5f8261503c57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215615065575f5ffd5b5051919050565b5f6020828403121561507c575f5ffd5b815161271a81614e68565b63ffffffff8181168382160190811115610c5357610c53614fd6565b80820180821115610c5357610c53614fd6565b81810381811115610c5357610c53614fd6565b5f600182016150da576150da614fd6565b5060010190565b8082028115828204841417610c5357610c53614fd6565b5f81518060208401855e5f93019283525090919050565b5f61111c61511d83866150f8565b846150f8565b63ffffffff8281168282160390811115610c5357610c53614fd6565b634e487b7160e01b5f52600160045260245ffd5b6001600160a01b03851681526001600160a01b0384166020820152826040820152608060608201525f611f8f6080830184614b69565b5f60208284031215615199575f5ffd5b815161271a81614b39565b601f821115610e5b57805f5260205f20601f840160051c810160208510156151c95750805b601f840160051c820191505b81811015614114575f81556001016151d5565b815167ffffffffffffffff81111561520257615202614d54565b615216816152108454614f9e565b846151a4565b6020601f821160018114615248575f83156152315750848201515b5f19600385901b1c1916600184901b178455614114565b5f84815260208120601f198516915b828110156152775787850151825560209485019460019092019101615257565b508482101561529457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f61271a82846150f856fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c634300081b000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002f5301a3d59388c509c65f8698f521377d41fd0f
-----Decoded View---------------
Arg [0] : _treasury (address): 0x2f5301a3D59388c509C65f8698f521377D41Fd0F
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002f5301a3d59388c509c65f8698f521377d41fd0f
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.