Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Mansa
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.26; import {Whitelist} from "./Whitelist.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {ERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import {IERC4626} from "@openzeppelin/contracts/interfaces/IERC4626.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {FixedPointMathLib} from "./FixedPointMathLib.sol"; import {IERC7575} from "./IERC7575.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {ERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol"; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; import {IERC7540Deposit, IERC7540Redeem, IERC7540Operator} from "./IERC7540.sol"; struct WithdrawalRequest { bool closed; bool claimable; address requester; uint256 timestamp; uint256 tokenAmount; uint256 usdAmount; uint256 claimableUsdAmount; } struct InvestmentRequest { bool closed; bool claimable; address requester; uint256 timestamp; uint256 usdAmount; uint256 commitmentDeadline; } interface IERC7540 is IERC7540Deposit, IERC7540Redeem, IERC7540Operator {} contract Mansa is Ownable, AccessControl, IERC4626, IERC7540, IERC7575, ERC20, ReentrancyGuard { bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); ERC20 public immutable usdToken; bool public open; address public custodian; uint256 public dailyYieldMicrobip; uint256 public tvl; uint256 public tvlUpdatedAt; uint256 minInvestmentAmount; uint256 maxInvestmentAmount; uint256 minWithdrawalAmount; uint256 maxWithdrawalAmount; // id => withdrawalRequest mapping(string => WithdrawalRequest) withdrawalRequests; mapping(string => InvestmentRequest) investmentRequests; // address => deadline => amount mapping(address => mapping(uint256 => uint256)) commitments; // address => totalAmount mapping(address => uint256) totalCommitments; uint8 public constant TOKEN_DECIMALS = 18; uint8 private immutable decimalsDiff; Whitelist public whitelist; modifier isAdminOrOwner() { require( msg.sender == owner() || hasRole(ADMIN_ROLE, msg.sender), "Only admins and owner can call this function" ); _; } constructor( Whitelist whitelist_, string memory name_, string memory symbol_, ERC20 usdTokenAddr_ ) Ownable(msg.sender) ERC20(name_, symbol_) { whitelist = whitelist_; usdToken = usdTokenAddr_; require(usdTokenAddr_ != ERC20(address(0)), "Invalid USD token address"); require( TOKEN_DECIMALS >= usdToken.decimals(), "Token decimals must be greater than or equal to USD token decimals" ); _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); decimalsDiff = TOKEN_DECIMALS - usdToken.decimals(); } function getWithdrawalRequest( string calldata id_ ) external view returns (WithdrawalRequest memory) { return withdrawalRequests[id_]; } function usdToToken(uint256 usdAmount_) private view returns (uint256) { return usdAmount_ * 10 ** decimalsDiff; } function tokenToUsd(uint256 tokenAmount_) private view returns (uint256) { return tokenAmount_ / 10 ** decimalsDiff; } function setUpdatedTvlAt(uint256 timestamp) external isAdminOrOwner { uint256 t = timestamp / 86400 * 86400; if (t > tvlUpdatedAt) { tvl = getUpdatedTvlAt(t); tvlUpdatedAt = t; } } function foo(uint256 a, uint256 b, uint256 c) external pure returns (uint256) { return FixedPointMathLib.rpow(a, b, c); } function getUpdatedTvlAt(uint256 timestamp) private view returns (uint256) { if (dailyYieldMicrobip == 0 || tvlUpdatedAt == 0) { return tvl; } require(timestamp >= tvlUpdatedAt, "Invalid timestamp"); uint256 nDays = (timestamp - tvlUpdatedAt) / 86400; return Math.mulDiv(tvl, FixedPointMathLib.rpow(10000000000 + dailyYieldMicrobip, nDays, 10000000000), 10000000000); } function getUpdatedTvl() public view returns (uint256) { return getUpdatedTvlAt(block.timestamp); } // Recover unintended tokens sent to the contract function withdrawERC20(ERC20 token_) external isAdminOrOwner nonReentrant { require( token_ != usdToken, "Cannot withdraw USD token with this function" ); token_.transfer(msg.sender, token_.balanceOf(address(this))); } function commitedBalanceOf( address account ) external view returns (uint256) { return totalCommitments[account]; } function commitedBalanceOfByDeadline( address account, uint256 deadline ) external view returns (uint256) { return commitments[account][deadline]; } function setMinInvestmentAmount(uint256 minInvestmentAmount_) external isAdminOrOwner { minInvestmentAmount = minInvestmentAmount_; } function setMaxInvestmentAmount(uint256 maxInvestmentAmount_) external isAdminOrOwner { maxInvestmentAmount = maxInvestmentAmount_; } function setMinWithdrawalAmount(uint256 minWithdrawalAmount_) external isAdminOrOwner { minWithdrawalAmount = minWithdrawalAmount_; } function setMaxWithdrawalAmount(uint256 maxWithdrawalAmount_) external isAdminOrOwner { maxWithdrawalAmount = maxWithdrawalAmount_; } event InvestmentRequested(address indexed receiver, string requestId, uint256 assets, uint256 commitmentDeadline); function requestInvestment( string calldata id_, uint256 usdAmount_ ) external { require(bytes(id_)[0] != 0x25, "ID cannot start with %"); _doRequestInvestment(id_, msg.sender, usdAmount_); emit InvestmentRequested(msg.sender, id_, usdAmount_, 0); } function _doRequestInvestment( string memory id_, address funder_, uint256 usdAmount_ ) nonReentrant private { require(open, "not open for investment"); require(usdAmount_ > 0, "amount must be greater than zero"); require(usdAmount_ >= minInvestmentAmount, "amount must be greater than or equal to minInvestmentAmount"); require(usdAmount_ <= maxInvestmentAmount, "amount must be less than or equal to maxInvestmentAmount"); require(investmentRequests[id_].timestamp == 0, "Investment request with this ID already exists"); investmentRequests[id_] = InvestmentRequest({ closed: false, claimable: false, requester: msg.sender, timestamp: block.timestamp, usdAmount: usdAmount_, commitmentDeadline: 0 }); bool transferred = usdToken.transferFrom(funder_, custodian, usdAmount_); require(transferred, "Transfer failed"); } function requestInvestmentCommitted( string calldata id_, uint256 usdAmount_, uint256 deadline_ ) external { require(bytes(id_)[0] != 0x25, "ID cannot start with %"); require(deadline_ > block.timestamp, "Invalid deadline"); _doRequestInvestment(id_, msg.sender, usdAmount_); investmentRequests[id_].commitmentDeadline = deadline_; emit InvestmentRequested(msg.sender, id_, usdAmount_, deadline_); } function releaseCommitment(uint256 deadline_) external { require(block.timestamp >= deadline_, "Deadline has not passed yet"); _doReleaseCommitment(msg.sender, deadline_); } function adminReleaseCommitment( address account, uint256 deadline_ ) external isAdminOrOwner { _doReleaseCommitment(account, deadline_); } event CommitmentReleased(address indexed account, uint256 deadline, uint256 amount); function _doReleaseCommitment(address account, uint256 deadline_) private { require( commitments[account][deadline_] > 0, "No commitment for this deadline" ); uint256 amount = commitments[account][deadline_]; totalCommitments[account] -= amount; commitments[account][deadline_] = 0; emit CommitmentReleased(account, deadline_, amount); } event Repayment(address indexed repayer, uint256 amount); function repay(uint256 usdAmount_) nonReentrant external { require(usdAmount_ > 0, "Amount must be greater than zero"); bool transferred = usdToken.transferFrom(msg.sender, custodian, usdAmount_); require(transferred, "Transfer failed"); emit Repayment(msg.sender, usdAmount_); } event WithdrawalRequested(address indexed receiver, string requestId, uint256 assets); function requestWithdrawal(string calldata id_, uint256 amount_) external { require(bytes(id_)[0] != 0x25, "ID cannot start with %"); _doRequestWithdrawal(id_, msg.sender, amount_, false); emit WithdrawalRequested(msg.sender, id_, amount_); } function adminRequestWithdrawal( address account_, string calldata id_, uint256 amount_ ) external isAdminOrOwner { require(amount_ > 0, "Amount must be greater than zero"); require( withdrawalRequests[id_].timestamp == 0, "Withdrawal request with this ID already exists" ); require( balanceOf(account_) >= amount_ + totalCommitments[account_], "Insufficient balance" ); _doRequestWithdrawal(id_, account_, amount_, true); emit WithdrawalRequested(account_, id_, amount_); } function _doRequestWithdrawal( string memory id_, address funder_, uint256 amount_, bool fromAdmin ) private { require(amount_ > 0, "Amount must be greater than zero"); require(amount_ >= minWithdrawalAmount, "Amount must be greater than or equal to minWithdrawalAmount"); require(amount_ <= maxWithdrawalAmount, "Amount must be less than or equal to maxWithdrawalAmount"); require( withdrawalRequests[id_].timestamp == 0, "Withdrawal request with this ID already exists" ); require( balanceOf(funder_) >= amount_ + totalCommitments[funder_], "Insufficient balance" ); uint256 tvl1 = getUpdatedTvl(); uint256 usdAmount = Math.mulDiv(amount_, tvl1, totalSupply()); if (fromAdmin) { _burn(funder_, amount_); } else { if (msg.sender == funder_) { _burn(msg.sender, amount_); } else { _spendAllowance(funder_, msg.sender, amount_); _burn(funder_, amount_); } } tvl = tvl1 - usdAmount; tvlUpdatedAt = block.timestamp / 86400 * 86400; withdrawalRequests[id_] = WithdrawalRequest({ closed: false, claimable: false, requester: funder_, timestamp: block.timestamp, tokenAmount: amount_, usdAmount: usdAmount, claimableUsdAmount: 0 }); } event CustodianSet(address indexed custodian); function setCustodian(address custodian_) external isAdminOrOwner { require(custodian_ != address(0), "Invalid custodian address"); custodian = custodian_; emit CustodianSet(custodian_); } event OpenSet(bool open); function setOpen(bool open_) external isAdminOrOwner { open = open_; emit OpenSet(open_); } event DailyYieldSet(uint256 dailyYieldMicrobip); function setDailyYieldMicrobip( uint256 dailyYieldMicrobip_ ) external isAdminOrOwner { tvl = getUpdatedTvl(); tvlUpdatedAt = block.timestamp / 86400 * 86400; dailyYieldMicrobip = dailyYieldMicrobip_; emit DailyYieldSet(dailyYieldMicrobip_); } function approveThenClaimInvestment( string calldata id_ ) external isAdminOrOwner { approveInvestment(id_); claimInvestmentImpl(id_, address(0)); } event InvestmentApproved(address indexed receiver, string requestId, uint256 usdAmount); function approveInvestment(string calldata id_) public isAdminOrOwner { InvestmentRequest storage request = investmentRequests[id_]; require( request.timestamp > 0, "Investment request with this ID does not exist" ); require(!request.closed, "Investment request is already closed"); require(!request.claimable, "Investment request is already claimable"); request.claimable = true; claimableDeposits[request.requester] += request.usdAmount; emit InvestmentApproved(request.requester, id_, request.usdAmount); } event InvestmentClaimed(address indexed receiver, string requestId, uint256 tokenAmount); function claimInvestment(string calldata id_, address receiver) external { require(bytes(id_)[0] != 0x25, "ID cannot start with %"); uint256 rv = claimInvestmentImpl(id_, receiver); emit InvestmentClaimed(receiver, id_, rv); } function claimInvestmentImpl( string memory id_, address receiver ) private returns (uint256) { InvestmentRequest storage request = investmentRequests[id_]; require( request.timestamp > 0, "Investment request with this ID does not exist" ); require(isOperator(request.requester, msg.sender), "Sender is not an authorized operator"); require(!request.closed, "Investment request is already closed"); require(request.claimable, "Investment request is not claimable"); if (receiver == address(0)) { receiver = request.requester; } uint256 tokenAmount; uint256 tvl1 = getUpdatedTvl(); if (tvl1 == 0) { tokenAmount = usdToToken(request.usdAmount); } else { tokenAmount = Math.mulDiv(totalSupply(), usdToToken(request.usdAmount), usdToToken(tvl1)); } tvl = tvl1 + request.usdAmount; tvlUpdatedAt = block.timestamp / 86400 * 86400; _mint(receiver, tokenAmount); if (request.commitmentDeadline > 0) { commitments[receiver][request.commitmentDeadline] += tokenAmount; totalCommitments[receiver] += tokenAmount; } request.claimable = false; request.closed = true; claimableDeposits[request.requester] -= request.usdAmount; return tokenAmount; } event InvestmentRejected(address indexed receiver, string requestId); function rejectInvestment(string calldata id_) external isAdminOrOwner { require(bytes(id_)[0] != 0x25, "ID cannot start with %"); rejectInvestmentImpl(id_); } function rejectInvestmentImpl(string memory id_) nonReentrant private { InvestmentRequest storage r = investmentRequests[id_]; require( r.timestamp > 0, "Investment request with this ID does not exist" ); require(!r.closed, "Investment request is already closed"); r.closed = true; bool tranferred = usdToken.transferFrom(msg.sender, r.requester, r.usdAmount); require(tranferred, "Transfer failed"); emit InvestmentRejected(r.requester, id_); } function rejectDeposit(address controller_) external isAdminOrOwner { require(_depositRequestCounter[controller_] > 0, "Deposit request not found"); string memory id = string( _getRequestId("deposit", controller_, _currentDepositRequest[controller_]) ); _currentDepositRequest[controller_]++; rejectInvestmentImpl(id); } function approveThenClaimWithdrawal( string calldata id_, uint256 usdAmount_ ) external { approveWithdrawal(id_, usdAmount_); claimWithdrawal(id_, address(0)); } event WithdrawalApproved(address indexed receiver, string requestId, uint256 usdAmount); function approveWithdrawal( string calldata id_, uint256 usdAmount_) public isAdminOrOwner nonReentrant { WithdrawalRequest storage request = withdrawalRequests[id_]; require( request.timestamp > 0, "Withdrawal request with this ID does not exist" ); require(!request.closed, "Withdrawal request is already closed"); require(usdAmount_ > 0, "Amount must be greater than zero"); require( usdAmount_ <= request.usdAmount, "Amount must be less than or equal to requested amount" ); request.claimable = true; request.claimableUsdAmount = usdAmount_; claimableRedeems[request.requester] += usdAmount_; bool transferred = usdToken.transferFrom(msg.sender, address(this), usdAmount_); require(transferred, "Transfer failed"); emit WithdrawalApproved(request.requester, id_, usdAmount_); } function claimWithdrawalImpl(string memory id_, address receiver) nonReentrant private returns (uint256) { WithdrawalRequest storage request = withdrawalRequests[id_]; require( request.timestamp > 0, "Withdrawal request with this ID does not exist" ); require(isOperator(request.requester, msg.sender), "Sender is not an authorized operator"); require(!request.closed, "Withdrawal request is already closed"); require(request.claimable, "Withdrawal request is not claimable"); if (receiver == address(0)) { receiver = request.requester; } request.claimable = false; request.closed = true; claimableRedeems[request.requester] -= request.claimableUsdAmount; bool transferred = usdToken.transfer(receiver, request.claimableUsdAmount); require(transferred, "Transfer failed"); return request.claimableUsdAmount; } event WithdrawalClaimed(address indexed receiver, string requestId, uint256 usdAmount); function claimWithdrawal(string memory id_, address receiver) public { require(bytes(id_)[0] != 0x25, "ID cannot start with %"); uint256 rv = claimWithdrawalImpl(id_, receiver); emit WithdrawalClaimed(receiver, id_, rv); } mapping(address => uint) _depositRequestCounter; mapping(address => uint) _redeemRequestCounter; mapping(address => uint) _currentDepositRequest; mapping(address => uint) _currentRedeemRequest; mapping(address => uint) claimableDeposits; mapping(address => uint) claimableRedeems; mapping(address => mapping(address => bool)) operators; function depositRequestCounter(address controller) external view returns (uint) { return _depositRequestCounter[controller]; } function redeemRequestCounter(address controller) external view returns (uint) { return _redeemRequestCounter[controller]; } function _getRequestId(string memory t, address addr, uint256 rid) private pure returns (string memory) { return string(abi.encodePacked("%", t, "-", Strings.toHexString(uint256(uint160(addr)), 20), "-", Strings.toString(rid))); } function requestDeposit( uint256 assets_, address controller_, address owner_ ) external override returns (uint256 requestId) { require( isOperator(controller_, msg.sender), "Sender is not an authorized operator" ); requestId = _depositRequestCounter[controller_]++; _doRequestInvestment( _getRequestId("deposit", controller_, requestId), owner_, assets_ ); emit DepositRequest(controller_, owner_, requestId, msg.sender, assets_); return requestId; } function pendingDepositRequest( uint256 requestId, address controller ) external view override returns (uint256 pendingAssets) { InvestmentRequest memory r = investmentRequests[ _getRequestId("deposit", controller, requestId) ]; require(r.requester == controller, "Controller mismatch"); if (r.closed || r.claimable) { return 0; } return r.usdAmount; } function claimableDepositRequest( uint256 requestId, address controller ) external view override returns (uint256 claimableAssets) { InvestmentRequest memory r = investmentRequests[ _getRequestId("deposit", controller, requestId) ]; require(r.requester == controller, "Controller mismatch"); if (r.closed || !r.claimable) { return 0; } return r.usdAmount; } function deposit( uint256 assets, address receiver ) public override returns (uint256 shares) { return deposit(assets, receiver, msg.sender); } function deposit( uint256 assets, address receiver, address controller ) public returns (uint256 shares) { require( isOperator(controller, msg.sender), "Sender is not an authorized operator" ); require(_depositRequestCounter[controller] > 0, "Deposit request not found"); string memory id = string( _getRequestId("deposit", controller, _currentDepositRequest[controller]) ); InvestmentRequest memory r = investmentRequests[id]; require(r.usdAmount == assets, "Deposit amount does not match request"); require(r.requester == controller, "Controller mismatch"); _currentDepositRequest[controller]++; shares = claimInvestmentImpl(id, receiver); emit Deposit(msg.sender, receiver, assets, shares); } function mint( uint256 shares, address receiver, address controller ) external returns (uint256 assets) { return deposit(convertToAssets(shares), receiver, controller); } function mint( uint256 shares, address receiver ) external override returns (uint256) { return deposit(convertToAssets(shares), receiver); } function requestRedeem( uint256 shares_, address controller_, address owner_ ) external override returns (uint256 requestId) { require( isOperator(controller_, msg.sender), "Sender is not an authorized operator" ); requestId = _redeemRequestCounter[controller_]++; _doRequestWithdrawal( _getRequestId("redeem", controller_, requestId), owner_, shares_, false ); emit RedeemRequest(controller_, owner_, requestId, msg.sender, shares_); return requestId; } function pendingRedeemRequest( uint256 requestId, address controller ) external view override returns (uint256 pendingShares) { WithdrawalRequest memory r = withdrawalRequests[ _getRequestId("redeem", controller, requestId) ]; require(r.requester == controller, "Controller mismatch"); if (r.closed || r.claimable) { return 0; } return r.tokenAmount; } function claimableRedeemRequest( uint256 requestId, address controller ) external view override returns (uint256 claimableShares) { WithdrawalRequest memory r = withdrawalRequests[ _getRequestId("redeem", controller, requestId) ]; require(r.requester == controller, "Controller mismatch"); if (r.closed || !r.claimable) { return 0; } return r.tokenAmount; } function isOperator( address controller, address operator ) public view override returns (bool) { return controller == operator || operator == owner() || hasRole(ADMIN_ROLE, operator) || operators[controller][operator]; } function setOperator( address operator, bool approved ) external override returns (bool) { require(operator != address(0), "Invalid operator address"); operators[msg.sender][operator] = approved; emit OperatorSet(msg.sender, operator, approved); return true; } event WhitelistSet(address indexed whitelist); function setWhitelist(Whitelist value) external isAdminOrOwner { whitelist = value; emit WhitelistSet(address(value)); } function redeem( uint256 shares, address receiver, address controller ) public returns (uint256 assets) { require(isOperator(controller, msg.sender), "Sender is not an authorized operator"); require(_redeemRequestCounter[controller] > 0, "Redeem request not found"); string memory id = _getRequestId("redeem", controller, _currentRedeemRequest[controller]); WithdrawalRequest memory r = withdrawalRequests[id]; require(r.timestamp > 0, "Redeem request not found"); require(r.claimable, "Redeem request not claimable"); require( r.tokenAmount == shares, "Redeem amount does not match request" ); require(r.requester == controller, "Controller mismatch"); _currentRedeemRequest[controller]++; claimWithdrawalImpl(id, receiver); emit Withdraw(msg.sender, receiver, controller, r.usdAmount, shares); return r.usdAmount; } function _update( address from, address to, uint256 value ) internal override(ERC20) { require( from == address(0) || whitelist.isWhitelisted(from), "Sender is not whitelisted" ); require( to == address(0) || whitelist.isWhitelisted(to), "Recipient is not whitelisted" ); super._update(from, to, value); } function supportsInterface( bytes4 interfaceId ) public view override returns (bool) { return interfaceId == type(IERC4626).interfaceId || interfaceId == type(IERC7540Deposit).interfaceId || interfaceId == type(IERC7540Redeem).interfaceId || interfaceId == type(IERC7540Operator).interfaceId || interfaceId == type(IERC7575).interfaceId || interfaceId == type(IERC165).interfaceId || super.supportsInterface(interfaceId); } function share() external view override returns (address shareTokenAddress) { return address(this); } function asset() external view returns (address assetTokenAddress) { return address(usdToken); } function convertToShares(uint256 assets) external view returns (uint256 shares) { uint256 tvl1 = getUpdatedTvl(); if (tvl1 == 0) { return 0; } return Math.mulDiv(assets, totalSupply(), tvl1); } function convertToAssets( uint256 shares ) public view returns (uint256 assets) { uint256 tvl1 = getUpdatedTvl(); if (tvl1 == 0) { return 0; } return tokenToUsd(Math.mulDiv(shares, tvl1, totalSupply())); } function updatedTvl(uint256 assets) public view returns (uint256 shares) { uint256 tvl1 = getUpdatedTvl(); if (tvl1 == 0) { return usdToToken(assets); } return Math.mulDiv(assets, totalSupply(), tvl1); } function maxDeposit( address receiver ) external view returns (uint256 maxAssets) { if (!whitelist.isWhitelisted(receiver) || _depositRequestCounter[msg.sender] == 0) { return 0; } InvestmentRequest memory r = investmentRequests[_getRequestId("deposit", msg.sender, _currentDepositRequest[msg.sender])]; if (r.requester != msg.sender || !r.claimable) { return 0; } return r.usdAmount; } function maxMint( address receiver ) external view returns (uint256 maxShares) { if (!whitelist.isWhitelisted(receiver) || _depositRequestCounter[msg.sender] == 0) { return 0; } InvestmentRequest memory r = investmentRequests[_getRequestId("deposit", msg.sender, _currentDepositRequest[msg.sender])]; if (r.requester != msg.sender || !r.claimable) { return 0; } return updatedTvl(r.usdAmount); } function maxRedeem( address owner ) external view returns (uint256 maxShares) { if (!whitelist.isWhitelisted(owner) || _redeemRequestCounter[msg.sender] == 0) { return 0; } WithdrawalRequest memory r = withdrawalRequests[_getRequestId("redeem", msg.sender, _currentRedeemRequest[msg.sender])]; if (r.requester != msg.sender || !r.claimable) { return 0; } return r.tokenAmount; } function maxWithdraw( address owner ) external view returns (uint256 maxAssets) { if (!whitelist.isWhitelisted(owner) || _redeemRequestCounter[msg.sender] == 0) { return 0; } WithdrawalRequest memory r = withdrawalRequests[_getRequestId("redeem", msg.sender, _currentRedeemRequest[msg.sender])]; if (r.requester != msg.sender || !r.claimable) { return 0; } return r.usdAmount; } function previewDeposit( uint256 assets ) external view returns (uint256 shares) { uint256 t = getUpdatedTvl(); if (t == 0) { return usdToToken(assets); } return usdToToken(Math.mulDiv(tokenToUsd(totalSupply()), assets, t)); } function previewMint( uint256 shares ) external view returns (uint256 assets) { uint256 t = totalSupply(); if (t == 0) { return tokenToUsd(shares); } return Math.mulDiv(shares, getUpdatedTvl(), t); } function previewRedeem( uint256 shares ) external view returns (uint256 assets) { uint256 t = totalSupply(); if (t == 0) { return 0; } return Math.mulDiv(shares, getUpdatedTvl(), t); } function previewWithdraw( uint256 assets ) external view returns (uint256 shares) { uint256 t = getUpdatedTvl(); if (t == 0) { return 0; } return Math.mulDiv(assets, totalSupply(), t); } function totalAssets() external view returns (uint256 totalManagedAssets) { return getUpdatedTvl(); } function withdraw( uint256 assets, address receiver, address owner ) external returns (uint256 shares) { return redeem(updatedTvl(assets), receiver, owner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC-165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.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. * * The initial owner is set to the address provided by the deployer. 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 Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC4626.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol"; import {IERC20Metadata} from "../token/ERC20/extensions/IERC20Metadata.sol"; /** * @dev Interface of the ERC-4626 "Tokenized Vault Standard", as defined in * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]. */ interface IERC4626 is IERC20, IERC20Metadata { event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares); event Withdraw( address indexed sender, address indexed receiver, address indexed owner, uint256 assets, uint256 shares ); /** * @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. * * - MUST be an ERC-20 token contract. * - MUST NOT revert. */ function asset() external view returns (address assetTokenAddress); /** * @dev Returns the total amount of the underlying asset that is “managed” by Vault. * * - SHOULD include any compounding that occurs from yield. * - MUST be inclusive of any fees that are charged against assets in the Vault. * - MUST NOT revert. */ function totalAssets() external view returns (uint256 totalManagedAssets); /** * @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal * scenario where all the conditions are met. * * - MUST NOT be inclusive of any fees that are charged against assets in the Vault. * - MUST NOT show any variations depending on the caller. * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. * - MUST NOT revert. * * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and * from. */ function convertToShares(uint256 assets) external view returns (uint256 shares); /** * @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal * scenario where all the conditions are met. * * - MUST NOT be inclusive of any fees that are charged against assets in the Vault. * - MUST NOT show any variations depending on the caller. * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. * - MUST NOT revert. * * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and * from. */ function convertToAssets(uint256 shares) external view returns (uint256 assets); /** * @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, * through a deposit call. * * - MUST return a limited value if receiver is subject to some deposit limit. * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. * - MUST NOT revert. */ function maxDeposit(address receiver) external view returns (uint256 maxAssets); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given * current on-chain conditions. * * - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit * call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called * in the same transaction. * - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the * deposit would be accepted, regardless if the user has enough tokens approved, etc. * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by depositing. */ function previewDeposit(uint256 assets) external view returns (uint256 shares); /** * @dev Mints shares Vault shares to receiver by depositing exactly amount of underlying tokens. * * - MUST emit the Deposit event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the * deposit execution, and are accounted for during deposit. * - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not * approving enough underlying tokens to the Vault contract, etc). * * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token. */ function deposit(uint256 assets, address receiver) external returns (uint256 shares); /** * @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. * - MUST return a limited value if receiver is subject to some mint limit. * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. * - MUST NOT revert. */ function maxMint(address receiver) external view returns (uint256 maxShares); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given * current on-chain conditions. * * - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call * in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the * same transaction. * - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint * would be accepted, regardless if the user has enough tokens approved, etc. * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by minting. */ function previewMint(uint256 shares) external view returns (uint256 assets); /** * @dev Mints exactly shares Vault shares to receiver by depositing amount of underlying tokens. * * - MUST emit the Deposit event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint * execution, and are accounted for during mint. * - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not * approving enough underlying tokens to the Vault contract, etc). * * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token. */ function mint(uint256 shares, address receiver) external returns (uint256 assets); /** * @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the * Vault, through a withdraw call. * * - MUST return a limited value if owner is subject to some withdrawal limit or timelock. * - MUST NOT revert. */ function maxWithdraw(address owner) external view returns (uint256 maxAssets); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, * given current on-chain conditions. * * - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw * call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if * called * in the same transaction. * - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though * the withdrawal would be accepted, regardless if the user has enough shares, etc. * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by depositing. */ function previewWithdraw(uint256 assets) external view returns (uint256 shares); /** * @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver. * * - MUST emit the Withdraw event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the * withdraw execution, and are accounted for during withdraw. * - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner * not having enough shares, etc). * * Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. * Those methods should be performed separately. */ function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares); /** * @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, * through a redeem call. * * - MUST return a limited value if owner is subject to some withdrawal limit or timelock. * - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. * - MUST NOT revert. */ function maxRedeem(address owner) external view returns (uint256 maxShares); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block, * given current on-chain conditions. * * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call * in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the * same transaction. * - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the * redemption would be accepted, regardless if the user has enough shares, etc. * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by redeeming. */ function previewRedeem(uint256 shares) external view returns (uint256 assets); /** * @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver. * * - MUST emit the Withdraw event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the * redeem execution, and are accounted for during redeem. * - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner * not having enough shares, etc). * * NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. * Those methods should be performed separately. */ function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.20; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.20; import {IERC20Permit} from "./IERC20Permit.sol"; import {ERC20} from "../ERC20.sol"; import {ECDSA} from "../../../utils/cryptography/ECDSA.sol"; import {EIP712} from "../../../utils/cryptography/EIP712.sol"; import {Nonces} from "../../../utils/Nonces.sol"; /** * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. * * Adds the {permit} method, which can be used to change an account's ERC-20 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. */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces { bytes32 private constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Permit deadline has expired. */ error ERC2612ExpiredSignature(uint256 deadline); /** * @dev Mismatched signature. */ error ERC2612InvalidSigner(address signer, address owner); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC-20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @inheritdoc IERC20Permit */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { if (block.timestamp > deadline) { revert ERC2612ExpiredSignature(deadline); } bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); if (signer != owner) { revert ERC2612InvalidSigner(signer, owner); } _approve(owner, spender, value); } /** * @inheritdoc IERC20Permit */ function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) { return super.nonces(owner); } /** * @inheritdoc IERC20Permit */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view virtual returns (bytes32) { return _domainSeparatorV4(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. * * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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 Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover( bytes32 hash, bytes memory signature ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly ("memory-safe") { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures] */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.20; import {MessageHashUtils} from "./MessageHashUtils.sol"; import {ShortStrings, ShortString} from "../ShortStrings.sol"; import {IERC5267} from "../../interfaces/IERC5267.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data. * * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * @custom:oz-upgrades-unsafe-allow state-variable-immutable */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {IERC-5267}. */ function eip712Domain() public view virtual returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: By default this function reads _name which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Name() internal view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } /** * @dev The version parameter for the EIP712 domain. * * NOTE: By default this function reads _version which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Version() internal view returns (string memory) { return _version.toStringWithFallback(_versionFallback); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; import {Strings} from "../Strings.sol"; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an ERC-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { assembly ("memory-safe") { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an ERC-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an ERC-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { assembly ("memory-safe") { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol) pragma solidity ^0.8.20; import {Panic} from "../Panic.sol"; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an success flag (no overflow). */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow). */ function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow). */ function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a success flag (no division by zero). */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero). */ function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * SafeCast.toUint(condition)); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. Panic.panic(Panic.DIVISION_BY_ZERO); } // The following calculation ensures accurate ceiling division without overflow. // Since a is non-zero, (a - 1) / b will not overflow. // The largest possible result occurs when (a - 1) / b is type(uint256).max, // but the largest value we can obtain is type(uint256).max - 1, which happens // when a = type(uint256).max and b = 1. unchecked { return SafeCast.toUint(a > 0) * ((a - 1) / b + 1); } } /** * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2²⁵⁶ + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0. if (denominator <= prod1) { Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW)); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2²⁵⁶ / 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²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv ≡ 1 mod 2⁴. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2⁸ inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶ inverse *= 2 - denominator * inverse; // inverse mod 2³² inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴ inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸ inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶ // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @dev Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0); } /** * @dev Calculate the modular multiplicative inverse of a number in Z/nZ. * * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0. * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible. * * If the input value is not inversible, 0 is returned. * * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}. */ function invMod(uint256 a, uint256 n) internal pure returns (uint256) { unchecked { if (n == 0) return 0; // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version) // Used to compute integers x and y such that: ax + ny = gcd(a, n). // When the gcd is 1, then the inverse of a modulo n exists and it's x. // ax + ny = 1 // ax = 1 + (-y)n // ax ≡ 1 (mod n) # x is the inverse of a modulo n // If the remainder is 0 the gcd is n right away. uint256 remainder = a % n; uint256 gcd = n; // Therefore the initial coefficients are: // ax + ny = gcd(a, n) = n // 0a + 1n = n int256 x = 0; int256 y = 1; while (remainder != 0) { uint256 quotient = gcd / remainder; (gcd, remainder) = ( // The old remainder is the next gcd to try. remainder, // Compute the next remainder. // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd // where gcd is at most n (capped to type(uint256).max) gcd - remainder * quotient ); (x, y) = ( // Increment the coefficient of a. y, // Decrement the coefficient of n. // Can overflow, but the result is casted to uint256 so that the // next value of y is "wrapped around" to a value between 0 and n - 1. x - y * int256(quotient) ); } if (gcd != 1) return 0; // No inverse exists. return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative. } } /** * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`. * * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that * `a**(p-2)` is the modular multiplicative inverse of a in Fp. * * NOTE: this function does NOT check that `p` is a prime greater than `2`. */ function invModPrime(uint256 a, uint256 p) internal view returns (uint256) { unchecked { return Math.modExp(a, p - 2, p); } } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m) * * Requirements: * - modulus can't be zero * - underlying staticcall to precompile must succeed * * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make * sure the chain you're using it on supports the precompiled contract for modular exponentiation * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, * the underlying function will succeed given the lack of a revert, but the result may be incorrectly * interpreted as 0. */ function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) { (bool success, uint256 result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying * to operate modulo 0 or if the underlying precompile reverted. * * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack * of a revert, but the result may be incorrectly interpreted as 0. */ function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) { if (m == 0) return (false, 0); assembly ("memory-safe") { let ptr := mload(0x40) // | Offset | Content | Content (Hex) | // |-----------|------------|--------------------------------------------------------------------| // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x60:0x7f | value of b | 0x<.............................................................b> | // | 0x80:0x9f | value of e | 0x<.............................................................e> | // | 0xa0:0xbf | value of m | 0x<.............................................................m> | mstore(ptr, 0x20) mstore(add(ptr, 0x20), 0x20) mstore(add(ptr, 0x40), 0x20) mstore(add(ptr, 0x60), b) mstore(add(ptr, 0x80), e) mstore(add(ptr, 0xa0), m) // Given the result < m, it's guaranteed to fit in 32 bytes, // so we can use the memory scratch space located at offset 0. success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20) result := mload(0x00) } } /** * @dev Variant of {modExp} that supports inputs of arbitrary length. */ function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) { (bool success, bytes memory result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Variant of {tryModExp} that supports inputs of arbitrary length. */ function tryModExp( bytes memory b, bytes memory e, bytes memory m ) internal view returns (bool success, bytes memory result) { if (_zeroBytes(m)) return (false, new bytes(0)); uint256 mLen = m.length; // Encode call args in result and move the free memory pointer result = abi.encodePacked(b.length, e.length, mLen, b, e, m); assembly ("memory-safe") { let dataPtr := add(result, 0x20) // Write result on top of args to avoid allocating extra memory. success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen) // Overwrite the length. // result.length > returndatasize() is guaranteed because returndatasize() == m.length mstore(result, mLen) // Set the memory pointer after the returned data. mstore(0x40, add(dataPtr, mLen)) } } /** * @dev Returns whether the provided byte array is zero. */ function _zeroBytes(bytes memory byteArray) private pure returns (bool) { for (uint256 i = 0; i < byteArray.length; ++i) { if (byteArray[i] != 0) { return false; } } return true; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * This method is based on Newton's method for computing square roots; the algorithm is restricted to only * using integer operations. */ function sqrt(uint256 a) internal pure returns (uint256) { unchecked { // Take care of easy edge cases when a == 0 or a == 1 if (a <= 1) { return a; } // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between // the current value as `ε_n = | x_n - sqrt(a) |`. // // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is // bigger than any uint256. // // By noticing that // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)` // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar // to the msb function. uint256 aa = a; uint256 xn = 1; if (aa >= (1 << 128)) { aa >>= 128; xn <<= 64; } if (aa >= (1 << 64)) { aa >>= 64; xn <<= 32; } if (aa >= (1 << 32)) { aa >>= 32; xn <<= 16; } if (aa >= (1 << 16)) { aa >>= 16; xn <<= 8; } if (aa >= (1 << 8)) { aa >>= 8; xn <<= 4; } if (aa >= (1 << 4)) { aa >>= 4; xn <<= 2; } if (aa >= (1 << 2)) { xn <<= 1; } // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1). // // We can refine our estimation by noticing that the middle of that interval minimizes the error. // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2). // This is going to be our x_0 (and ε_0) xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2) // From here, Newton's method give us: // x_{n+1} = (x_n + a / x_n) / 2 // // One should note that: // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a // = ((x_n² + a) / (2 * x_n))² - a // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²) // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²) // = (x_n² - a)² / (2 * x_n)² // = ((x_n² - a) / (2 * x_n))² // ≥ 0 // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n // // This gives us the proof of quadratic convergence of the sequence: // ε_{n+1} = | x_{n+1} - sqrt(a) | // = | (x_n + a / x_n) / 2 - sqrt(a) | // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) | // = | (x_n - sqrt(a))² / (2 * x_n) | // = | ε_n² / (2 * x_n) | // = ε_n² / | (2 * x_n) | // // For the first iteration, we have a special case where x_0 is known: // ε_1 = ε_0² / | (2 * x_0) | // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2))) // ≤ 2**(2*e-4) / (3 * 2**(e-1)) // ≤ 2**(e-3) / 3 // ≤ 2**(e-3-log2(3)) // ≤ 2**(e-4.5) // // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n: // ε_{n+1} = ε_n² / | (2 * x_n) | // ≤ (2**(e-k))² / (2 * 2**(e-1)) // ≤ 2**(2*e-2*k) / 2**e // ≤ 2**(e-2*k) xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5 xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9 xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18 xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36 xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72 // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either // sqrt(a) or sqrt(a) + 1. return xn - SafeCast.toUint(xn > a / xn); } } /** * @dev Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 exp; unchecked { exp = 128 * SafeCast.toUint(value > (1 << 128) - 1); value >>= exp; result += exp; exp = 64 * SafeCast.toUint(value > (1 << 64) - 1); value >>= exp; result += exp; exp = 32 * SafeCast.toUint(value > (1 << 32) - 1); value >>= exp; result += exp; exp = 16 * SafeCast.toUint(value > (1 << 16) - 1); value >>= exp; result += exp; exp = 8 * SafeCast.toUint(value > (1 << 8) - 1); value >>= exp; result += exp; exp = 4 * SafeCast.toUint(value > (1 << 4) - 1); value >>= exp; result += exp; exp = 2 * SafeCast.toUint(value > (1 << 2) - 1); value >>= exp; result += exp; result += SafeCast.toUint(value > 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 + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; uint256 isGt; unchecked { isGt = SafeCast.toUint(value > (1 << 128) - 1); value >>= isGt * 128; result += isGt * 16; isGt = SafeCast.toUint(value > (1 << 64) - 1); value >>= isGt * 64; result += isGt * 8; isGt = SafeCast.toUint(value > (1 << 32) - 1); value >>= isGt * 32; result += isGt * 4; isGt = SafeCast.toUint(value > (1 << 16) - 1); value >>= isGt * 16; result += isGt * 2; result += SafeCast.toUint(value > (1 << 8) - 1); } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.20; /** * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeCast { /** * @dev Value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value); /** * @dev An int value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedIntToUint(int256 value); /** * @dev Value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedIntDowncast(uint8 bits, int256 value); /** * @dev An uint value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedUintToInt(uint256 value); /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits */ function toUint248(uint256 value) internal pure returns (uint248) { if (value > type(uint248).max) { revert SafeCastOverflowedUintDowncast(248, value); } return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits */ function toUint240(uint256 value) internal pure returns (uint240) { if (value > type(uint240).max) { revert SafeCastOverflowedUintDowncast(240, value); } return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits */ function toUint232(uint256 value) internal pure returns (uint232) { if (value > type(uint232).max) { revert SafeCastOverflowedUintDowncast(232, value); } return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { if (value > type(uint224).max) { revert SafeCastOverflowedUintDowncast(224, value); } return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits */ function toUint216(uint256 value) internal pure returns (uint216) { if (value > type(uint216).max) { revert SafeCastOverflowedUintDowncast(216, value); } return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits */ function toUint208(uint256 value) internal pure returns (uint208) { if (value > type(uint208).max) { revert SafeCastOverflowedUintDowncast(208, value); } return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits */ function toUint200(uint256 value) internal pure returns (uint200) { if (value > type(uint200).max) { revert SafeCastOverflowedUintDowncast(200, value); } return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits */ function toUint192(uint256 value) internal pure returns (uint192) { if (value > type(uint192).max) { revert SafeCastOverflowedUintDowncast(192, value); } return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits */ function toUint184(uint256 value) internal pure returns (uint184) { if (value > type(uint184).max) { revert SafeCastOverflowedUintDowncast(184, value); } return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits */ function toUint176(uint256 value) internal pure returns (uint176) { if (value > type(uint176).max) { revert SafeCastOverflowedUintDowncast(176, value); } return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits */ function toUint168(uint256 value) internal pure returns (uint168) { if (value > type(uint168).max) { revert SafeCastOverflowedUintDowncast(168, value); } return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits */ function toUint160(uint256 value) internal pure returns (uint160) { if (value > type(uint160).max) { revert SafeCastOverflowedUintDowncast(160, value); } return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits */ function toUint152(uint256 value) internal pure returns (uint152) { if (value > type(uint152).max) { revert SafeCastOverflowedUintDowncast(152, value); } return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits */ function toUint144(uint256 value) internal pure returns (uint144) { if (value > type(uint144).max) { revert SafeCastOverflowedUintDowncast(144, value); } return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits */ function toUint136(uint256 value) internal pure returns (uint136) { if (value > type(uint136).max) { revert SafeCastOverflowedUintDowncast(136, value); } return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { if (value > type(uint128).max) { revert SafeCastOverflowedUintDowncast(128, value); } return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits */ function toUint120(uint256 value) internal pure returns (uint120) { if (value > type(uint120).max) { revert SafeCastOverflowedUintDowncast(120, value); } return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits */ function toUint112(uint256 value) internal pure returns (uint112) { if (value > type(uint112).max) { revert SafeCastOverflowedUintDowncast(112, value); } return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits */ function toUint104(uint256 value) internal pure returns (uint104) { if (value > type(uint104).max) { revert SafeCastOverflowedUintDowncast(104, value); } return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { if (value > type(uint96).max) { revert SafeCastOverflowedUintDowncast(96, value); } return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits */ function toUint88(uint256 value) internal pure returns (uint88) { if (value > type(uint88).max) { revert SafeCastOverflowedUintDowncast(88, value); } return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits */ function toUint80(uint256 value) internal pure returns (uint80) { if (value > type(uint80).max) { revert SafeCastOverflowedUintDowncast(80, value); } return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits */ function toUint72(uint256 value) internal pure returns (uint72) { if (value > type(uint72).max) { revert SafeCastOverflowedUintDowncast(72, value); } return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { if (value > type(uint64).max) { revert SafeCastOverflowedUintDowncast(64, value); } return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits */ function toUint56(uint256 value) internal pure returns (uint56) { if (value > type(uint56).max) { revert SafeCastOverflowedUintDowncast(56, value); } return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits */ function toUint48(uint256 value) internal pure returns (uint48) { if (value > type(uint48).max) { revert SafeCastOverflowedUintDowncast(48, value); } return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits */ function toUint40(uint256 value) internal pure returns (uint40) { if (value > type(uint40).max) { revert SafeCastOverflowedUintDowncast(40, value); } return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { if (value > type(uint32).max) { revert SafeCastOverflowedUintDowncast(32, value); } return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits */ function toUint24(uint256 value) internal pure returns (uint24) { if (value > type(uint24).max) { revert SafeCastOverflowedUintDowncast(24, value); } return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { if (value > type(uint16).max) { revert SafeCastOverflowedUintDowncast(16, value); } return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits */ function toUint8(uint256 value) internal pure returns (uint8) { if (value > type(uint8).max) { revert SafeCastOverflowedUintDowncast(8, value); } return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { if (value < 0) { revert SafeCastOverflowedIntToUint(value); } return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(248, value); } } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(240, value); } } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(232, value); } } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(224, value); } } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(216, value); } } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(208, value); } } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(200, value); } } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(192, value); } } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(184, value); } } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(176, value); } } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(168, value); } } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(160, value); } } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(152, value); } } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(144, value); } } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(136, value); } } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(128, value); } } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(120, value); } } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(112, value); } } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(104, value); } } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(96, value); } } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(88, value); } } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(80, value); } } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(72, value); } } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(64, value); } } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(56, value); } } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(48, value); } } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(40, value); } } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(32, value); } } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(24, value); } } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(16, value); } } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(8, value); } } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive if (value > uint256(type(int256).max)) { revert SafeCastOverflowedUintToInt(value); } return int256(value); } /** * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump. */ function toUint(bool b) internal pure returns (uint256 u) { assembly ("memory-safe") { u := iszero(iszero(b)) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * int256(SafeCast.toUint(condition))); } } /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson. // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift, // taking advantage of the most significant (or "sign" bit) in two's complement representation. // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result, // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative). int256 mask = n >> 255; // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it. return uint256((n + mask) ^ mask); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol) pragma solidity ^0.8.20; /** * @dev Provides tracking nonces for addresses. Nonces will only increment. */ abstract contract Nonces { /** * @dev The nonce used for an `account` is not the expected current nonce. */ error InvalidAccountNonce(address account, uint256 currentNonce); mapping(address account => uint256) private _nonces; /** * @dev Returns the next unused nonce for an address. */ function nonces(address owner) public view virtual returns (uint256) { return _nonces[owner]; } /** * @dev Consumes a nonce. * * Returns the current value and increments nonce. */ function _useNonce(address owner) internal virtual returns (uint256) { // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be // decremented or reset. This guarantees that the nonce never overflows. unchecked { // It is important to do x++ and not ++x here. return _nonces[owner]++; } } /** * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`. */ function _useCheckedNonce(address owner, uint256 nonce) internal virtual { uint256 current = _useNonce(owner); if (nonce != current) { revert InvalidAccountNonce(owner, current); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol) pragma solidity ^0.8.20; /** * @dev Helper library for emitting standardized panic codes. * * ```solidity * contract Example { * using Panic for uint256; * * // Use any of the declared internal constants * function foo() { Panic.GENERIC.panic(); } * * // Alternatively * function foo() { Panic.panic(Panic.GENERIC); } * } * ``` * * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. * * _Available since v5.1._ */ // slither-disable-next-line unused-state library Panic { /// @dev generic / unspecified error uint256 internal constant GENERIC = 0x00; /// @dev used by the assert() builtin uint256 internal constant ASSERT = 0x01; /// @dev arithmetic underflow or overflow uint256 internal constant UNDER_OVERFLOW = 0x11; /// @dev division or modulo by zero uint256 internal constant DIVISION_BY_ZERO = 0x12; /// @dev enum conversion error uint256 internal constant ENUM_CONVERSION_ERROR = 0x21; /// @dev invalid encoding in storage uint256 internal constant STORAGE_ENCODING_ERROR = 0x22; /// @dev empty array pop uint256 internal constant EMPTY_ARRAY_POP = 0x31; /// @dev array out of bounds access uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32; /// @dev resource error (too large allocation or too large array) uint256 internal constant RESOURCE_ERROR = 0x41; /// @dev calling invalid internal function uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51; /// @dev Reverts with a panic code. Recommended to use with /// the internal constants with predefined codes. function panic(uint256 code) internal pure { assembly ("memory-safe") { mstore(0x00, 0x4e487b71) mstore(0x20, code) revert(0x1c, 0x24) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ShortStrings.sol) pragma solidity ^0.8.20; import {StorageSlot} from "./StorageSlot.sol"; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); assembly ("memory-safe") { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using * {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC-1967 implementation slot: * ```solidity * contract ERC1967 { * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * TIP: Consider using this library along with {SlotDerivation}. */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct Int256Slot { int256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Int256Slot` with member `value` located at `slot`. */ function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { assembly ("memory-safe") { r.slot := store.slot } } /** * @dev Returns a `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { assembly ("memory-safe") { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; assembly ("memory-safe") { ptr := add(buffer, add(32, length)) } while (true) { ptr--; assembly ("memory-safe") { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal * representation, according to EIP-55. */ function toChecksumHexString(address addr) internal pure returns (string memory) { bytes memory buffer = bytes(toHexString(addr)); // hash the hex part of buffer (skip length + 2 bytes, length 40) uint256 hashValue; assembly ("memory-safe") { hashValue := shr(96, keccak256(add(buffer, 0x22), 40)) } for (uint256 i = 41; i > 1; --i) { // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f) if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) { // case shift by xoring with 0x20 buffer[i] ^= 0x20; } hashValue >>= 4; } return string(buffer); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Arithmetic library with operations for fixed-point numbers. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/FixedPointMathLib.sol) /// @author Inspired by USM (https://github.com/usmfum/USM/blob/master/contracts/WadMath.sol) library FixedPointMathLib { /*////////////////////////////////////////////////////////////// SIMPLIFIED FIXED POINT OPERATIONS //////////////////////////////////////////////////////////////*/ uint256 internal constant MAX_UINT256 = 2**256 - 1; uint256 internal constant WAD = 1e18; // The scalar of ETH and most ERC20s. function mulWadDown(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivDown(x, y, WAD); // Equivalent to (x * y) / WAD rounded down. } function mulWadUp(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivUp(x, y, WAD); // Equivalent to (x * y) / WAD rounded up. } function divWadDown(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivDown(x, WAD, y); // Equivalent to (x * WAD) / y rounded down. } function divWadUp(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivUp(x, WAD, y); // Equivalent to (x * WAD) / y rounded up. } /*////////////////////////////////////////////////////////////// LOW LEVEL FIXED POINT OPERATIONS //////////////////////////////////////////////////////////////*/ function mulDivDown( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Equivalent to require(denominator != 0 && (y == 0 || x <= type(uint256).max / y)) if iszero(mul(denominator, iszero(mul(y, gt(x, div(MAX_UINT256, y)))))) { revert(0, 0) } // Divide x * y by the denominator. z := div(mul(x, y), denominator) } } function mulDivUp( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Equivalent to require(denominator != 0 && (y == 0 || x <= type(uint256).max / y)) if iszero(mul(denominator, iszero(mul(y, gt(x, div(MAX_UINT256, y)))))) { revert(0, 0) } // If x * y modulo the denominator is strictly greater than 0, // 1 is added to round up the division of x * y by the denominator. z := add(gt(mod(mul(x, y), denominator), 0), div(mul(x, y), denominator)) } } function rpow( uint256 x, uint256 n, uint256 scalar ) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { switch x case 0 { switch n case 0 { // 0 ** 0 = 1 z := scalar } default { // 0 ** n = 0 z := 0 } } default { switch mod(n, 2) case 0 { // If n is even, store scalar in z for now. z := scalar } default { // If n is odd, store x in z for now. z := x } // Shifting right by 1 is like dividing by 2. let half := shr(1, scalar) for { // Shift n right by 1 before looping to halve it. n := shr(1, n) } n { // Shift n right by 1 each iteration to halve it. n := shr(1, n) } { // Revert immediately if x ** 2 would overflow. // Equivalent to iszero(eq(div(xx, x), x)) here. if shr(128, x) { revert(0, 0) } // Store x squared. let xx := mul(x, x) // Round to the nearest number. let xxRound := add(xx, half) // Revert if xx + half overflowed. if lt(xxRound, xx) { revert(0, 0) } // Set x to scaled xxRound. x := div(xxRound, scalar) // If n is even: if mod(n, 2) { // Compute z * x. let zx := mul(z, x) // If z * x overflowed: if iszero(eq(div(zx, x), z)) { // Revert if x is non-zero. if iszero(iszero(x)) { revert(0, 0) } } // Round to the nearest number. let zxRound := add(zx, half) // Revert if zx + half overflowed. if lt(zxRound, zx) { revert(0, 0) } // Return properly scaled zxRound. z := div(zxRound, scalar) } } } } } /*////////////////////////////////////////////////////////////// GENERAL NUMBER UTILITIES //////////////////////////////////////////////////////////////*/ function sqrt(uint256 x) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { let y := x // We start y at x, which will help us make our initial estimate. z := 181 // The "correct" value is 1, but this saves a multiplication later. // This segment is to get a reasonable initial estimate for the Babylonian method. With a bad // start, the correct # of bits increases ~linearly each iteration instead of ~quadratically. // We check y >= 2^(k + 8) but shift right by k bits // each branch to ensure that if x >= 256, then y >= 256. if iszero(lt(y, 0x10000000000000000000000000000000000)) { y := shr(128, y) z := shl(64, z) } if iszero(lt(y, 0x1000000000000000000)) { y := shr(64, y) z := shl(32, z) } if iszero(lt(y, 0x10000000000)) { y := shr(32, y) z := shl(16, z) } if iszero(lt(y, 0x1000000)) { y := shr(16, y) z := shl(8, z) } // Goal was to get z*z*y within a small factor of x. More iterations could // get y in a tighter range. Currently, we will have y in [256, 256*2^16). // We ensured y >= 256 so that the relative difference between y and y+1 is small. // That's not possible if x < 256 but we can just verify those cases exhaustively. // Now, z*z*y <= x < z*z*(y+1), and y <= 2^(16+8), and either y >= 256, or x < 256. // Correctness can be checked exhaustively for x < 256, so we assume y >= 256. // Then z*sqrt(y) is within sqrt(257)/sqrt(256) of sqrt(x), or about 20bps. // For s in the range [1/256, 256], the estimate f(s) = (181/1024) * (s+1) is in the range // (1/2.84 * sqrt(s), 2.84 * sqrt(s)), with largest error when s = 1 and when s = 256 or 1/256. // Since y is in [256, 256*2^16), let a = y/65536, so that a is in [1/256, 256). Then we can estimate // sqrt(y) using sqrt(65536) * 181/1024 * (a + 1) = 181/4 * (y + 65536)/65536 = 181 * (y + 65536)/2^18. // There is no overflow risk here since y < 2^136 after the first branch above. z := shr(18, mul(z, add(y, 65536))) // A mul() is saved from starting z at 181. // Given the worst case multiplicative error of 2.84 above, 7 iterations should be enough. z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) // If x+1 is a perfect square, the Babylonian method cycles between // floor(sqrt(x)) and ceil(sqrt(x)). This statement ensures we return floor. // See: https://en.wikipedia.org/wiki/Integer_square_root#Using_only_integer_division // Since the ceil is rare, we save gas on the assignment and repeat division in the rare case. // If you don't care whether the floor or ceil square root is returned, you can remove this statement. z := sub(z, lt(div(x, z), z)) } } function unsafeMod(uint256 x, uint256 y) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Mod x by y. Note this will return // 0 instead of reverting if y is zero. z := mod(x, y) } } function unsafeDiv(uint256 x, uint256 y) internal pure returns (uint256 r) { /// @solidity memory-safe-assembly assembly { // Divide x by y. Note this will return // 0 instead of reverting if y is zero. r := div(x, y) } } function unsafeDivUp(uint256 x, uint256 y) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Add 1 to x * y if x % y > 0. Note this will // return 0 instead of reverting if y is zero. z := add(gt(mod(x, y), 0), div(x, y)) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC7540.sol) pragma solidity ^0.8.20; interface IERC7540Operator { /** * @dev The event emitted when an operator is set. * * @param controller The address of the controller. * @param operator The address of the operator. * @param approved The approval status. */ event OperatorSet(address indexed controller, address indexed operator, bool approved); /** * @dev Sets or removes an operator for the caller. * * @param operator The address of the operator. * @param approved The approval status. * @return Whether the call was executed successfully or not */ function setOperator(address operator, bool approved) external returns (bool); /** * @dev Returns `true` if the `operator` is approved as an operator for an `controller`. * * @param controller The address of the controller. * @param operator The address of the operator. * @return status The approval status */ function isOperator(address controller, address operator) external view returns (bool status); } interface IERC7540Deposit { event DepositRequest( address indexed controller, address indexed owner, uint256 indexed requestId, address sender, uint256 assets ); /** * @dev Transfers assets from sender into the Vault and submits a Request for asynchronous deposit. * * - MUST support ERC-20 approve / transferFrom on asset as a deposit Request flow. * - MUST revert if all of assets cannot be requested for deposit. * - owner MUST be msg.sender unless some unspecified explicit approval is given by the caller, * approval of ERC-20 tokens from owner to sender is NOT enough. * * @param assets the amount of deposit assets to transfer from owner * @param controller the controller of the request who will be able to operate the request * @param owner the source of the deposit assets * * NOTE: most implementations will require pre-approval of the Vault with the Vault's underlying asset token. */ function requestDeposit(uint256 assets, address controller, address owner) external returns (uint256 requestId); /** * @dev Returns the amount of requested assets in Pending state. * * - MUST NOT include any assets in Claimable state for deposit or mint. * - MUST NOT show any variations depending on the caller. * - MUST NOT revert unless due to integer overflow caused by an unreasonably large input. */ function pendingDepositRequest(uint256 requestId, address controller) external view returns (uint256 pendingAssets); /** * @dev Returns the amount of requested assets in Claimable state for the controller to deposit or mint. * * - MUST NOT include any assets in Pending state. * - MUST NOT show any variations depending on the caller. * - MUST NOT revert unless due to integer overflow caused by an unreasonably large input. */ function claimableDepositRequest(uint256 requestId, address controller) external view returns (uint256 claimableAssets); /** * @dev Mints shares Vault shares to receiver by claiming the Request of the controller. * * - MUST emit the Deposit event. * - controller MUST equal msg.sender unless the controller has approved the msg.sender as an operator. */ function deposit(uint256 assets, address receiver, address controller) external returns (uint256 shares); /** * @dev Mints exactly shares Vault shares to receiver by claiming the Request of the controller. * * - MUST emit the Deposit event. * - controller MUST equal msg.sender unless the controller has approved the msg.sender as an operator. */ function mint(uint256 shares, address receiver, address controller) external returns (uint256 assets); } interface IERC7540Redeem { event RedeemRequest( address indexed controller, address indexed owner, uint256 indexed requestId, address sender, uint256 shares ); /** * @dev Assumes control of shares from sender into the Vault and submits a Request for asynchronous redeem. * * - MUST support a redeem Request flow where the control of shares is taken from sender directly * where msg.sender has ERC-20 approval over the shares of owner. * - MUST revert if all of shares cannot be requested for redeem. * * @param shares the amount of shares to be redeemed to transfer from owner * @param controller the controller of the request who will be able to operate the request * @param owner the source of the shares to be redeemed * * NOTE: most implementations will require pre-approval of the Vault with the Vault's share token. */ function requestRedeem(uint256 shares, address controller, address owner) external returns (uint256 requestId); /** * @dev Returns the amount of requested shares in Pending state. * * - MUST NOT include any shares in Claimable state for redeem or withdraw. * - MUST NOT show any variations depending on the caller. * - MUST NOT revert unless due to integer overflow caused by an unreasonably large input. */ function pendingRedeemRequest(uint256 requestId, address controller) external view returns (uint256 pendingShares); /** * @dev Returns the amount of requested shares in Claimable state for the controller to redeem or withdraw. * * - MUST NOT include any shares in Pending state for redeem or withdraw. * - MUST NOT show any variations depending on the caller. * - MUST NOT revert unless due to integer overflow caused by an unreasonably large input. */ function claimableRedeemRequest(uint256 requestId, address controller) external view returns (uint256 claimableShares); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC7540.sol) pragma solidity ^0.8.20; interface IERC7575 { function share() external view returns (address shareTokenAddress); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.26; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol"; contract Whitelist is Ownable, AccessControl { bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); mapping(address => bool) public whitelist; modifier isAdminOrOwner() { require(_msgSender() == owner() || hasRole(ADMIN_ROLE, _msgSender()), "Only admins and owner can call this function"); _; } constructor() Ownable(_msgSender()) { whitelist[_msgSender()] = true; } function add(address _address) external isAdminOrOwner { whitelist[_address] = true; } function remove(address _address) external isAdminOrOwner { whitelist[_address] = false; } function isWhitelisted(address _address) external virtual view returns (bool) { return whitelist[_address]; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract Whitelist","name":"whitelist_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract ERC20","name":"usdTokenAddr_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CommitmentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"custodian","type":"address"}],"name":"CustodianSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"dailyYieldMicrobip","type":"uint256"}],"name":"DailyYieldSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"controller","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"requestId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"}],"name":"DepositRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"string","name":"requestId","type":"string"},{"indexed":false,"internalType":"uint256","name":"usdAmount","type":"uint256"}],"name":"InvestmentApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"string","name":"requestId","type":"string"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"InvestmentClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"string","name":"requestId","type":"string"}],"name":"InvestmentRejected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"string","name":"requestId","type":"string"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"commitmentDeadline","type":"uint256"}],"name":"InvestmentRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"open","type":"bool"}],"name":"OpenSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"controller","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"OperatorSet","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":true,"internalType":"address","name":"controller","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"requestId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"RedeemRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"repayer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Repayment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"whitelist","type":"address"}],"name":"WhitelistSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"string","name":"requestId","type":"string"},{"indexed":false,"internalType":"uint256","name":"usdAmount","type":"uint256"}],"name":"WithdrawalApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"string","name":"requestId","type":"string"},{"indexed":false,"internalType":"uint256","name":"usdAmount","type":"uint256"}],"name":"WithdrawalClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"string","name":"requestId","type":"string"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"}],"name":"WithdrawalRequested","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"deadline_","type":"uint256"}],"name":"adminReleaseCommitment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"string","name":"id_","type":"string"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"adminRequestWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"}],"name":"approveInvestment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"}],"name":"approveThenClaimInvestment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"},{"internalType":"uint256","name":"usdAmount_","type":"uint256"}],"name":"approveThenClaimWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"},{"internalType":"uint256","name":"usdAmount_","type":"uint256"}],"name":"approveWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"assetTokenAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"},{"internalType":"address","name":"receiver","type":"address"}],"name":"claimInvestment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"},{"internalType":"address","name":"receiver","type":"address"}],"name":"claimWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"address","name":"controller","type":"address"}],"name":"claimableDepositRequest","outputs":[{"internalType":"uint256","name":"claimableAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"address","name":"controller","type":"address"}],"name":"claimableRedeemRequest","outputs":[{"internalType":"uint256","name":"claimableShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"commitedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"commitedBalanceOfByDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"convertToAssets","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"convertToShares","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"custodian","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dailyYieldMicrobip","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"controller","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"depositRequestCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"},{"internalType":"uint256","name":"c","type":"uint256"}],"name":"foo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUpdatedTvl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"}],"name":"getWithdrawalRequest","outputs":[{"components":[{"internalType":"bool","name":"closed","type":"bool"},{"internalType":"bool","name":"claimable","type":"bool"},{"internalType":"address","name":"requester","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"usdAmount","type":"uint256"},{"internalType":"uint256","name":"claimableUsdAmount","type":"uint256"}],"internalType":"struct WithdrawalRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxDeposit","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"maxMint","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxRedeem","outputs":[{"internalType":"uint256","name":"maxShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"maxWithdraw","outputs":[{"internalType":"uint256","name":"maxAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"controller","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"address","name":"controller","type":"address"}],"name":"pendingDepositRequest","outputs":[{"internalType":"uint256","name":"pendingAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"address","name":"controller","type":"address"}],"name":"pendingRedeemRequest","outputs":[{"internalType":"uint256","name":"pendingShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewDeposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewMint","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewWithdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"controller","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"}],"name":"redeemRequestCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"controller_","type":"address"}],"name":"rejectDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"}],"name":"rejectInvestment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"deadline_","type":"uint256"}],"name":"releaseCommitment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"usdAmount_","type":"uint256"}],"name":"repay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets_","type":"uint256"},{"internalType":"address","name":"controller_","type":"address"},{"internalType":"address","name":"owner_","type":"address"}],"name":"requestDeposit","outputs":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"},{"internalType":"uint256","name":"usdAmount_","type":"uint256"}],"name":"requestInvestment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"},{"internalType":"uint256","name":"usdAmount_","type":"uint256"},{"internalType":"uint256","name":"deadline_","type":"uint256"}],"name":"requestInvestmentCommitted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares_","type":"uint256"},{"internalType":"address","name":"controller_","type":"address"},{"internalType":"address","name":"owner_","type":"address"}],"name":"requestRedeem","outputs":[{"internalType":"uint256","name":"requestId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"id_","type":"string"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"requestWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"custodian_","type":"address"}],"name":"setCustodian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dailyYieldMicrobip_","type":"uint256"}],"name":"setDailyYieldMicrobip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxInvestmentAmount_","type":"uint256"}],"name":"setMaxInvestmentAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWithdrawalAmount_","type":"uint256"}],"name":"setMaxWithdrawalAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minInvestmentAmount_","type":"uint256"}],"name":"setMinInvestmentAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minWithdrawalAmount_","type":"uint256"}],"name":"setMinWithdrawalAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"open_","type":"bool"}],"name":"setOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setUpdatedTvlAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Whitelist","name":"value","type":"address"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"share","outputs":[{"internalType":"address","name":"shareTokenAddress","type":"address"}],"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":[],"name":"totalAssets","outputs":[{"internalType":"uint256","name":"totalManagedAssets","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tvl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tvlUpdatedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"updatedTvl","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist","outputs":[{"internalType":"contract Whitelist","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"token_","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405234801561001057600080fd5b5060405161660038038061660083398101604081905261002f9161041f565b8282338061005857604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61006181610269565b50600561006e8382610537565b50600661007b8282610537565b5050600160075550601480546001600160a01b0319166001600160a01b0386811691909117909155811660808190526100f65760405162461bcd60e51b815260206004820152601960248201527f496e76616c69642055534420746f6b656e206164647265737300000000000000604482015260640161004f565b6080516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061015a91906105f5565b60ff16601210156101de5760405162461bcd60e51b815260206004820152604260248201527f546f6b656e20646563696d616c73206d7573742062652067726561746572207460448201527f68616e206f7220657175616c20746f2055534420746f6b656e20646563696d616064820152616c7360f01b608482015260a40161004f565b6101e96000336102b9565b506080516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561022a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061024e91906105f5565b61025990601261061f565b60ff1660a0525061064692505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008281526001602090815260408083206001600160a01b038516845290915281205460ff166103445760008381526001602081815260408084206001600160a01b0387168086529252808420805460ff19169093179092559051339286917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a4506001610348565b5060005b92915050565b6001600160a01b038116811461036357600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261038d57600080fd5b81516001600160401b038111156103a6576103a6610366565b604051601f8201601f19908116603f011681016001600160401b03811182821017156103d4576103d4610366565b6040528181528382016020018510156103ec57600080fd5b60005b8281101561040b576020818601810151838301820152016103ef565b506000918101602001919091529392505050565b6000806000806080858703121561043557600080fd5b84516104408161034e565b60208601519094506001600160401b0381111561045c57600080fd5b6104688782880161037c565b604087015190945090506001600160401b0381111561048657600080fd5b6104928782880161037c565b92505060608501516104a38161034e565b939692955090935050565b600181811c908216806104c257607f821691505b6020821081036104e257634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561053257806000526020600020601f840160051c8101602085101561050f5750805b601f840160051c820191505b8181101561052f576000815560010161051b565b50505b505050565b81516001600160401b0381111561055057610550610366565b6105648161055e84546104ae565b846104e8565b6020601f82116001811461059857600083156105805750848201515b600019600385901b1c1916600184901b17845561052f565b600084815260208120601f198516915b828110156105c857878501518255602094850194600190920191016105a8565b50848210156105e65786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b60006020828403121561060757600080fd5b815160ff8116811461061857600080fd5b9392505050565b60ff828116828216039081111561034857634e487b7160e01b600052601160045260246000fd5b60805160a051615f5d6106a360003960008181613cc1015261465101526000818161073401528181610c220152818161162d01528181611fce0152818161363f01528181614111015281816144f8015261496a0152615f5d6000f3fe608060405234801561001057600080fd5b50600436106104d85760003560e01c80637d41c86e11610283578063ad121eb81161015c578063d905777e116100ce578063ef8b30f711610092578063ef8b30f714610bd1578063f2fde38b14610be4578063f4f3b20014610bf7578063f5a23d8d14610c0a578063f897a22b14610c1d578063fcfff16f14610c4457600080fd5b8063d905777e14610b56578063da39b3e714610b69578063dd62ed3e14610b7c578063e5328e0614610bb5578063eaed1d0714610bbe57600080fd5b8063ba08765211610120578063ba08765214610ae1578063c63d75b614610af4578063c6e6f5921461056b578063c7f68b7d14610b07578063ce96cb7714610b30578063d547741f14610b4357600080fd5b8063ad121eb814610a8c578063b2a478f714610a9f578063b3d7f6b914610aa8578063b460af9414610abb578063b6363cf214610ace57600080fd5b806391cce4e2116101f557806395d89b41116101b957806395d89b4114610a3d578063995ea21a14610a45578063a1d187a714610a58578063a217fddf14610a6b578063a8d5fd6514610a73578063a9059cbb14610a7957600080fd5b806391cce4e2146109e857806391d14854146109fb57806393e59dc114610a0e57806394bf804d14610a2157806395a5862814610a3457600080fd5b806385b77f451161024757806385b77f451461096257806387228fc0146109755780638aab5b89146109885780638c9e2e5f146109b15780638da5cb5b146109c45780638f725541146109d557600080fd5b80637d41c86e146109035780637ea084da146109165780637fbb108614610929578063854cff2f1461093c57806385b5b14d1461094f57600080fd5b806336568abe116103b55780635b7f415c11610327578063715018a6116102eb578063715018a6146108a557806372a79388146108ad57806375b238fc146108c05780637aac8c65146108d55780637ab8ff98146108e85780637ad5b5df146108f057600080fd5b80635b7f415c1461083b578063608bf379146108435780636e553f65146108565780636fdca5e01461086957806370a082311461087c57600080fd5b8063402d267d11610379578063402d267d1461076b578063403f37311461077e5780634148325a146107915780634bbf7400146107a45780634cdad50614610815578063558a72971461082857600080fd5b806336568abe146106dc578063371fd8e6146106ef578063375b74c31461070257806338d52e0f146107325780633f47ea881461075857600080fd5b806323b872dd1161044e5780632e2d2984116104125780632e2d29841461062f5780632f2ff15d146106425780632f408cbe14610655578063313ce5671461066857806331403b5e1461067d578063351be7d8146106b357600080fd5b806323b872dd146105bf578063248a9ca3146105d257806325303a73146105f657806325387d511461060957806326c6f96c1461061c57600080fd5b8063095ea7b3116104a0578063095ea7b3146105585780630a28a4771461056b5780630b94e4f71461057e578063106381531461059157806318160ddd146105a45780632244e1c7146105ac57600080fd5b806301e1d114146104dd57806301ffc9a7146104f857806306fdde031461051b578063071f8a981461053057806307a2d13a14610545575b600080fd5b6104e5610c51565b6040519081526020015b60405180910390f35b61050b610506366004615393565b610c60565b60405190151581526020016104ef565b610523610d12565b6040516104ef919061540d565b61054361053e366004615469565b610da4565b005b6104e56105533660046154b5565b610e7e565b61050b6105663660046154f3565b610ebe565b6104e56105793660046154b5565b610ed6565b6104e561058c36600461551f565b610f07565b61054361059f36600461554b565b610f1c565b6004546104e5565b6105436105ba36600461558d565b610fb2565b61050b6105cd3660046155aa565b6110e5565b6104e56105e03660046154b5565b6000908152600160208190526040909120015490565b6105436106043660046154b5565b611109565b610543610617366004615469565b611156565b6104e561062a3660046155eb565b6111a0565b6104e561063d36600461561b565b61128d565b6105436106503660046155eb565b6114fc565b610543610663366004615673565b611528565b60125b60405160ff90911681526020016104ef565b6104e561068b3660046154f3565b6001600160a01b03919091166000908152601260209081526040808320938352929052205490565b6104e56106c136600461558d565b6001600160a01b031660009081526013602052604090205490565b6105436106ea3660046155eb565b6115b5565b6105436106fd3660046154b5565b6115e8565b60085461071a9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016104ef565b7f000000000000000000000000000000000000000000000000000000000000000061071a565b6104e56107663660046154b5565b611712565b6104e561077936600461558d565b611730565b61054361078c36600461558d565b6118b6565b61054361079f36600461573d565b6119a6565b6107b76107b236600461554b565b611adc565b6040516104ef91908151151581526020808301511515908201526040808301516001600160a01b031690820152606080830151908201526080808301519082015260a0808301519082015260c0918201519181019190915260e00190565b6104e56108233660046154b5565b611bb3565b61050b61083636600461579c565b611bde565b61066b601281565b610543610851366004615469565b611ca7565b6104e56108643660046155eb565b611d6f565b6105436108773660046157ca565b611d7c565b6104e561088a36600461558d565b6001600160a01b031660009081526002602052604090205490565b610543611e0c565b6105436108bb366004615469565b611e20565b6104e5600080516020615f0883398151915281565b6105436108e336600461554b565b6120c4565b6104e561226f565b6105436108fe3660046157e7565b61227a565b6104e561091136600461561b565b612428565b610543610924366004615843565b612502565b6105436109373660046154b5565b6125c9565b61054361094a36600461558d565b612616565b61054361095d3660046154b5565b6126a8565b6104e561097036600461561b565b6126f5565b61054361098336600461554b565b6127c3565b6104e561099636600461558d565b6001600160a01b031660009081526016602052604090205490565b6105436109bf3660046154b5565b61288f565b6000546001600160a01b031661071a565b6105436109e33660046154b5565b6128e9565b6105436109f63660046154f3565b612936565b61050b610a093660046155eb565b612988565b60145461071a906001600160a01b031681565b6104e5610a2f3660046155eb565b6129b3565b6104e560095481565b6105236129c7565b6104e5610a533660046155eb565b6129d6565b610543610a663660046154b5565b612ab6565b6104e5600081565b3061071a565b61050b610a873660046154f3565b612b5b565b610543610a9a3660046154b5565b612b69565b6104e5600b5481565b6104e5610ab63660046154b5565b612beb565b6104e5610ac936600461561b565b612c0a565b61050b610adc36600461588f565b612c1f565b6104e5610aef36600461561b565b612ca1565b6104e5610b0236600461558d565b612fd3565b6104e5610b1536600461558d565b6001600160a01b031660009081526015602052604090205490565b6104e5610b3e36600461558d565b61315c565b610543610b513660046155eb565b6132eb565b6104e5610b6436600461558d565b613311565b6104e5610b7736600461561b565b613493565b6104e5610b8a36600461588f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6104e5600a5481565b6104e5610bcc3660046155eb565b6134a8565b6104e5610bdf3660046154b5565b613576565b610543610bf236600461558d565b6135b2565b610543610c0536600461558d565b6135ed565b6104e5610c183660046155eb565b6137bf565b61071a7f000000000000000000000000000000000000000000000000000000000000000081565b60085461050b9060ff1681565b6000610c5b61226f565b905090565b60006001600160e01b0319821663043eff2d60e51b1480610c9157506001600160e01b03198216630ce3bbe560e41b145b80610cac57506001600160e01b03198216631883ba3960e21b145b80610cc757506001600160e01b0319821663e3bc4e6560e01b145b80610ce257506001600160e01b0319821663a8d5fd6560e01b145b80610cfd57506001600160e01b031982166301ffc9a760e01b145b80610d0c5750610d0c8261388d565b92915050565b606060058054610d21906158bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d906158bd565b8015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b5050505050905090565b82826000818110610db757610db76158f7565b909101356001600160f81b031916602560f81b039050610df25760405162461bcd60e51b8152600401610de99061590d565b60405180910390fd5b610e3483838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525033935086925090506138c2565b336001600160a01b03167f7d43a51e9752bfe77b60b938e0e8e0f98537d42d1953eedf29908890830b4e64848484604051610e7193929190615966565b60405180910390a2505050565b600080610e8961226f565b905080600003610e9c5750600092915050565b610eb7610eb28483610ead60045490565b613bff565b613cba565b9392505050565b600033610ecc818585613cf1565b5060019392505050565b600080610ee161226f565b905080600003610ef45750600092915050565b610eb783610f0160045490565b83613bff565b6000610f14848484613cfe565b949350505050565b6000546001600160a01b0316331480610f485750610f48600080516020615f0883398151915233612988565b610f645760405162461bcd60e51b8152600401610de99061598a565b610f6e82826120c4565b610fad82828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250613dbc915050565b505050565b6000546001600160a01b0316331480610fde5750610fde600080516020615f0883398151915233612988565b610ffa5760405162461bcd60e51b8152600401610de99061598a565b6001600160a01b03811660009081526015602052604090205461105b5760405162461bcd60e51b815260206004820152601960248201527811195c1bdcda5d081c995c5d595cdd081b9bdd08199bdd5b99603a1b6044820152606401610de9565b60006110ac6040518060400160405280600781526020016619195c1bdcda5d60ca1b8152508360176000866001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6001600160a01b03831660009081526017602052604081208054929350906110d3836159ec565b91905055506110e181614076565b5050565b6000336110f385828561420a565b6110fe858585614282565b506001949350505050565b6000546001600160a01b03163314806111355750611135600080516020615f0883398151915233612988565b6111515760405162461bcd60e51b8152600401610de99061598a565b600f55565b611161838383611e20565b610fad83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250611528915050565b60008060116111cf6040518060400160405280600781526020016619195c1bdcda5d60ca1b815250858761402c565b6040516111dc9190615a05565b90815260408051918290036020908101832060c084018352805460ff808216151586526101008204161515928501929092526001600160a01b0362010000909204821692840183905260018101546060850152600281015460808501526003015460a0840152919250908416146112655760405162461bcd60e51b8152600401610de990615a21565b805180611273575080602001515b15611282576000915050610d0c565b608001519392505050565b60006112998233612c1f565b6112b55760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b0382166000908152601560205260409020546113165760405162461bcd60e51b815260206004820152601960248201527811195c1bdcda5d081c995c5d595cdd081b9bdd08199bdd5b99603a1b6044820152606401610de9565b60006113676040518060400160405280600781526020016619195c1bdcda5d60ca1b8152508460176000876001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b9050600060118260405161137b9190615a05565b908152604080516020928190038301812060c082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101919091526001820154606082015260028201546080820181905260039092015460a0820152915086146114425760405162461bcd60e51b815260206004820152602560248201527f4465706f73697420616d6f756e7420646f6573206e6f74206d617463682072656044820152641c5d595cdd60da1b6064820152608401610de9565b836001600160a01b031681604001516001600160a01b0316146114775760405162461bcd60e51b8152600401610de990615a21565b6001600160a01b038416600090815260176020526040812080549161149b836159ec565b91905055506114aa8286613dbc565b60408051888152602081018390529194506001600160a01b0387169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a350509392505050565b60008281526001602081905260409091200154611518816142e1565b61152283836142eb565b50505050565b8160008151811061153b5761153b6158f7565b01602001516001600160f81b031916602560f81b0361156c5760405162461bcd60e51b8152600401610de99061590d565b60006115788383614364565b9050816001600160a01b03167f6b92a032d8e52d36d804fa511c21d1088f84428120c318e5cafc842eebcbca4e8483604051610e71929190615a92565b6001600160a01b03811633146115de5760405163334bd91960e11b815260040160405180910390fd5b610fad82826145b3565b6115f0614620565b600081116116105760405162461bcd60e51b8152600401610de990615ab4565b6008546040516323b872dd60e01b81526000916001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116926323b872dd9261166d92339261010090920416908790600401615ae9565b6020604051808303816000875af115801561168c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b09190615b0d565b9050806116cf5760405162461bcd60e51b8152600401610de990615b2a565b60405182815233907fbb284f7f8cb8b1b8c98ee9a7d765413efc44bbb17352a0302ada1d737cdaef1b9060200160405180910390a25061170f6001600755565b50565b60008061171d61226f565b905080600003610ef457610eb78361464a565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa15801561177b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179f9190615b0d565b15806117b8575033600090815260156020526040902054155b156117c557506000919050565b600060116118186040518060400160405280600781526020016619195c1bdcda5d60ca1b8152503360176000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516118259190615a05565b908152604080516020928190038301812060c082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101829052600183015460608201526002830154608082015260039092015460a08301529091503314158061189e57508060200151155b156118ac5750600092915050565b6080015192915050565b6000546001600160a01b03163314806118e257506118e2600080516020615f0883398151915233612988565b6118fe5760405162461bcd60e51b8152600401610de99061598a565b6001600160a01b0381166119545760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420637573746f6469616e2061646472657373000000000000006044820152606401610de9565b60088054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fb88c20a211c5d7677ba2a26c317d8ae6b25aa492016dc8ceca2469761d063d8090600090a250565b838360008181106119b9576119b96158f7565b909101356001600160f81b031916602560f81b0390506119eb5760405162461bcd60e51b8152600401610de99061590d565b428111611a2d5760405162461bcd60e51b815260206004820152601060248201526f496e76616c696420646561646c696e6560801b6044820152606401610de9565b611a7084848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152503392508691506146819050565b8060118585604051611a83929190615b53565b9081526040519081900360200181206003019190915533907fc3d7c27aca23c9fb37e4b207505be153270189a973cc8afcc54a172ea08fe66890611ace908790879087908790615b63565b60405180910390a250505050565b611b296040518060e0016040528060001515815260200160001515815260200160006001600160a01b03168152602001600081526020016000815260200160008152602001600081525090565b60108383604051611b3b929190615b53565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101919091526001820154606082015260028201546080820152600382015460a082015260049091015460c08201529392505050565b600080611bbf60045490565b905080600003611bd25750600092915050565b610eb783610f0161226f565b60006001600160a01b038316611c365760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f72206164647265737300000000000000006044820152606401610de9565b336000818152601b602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917fceb576d9f15e4e200fdb5096d64d5dfd667e16def20c1eefd14256d8e3faa267910160405180910390a350600192915050565b82826000818110611cba57611cba6158f7565b909101356001600160f81b031916602560f81b039050611cec5760405162461bcd60e51b8152600401610de99061590d565b611d2f83838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152503392508591506146819050565b336001600160a01b03167fc3d7c27aca23c9fb37e4b207505be153270189a973cc8afcc54a172ea08fe6688484846000604051610e719493929190615b63565b6000610eb783833361128d565b6000546001600160a01b0316331480611da85750611da8600080516020615f0883398151915233612988565b611dc45760405162461bcd60e51b8152600401610de99061598a565b6008805460ff19168215159081179091556040519081527f50ea4db57628851a1970ad4a3cc76cab7eb7e50b8526f7786e429df90f099d3d906020015b60405180910390a150565b611e14614a16565b611e1e6000614a43565b565b6000546001600160a01b0316331480611e4c5750611e4c600080516020615f0883398151915233612988565b611e685760405162461bcd60e51b8152600401610de99061598a565b611e70614620565b600060108484604051611e84929190615b53565b908152602001604051809103902090506000816001015411611eb85760405162461bcd60e51b8152600401610de990615b8a565b805460ff1615611eda5760405162461bcd60e51b8152600401610de990615bd8565b60008211611efa5760405162461bcd60e51b8152600401610de990615ab4565b8060030154821115611f6c5760405162461bcd60e51b815260206004820152603560248201527f416d6f756e74206d757374206265206c657373207468616e206f7220657175616044820152741b081d1bc81c995c5d595cdd195908185b5bdd5b9d605a1b6064820152608401610de9565b805461ff00191661010017808255600482018390556001600160a01b0362010000909104166000908152601a602052604081208054849290611faf908490615c1c565b90915550506040516323b872dd60e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906323b872dd9061200790339030908890600401615ae9565b6020604051808303816000875af1158015612026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204a9190615b0d565b9050806120695760405162461bcd60e51b8152600401610de990615b2a565b8154604051620100009091046001600160a01b0316907f2691d35c2c6ce999ca72a1ec44dbdd447a1136cbdb62a461cfce22b0e03ced06906120b090889088908890615966565b60405180910390a25050610fad6001600755565b6000546001600160a01b03163314806120f057506120f0600080516020615f0883398151915233612988565b61210c5760405162461bcd60e51b8152600401610de99061598a565b600060118383604051612120929190615b53565b9081526020016040518091039020905060008160010154116121545760405162461bcd60e51b8152600401610de990615c2f565b805460ff16156121765760405162461bcd60e51b8152600401610de990615c7d565b8054610100900460ff16156121dd5760405162461bcd60e51b815260206004820152602760248201527f496e766573746d656e74207265717565737420697320616c726561647920636c60448201526661696d61626c6560c81b6064820152608401610de9565b805461010061ff0019909116178082556002820154620100009091046001600160a01b031660009081526019602052604081208054909190612220908490615c1c565b909155505080546002820154604051620100009092046001600160a01b0316917f5ddbfc9391a6d1d11f3a3e53ddaf7895e024bebd6152309a7120916aaf741ac591610e719187918791615966565b6000610c5b42614a93565b6000546001600160a01b03163314806122a657506122a6600080516020615f0883398151915233612988565b6122c25760405162461bcd60e51b8152600401610de99061598a565b600081116122e25760405162461bcd60e51b8152600401610de990615ab4565b601083836040516122f4929190615b53565b9081526020016040518091039020600101546000146123255760405162461bcd60e51b8152600401610de990615cc1565b6001600160a01b0384166000908152601360205260409020546123489082615c1c565b6001600160a01b03851660009081526002602052604090205410156123a65760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610de9565b6123eb83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250889250859150600190506138c2565b836001600160a01b03167f7d43a51e9752bfe77b60b938e0e8e0f98537d42d1953eedf29908890830b4e64848484604051611ace93929190615966565b60006124348333612c1f565b6124505760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b0383166000908152601660205260408120805491612474836159ec565b9190505590506124af6124a66040518060400160405280600681526020016572656465656d60d01b815250858461402c565b838660006138c2565b604080513381526020810186905282916001600160a01b0380861692908716917f1fdc681a13d8c5da54e301c7ce6542dcde4581e4725043fdab2db12ddc57450691015b60405180910390a49392505050565b82826000818110612515576125156158f7565b909101356001600160f81b031916602560f81b0390506125475760405162461bcd60e51b8152600401610de99061590d565b600061258a84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869250613dbc915050565b9050816001600160a01b03167ffb400abdd6d94f1b489c0fb866536c810c984df0e46f4b9cd8fbbb9221911df1858584604051611ace93929190615966565b6000546001600160a01b03163314806125f557506125f5600080516020615f0883398151915233612988565b6126115760405162461bcd60e51b8152600401610de99061598a565b600c55565b6000546001600160a01b03163314806126425750612642600080516020615f0883398151915233612988565b61265e5760405162461bcd60e51b8152600401610de99061598a565b601480546001600160a01b0319166001600160a01b0383169081179091556040517f29d77446d0fb0dcebabf25ce79ea69ba1382a4525d4acf615a38c89c798aef7190600090a250565b6000546001600160a01b03163314806126d457506126d4600080516020615f0883398151915233612988565b6126f05760405162461bcd60e51b8152600401610de99061598a565b600e55565b60006127018333612c1f565b61271d5760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b0383166000908152601560205260408120805491612741836159ec565b91905055905061277b6127746040518060400160405280600781526020016619195c1bdcda5d60ca1b815250858461402c565b8386614681565b604080513381526020810186905282916001600160a01b0380861692908716917fbb58420bb8ce44e11b84e214cc0de10ce5e7c24d0355b2815c3d758b514cae7291016124f3565b6000546001600160a01b03163314806127ef57506127ef600080516020615f0883398151915233612988565b61280b5760405162461bcd60e51b8152600401610de99061598a565b8181600081811061281e5761281e6158f7565b909101356001600160f81b031916602560f81b0390506128505760405162461bcd60e51b8152600401610de99061590d565b6110e182828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061407692505050565b804210156128df5760405162461bcd60e51b815260206004820152601b60248201527f446561646c696e6520686173206e6f74207061737365642079657400000000006044820152606401610de9565b61170f3382614b4c565b6000546001600160a01b03163314806129155750612915600080516020615f0883398151915233612988565b6129315760405162461bcd60e51b8152600401610de99061598a565b600d55565b6000546001600160a01b03163314806129625750612962600080516020615f0883398151915233612988565b61297e5760405162461bcd60e51b8152600401610de99061598a565b6110e18282614b4c565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610eb76129c184610e7e565b83611d6f565b606060068054610d21906158bd565b6000806011612a056040518060400160405280600781526020016619195c1bdcda5d60ca1b815250858761402c565b604051612a129190615a05565b90815260408051918290036020908101832060c084018352805460ff808216151586526101008204161515928501929092526001600160a01b0362010000909204821692840183905260018101546060850152600281015460808501526003015460a084015291925090841614612a9b5760405162461bcd60e51b8152600401610de990615a21565b80518061127357508060200151611282576000915050610d0c565b6000546001600160a01b0316331480612ae25750612ae2600080516020615f0883398151915233612988565b612afe5760405162461bcd60e51b8152600401610de99061598a565b612b0661226f565b600a55612b166201518042615d25565b612b239062015180615d47565b600b5560098190556040518181527f1a728f9338714691aa7d3917d797b14e883fa68a35ea7cb3d0913d0fe98d583e90602001611e01565b600033610ecc818585614282565b6000546001600160a01b0316331480612b955750612b95600080516020615f0883398151915233612988565b612bb15760405162461bcd60e51b8152600401610de99061598a565b6000612bc06201518083615d25565b612bcd9062015180615d47565b9050600b548111156110e157612be281614a93565b600a55600b5550565b600080612bf760045490565b905080600003611bd257610eb783613cba565b6000610f14612c1885611712565b8484612ca1565b6000816001600160a01b0316836001600160a01b03161480612c4e57506000546001600160a01b038381169116145b80612c6c5750612c6c600080516020615f0883398151915283612988565b80610eb75750506001600160a01b039182166000908152601b6020908152604080832093909416825291909152205460ff1690565b6000612cad8233612c1f565b612cc95760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b038216600090815260166020526040902054612d295760405162461bcd60e51b815260206004820152601860248201527714995919595b481c995c5d595cdd081b9bdd08199bdd5b9960421b6044820152606401610de9565b6000612d796040518060400160405280600681526020016572656465656d60d01b8152508460186000876001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b90506000601082604051612d8d9190615a05565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b03169181019190915260018201546060820181905260028301546080830152600383015460a083015260049092015460c08201529150612e495760405162461bcd60e51b815260206004820152601860248201527714995919595b481c995c5d595cdd081b9bdd08199bdd5b9960421b6044820152606401610de9565b8060200151612e9a5760405162461bcd60e51b815260206004820152601c60248201527f52656465656d2072657175657374206e6f7420636c61696d61626c65000000006044820152606401610de9565b85816080015114612ef95760405162461bcd60e51b8152602060048201526024808201527f52656465656d20616d6f756e7420646f6573206e6f74206d61746368207265716044820152631d595cdd60e21b6064820152608401610de9565b836001600160a01b031681604001516001600160a01b031614612f2e5760405162461bcd60e51b8152600401610de990615a21565b6001600160a01b0384166000908152601860205260408120805491612f52836159ec565b9190505550612f618286614364565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8460a001518a604051612fbe929190918252602082015260400190565b60405180910390a460a0015195945050505050565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa15801561301e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130429190615b0d565b158061305b575033600090815260156020526040902054155b1561306857506000919050565b600060116130bb6040518060400160405280600781526020016619195c1bdcda5d60ca1b8152503360176000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516130c89190615a05565b908152604080516020928190038301812060c082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101829052600183015460608201526002830154608082015260039092015460a08301529091503314158061314157508060200151155b1561314f5750600092915050565b610eb78160800151611712565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa1580156131a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cb9190615b0d565b15806131e4575033600090815260166020526040902054155b156131f157506000919050565b600060106132436040518060400160405280600681526020016572656465656d60d01b8152503360186000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516132509190615a05565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b03169181018290526001830154606082015260028301546080820152600383015460a082015260049092015460c0830152909150331415806132d357508060200151155b156132e15750600092915050565b60a0015192915050565b60008281526001602081905260409091200154613307816142e1565b61152283836145b3565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa15801561335c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133809190615b0d565b1580613399575033600090815260166020526040902054155b156133a657506000919050565b600060106133f86040518060400160405280600681526020016572656465656d60d01b8152503360186000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516134059190615a05565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b03169181018290526001830154606082015260028301546080820152600383015460a082015260049092015460c08301529091503314158061189e575080602001516118ac5750600092915050565b6000610f146134a185610e7e565b848461128d565b60008060106134d66040518060400160405280600681526020016572656465656d60d01b815250858761402c565b6040516134e39190615a05565b90815260408051918290036020908101832060e084018352805460ff808216151586526101008204161515928501929092526001600160a01b036201000090920482169284018390526001810154606085015260028101546080850152600381015460a08501526004015460c084015291925090841614612a9b5760405162461bcd60e51b8152600401610de990615a21565b60008061358161226f565b90508060000361359457610eb78361464a565b610eb76135ad6135a6610eb260045490565b8584613bff565b61464a565b6135ba614a16565b6001600160a01b0381166135e457604051631e4fbdf760e01b815260006004820152602401610de9565b61170f81614a43565b6000546001600160a01b03163314806136195750613619600080516020615f0883398151915233612988565b6136355760405162461bcd60e51b8152600401610de99061598a565b61363d614620565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316036136d35760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742077697468647261772055534420746f6b656e2077697468207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610de9565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015613721573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137459190615d5e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015613790573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137b49190615b0d565b5061170f6001600755565b60008060106137ed6040518060400160405280600681526020016572656465656d60d01b815250858761402c565b6040516137fa9190615a05565b90815260408051918290036020908101832060e084018352805460ff808216151586526101008204161515928501929092526001600160a01b036201000090920482169284018390526001810154606085015260028101546080850152600381015460a08501526004015460c0840152919250908416146112655760405162461bcd60e51b8152600401610de990615a21565b60006001600160e01b03198216637965db0b60e01b1480610d0c57506301ffc9a760e01b6001600160e01b0319831614610d0c565b600082116138e25760405162461bcd60e51b8152600401610de990615ab4565b600e5482101561395a5760405162461bcd60e51b815260206004820152603b60248201527f416d6f756e74206d7573742062652067726561746572207468616e206f72206560448201527f7175616c20746f206d696e5769746864726177616c416d6f756e7400000000006064820152608401610de9565b600f548211156139d25760405162461bcd60e51b815260206004820152603860248201527f416d6f756e74206d757374206265206c657373207468616e206f72206571756160448201527f6c20746f206d61785769746864726177616c416d6f756e7400000000000000006064820152608401610de9565b6010846040516139e29190615a05565b908152602001604051809103902060010154600014613a135760405162461bcd60e51b8152600401610de990615cc1565b6001600160a01b038316600090815260136020526040902054613a369083615c1c565b6001600160a01b0384166000908152600260205260409020541015613a945760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610de9565b6000613a9e61226f565b90506000613ab08483610ead60045490565b90508215613ac757613ac28585614c59565b613af6565b6001600160a01b0385163303613ae157613ac23385614c59565b613aec85338661420a565b613af68585614c59565b613b008183615d77565b600a55613b106201518042615d25565b613b1d9062015180615d47565b600b556040805160e0810182526000808252602082018190526001600160a01b038816828401524260608301526080820187905260a0820184905260c08201529051601090613b6d908990615a05565b908152604080519182900360209081019092208351815493850151928501516001600160a01b0316620100000262010000600160b01b03199315156101000261ff00199215159290921661ffff19909516949094171791909116919091178155606082015160018201556080820151600282015560a0820151600382015560c090910151600490910155505050505050565b6000838302816000198587098281108382030391505080600003613c3657838281613c2c57613c2c615d0f565b0492505050610eb7565b808411613c4d57613c4d6003851502601118614c8f565b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6000613ce77f0000000000000000000000000000000000000000000000000000000000000000600a615e71565b610d0c9083615d25565b610fad8383836001614ca1565b6000838015613d9e57600184168015613d1957859250613d1d565b8392505b508260011c8460011c94505b8415613d98578560801c15613d3d57600080fd5b85860281810181811015613d5057600080fd5b8590049650506001851615613d8d578583028387820414613d76578615613d7657600080fd5b81810181811015613d8657600080fd5b8590049350505b8460011c9450613d29565b50613db4565b838015613dae5760009250613db2565b8392505b505b509392505050565b600080601184604051613dcf9190615a05565b908152602001604051809103902090506000816001015411613e035760405162461bcd60e51b8152600401610de990615c2f565b8054613e1e906201000090046001600160a01b031633612c1f565b613e3a5760405162461bcd60e51b8152600401610de990615a4e565b805460ff1615613e5c5760405162461bcd60e51b8152600401610de990615c7d565b8054610100900460ff16613ebe5760405162461bcd60e51b815260206004820152602360248201527f496e766573746d656e742072657175657374206973206e6f7420636c61696d61604482015262626c6560e81b6064820152608401610de9565b6001600160a01b038316613ee05780546201000090046001600160a01b031692505b600080613eeb61226f565b905080600003613f0957613f02836002015461464a565b9150613f2e565b613f2b613f1560045490565b613f22856002015461464a565b610ead8461464a565b91505b6002830154613f3d9082615c1c565b600a55613f4d6201518042615d25565b613f5a9062015180615d47565b600b55613f678583614d76565b600383015415613fdb576001600160a01b03851660009081526012602090815260408083206003870154845290915281208054849290613fa8908490615c1c565b90915550506001600160a01b03851660009081526013602052604081208054849290613fd5908490615c1c565b90915550505b8254600161ffff19909116178084556002840154620100009091046001600160a01b03166000908152601960205260408120805490919061401d908490615d77565b90915550919695505050505050565b606083614043846001600160a01b03166014614dac565b61404c84614f24565b60405160200161405e93929190615e80565b60405160208183030381529060405290509392505050565b61407e614620565b60006011826040516140909190615a05565b9081526020016040518091039020905060008160010154116140c45760405162461bcd60e51b8152600401610de990615c2f565b805460ff16156140e65760405162461bcd60e51b8152600401610de990615c7d565b805460ff191660011780825560028201546040516323b872dd60e01b81526000926001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116936323b872dd9361415193339362010000909104169190600401615ae9565b6020604051808303816000875af1158015614170573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141949190615b0d565b9050806141b35760405162461bcd60e51b8152600401610de990615b2a565b8154604051620100009091046001600160a01b0316907fa4e20764dca7e46187a86f8ab4d952545bd832b153a23cad99d8e554bb46e4aa906141f690869061540d565b60405180910390a2505061170f6001600755565b6001600160a01b038381166000908152600360209081526040808320938616835292905220546000198114611522578181101561427357604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610de9565b61152284848484036000614ca1565b6001600160a01b0383166142ac57604051634b637e8f60e11b815260006004820152602401610de9565b6001600160a01b0382166142d65760405163ec442f0560e01b815260006004820152602401610de9565b610fad838383614fb7565b61170f8133615158565b60006142f78383612988565b61435c5760008381526001602081815260408084206001600160a01b0387168086529252808420805460ff19169093179092559051339286917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a4506001610d0c565b506000610d0c565b600061436e614620565b60006010846040516143809190615a05565b9081526020016040518091039020905060008160010154116143b45760405162461bcd60e51b8152600401610de990615b8a565b80546143cf906201000090046001600160a01b031633612c1f565b6143eb5760405162461bcd60e51b8152600401610de990615a4e565b805460ff161561440d5760405162461bcd60e51b8152600401610de990615bd8565b8054610100900460ff1661446f5760405162461bcd60e51b815260206004820152602360248201527f5769746864726177616c2072657175657374206973206e6f7420636c61696d61604482015262626c6560e81b6064820152608401610de9565b6001600160a01b0383166144915780546201000090046001600160a01b031692505b8054600161ffff19909116178082556004820154620100009091046001600160a01b03166000908152601a6020526040812080549091906144d3908490615d77565b909155505060048082015460405163a9059cbb60e01b81526000926001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169263a9059cbb9261454092899291016001600160a01b03929092168252602082015260400190565b6020604051808303816000875af115801561455f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145839190615b0d565b9050806145a25760405162461bcd60e51b8152600401610de990615b2a565b50600401549050610d0c6001600755565b60006145bf8383612988565b1561435c5760008381526001602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610d0c565b60026007540361464357604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b60006146777f0000000000000000000000000000000000000000000000000000000000000000600a615e71565b610d0c9083615d47565b614689614620565b60085460ff166146db5760405162461bcd60e51b815260206004820152601760248201527f6e6f74206f70656e20666f7220696e766573746d656e740000000000000000006044820152606401610de9565b6000811161472b5760405162461bcd60e51b815260206004820181905260248201527f616d6f756e74206d7573742062652067726561746572207468616e207a65726f6044820152606401610de9565b600c548110156147a35760405162461bcd60e51b815260206004820152603b60248201527f616d6f756e74206d7573742062652067726561746572207468616e206f72206560448201527f7175616c20746f206d696e496e766573746d656e74416d6f756e7400000000006064820152608401610de9565b600d5481111561481b5760405162461bcd60e51b815260206004820152603860248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201527f6c20746f206d6178496e766573746d656e74416d6f756e7400000000000000006064820152608401610de9565b60118360405161482b9190615a05565b9081526020016040518091039020600101546000146148a35760405162461bcd60e51b815260206004820152602e60248201527f496e766573746d656e742072657175657374207769746820746869732049442060448201526d616c72656164792065786973747360901b6064820152608401610de9565b6040805160c08101825260008082526020820181905233828401524260608301526080820184905260a082015290516011906148e0908690615a05565b908152604080516020928190038301812084518154948601519386015161ffff1990951690151561ff0019161761010093151584021762010000600160b01b031916620100006001600160a01b0395861602178155606085015160018201556080850151600282015560a0909401516003909401939093556008546323b872dd60e01b84526000937f00000000000000000000000000000000000000000000000000000000000000008416936323b872dd936149a9938993919004909116908790600401615ae9565b6020604051808303816000875af11580156149c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149ec9190615b0d565b905080614a0b5760405162461bcd60e51b8152600401610de990615b2a565b50610fad6001600755565b6000546001600160a01b03163314611e1e5760405163118cdaa760e01b8152336004820152602401610de9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060095460001480614aa65750600b54155b15614ab3575050600a5490565b600b54821015614af95760405162461bcd60e51b81526020600482015260116024820152700496e76616c69642074696d657374616d7607c1b6044820152606401610de9565b600062015180600b5484614b0d9190615d77565b614b179190615d25565b9050610eb7600a54614b416009546402540be400614b359190615c1c565b846402540be400613cfe565b6402540be400613bff565b6001600160a01b0382166000908152601260209081526040808320848452909152902054614bbc5760405162461bcd60e51b815260206004820152601f60248201527f4e6f20636f6d6d69746d656e7420666f72207468697320646561646c696e65006044820152606401610de9565b6001600160a01b0382166000818152601260209081526040808320858452825280832054938352601390915281208054839290614bfa908490615d77565b90915550506001600160a01b038316600081815260126020908152604080832086845282528083209290925581518581529081018490527fa320053d9c2d98fcdf3d97ece75beb7f196905a3d17ebe17bb6ef695429239829101610e71565b6001600160a01b038216614c8357604051634b637e8f60e11b815260006004820152602401610de9565b6110e182600083614fb7565b634e487b71600052806020526024601cfd5b6001600160a01b038416614ccb5760405163e602df0560e01b815260006004820152602401610de9565b6001600160a01b038316614cf557604051634a1406b160e11b815260006004820152602401610de9565b6001600160a01b038085166000908152600360209081526040808320938716835292905220829055801561152257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051614d6891815260200190565b60405180910390a350505050565b6001600160a01b038216614da05760405163ec442f0560e01b815260006004820152602401610de9565b6110e160008383614fb7565b6060826000614dbc846002615d47565b614dc7906002615c1c565b67ffffffffffffffff811115614ddf57614ddf61565d565b6040519080825280601f01601f191660200182016040528015614e09576020820181803683370190505b509050600360fc1b81600081518110614e2457614e246158f7565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110614e5357614e536158f7565b60200101906001600160f81b031916908160001a9053506000614e77856002615d47565b614e82906001615c1c565b90505b6001811115614efa576f181899199a1a9b1b9c1cb0b131b232b360811b83600f1660108110614eb657614eb66158f7565b1a60f81b828281518110614ecc57614ecc6158f7565b60200101906001600160f81b031916908160001a90535060049290921c91614ef381615ef0565b9050614e85565b508115610f145760405163e22e27eb60e01b81526004810186905260248101859052604401610de9565b60606000614f3183615191565b600101905060008167ffffffffffffffff811115614f5157614f5161565d565b6040519080825280601f01601f191660200182016040528015614f7b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084614f8557509392505050565b6001600160a01b03831615806150365750601454604051633af32abf60e01b81526001600160a01b03858116600483015290911690633af32abf90602401602060405180830381865afa158015615012573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150369190615b0d565b6150825760405162461bcd60e51b815260206004820152601960248201527f53656e646572206973206e6f742077686974656c6973746564000000000000006044820152606401610de9565b6001600160a01b03821615806151015750601454604051633af32abf60e01b81526001600160a01b03848116600483015290911690633af32abf90602401602060405180830381865afa1580156150dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906151019190615b0d565b61514d5760405162461bcd60e51b815260206004820152601c60248201527f526563697069656e74206973206e6f742077686974656c6973746564000000006044820152606401610de9565b610fad838383615269565b6151628282612988565b6110e15760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610de9565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106151d05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106151fc576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061521a57662386f26fc10000830492506010015b6305f5e1008310615232576305f5e100830492506008015b612710831061524657612710830492506004015b60648310615258576064830492506002015b600a8310610d0c5760010192915050565b6001600160a01b0383166152945780600460008282546152899190615c1c565b909155506153069050565b6001600160a01b038316600090815260026020526040902054818110156152e75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610de9565b6001600160a01b03841660009081526002602052604090209082900390555b6001600160a01b03821661532257600480548290039055615341565b6001600160a01b03821660009081526002602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161538691815260200190565b60405180910390a3505050565b6000602082840312156153a557600080fd5b81356001600160e01b031981168114610eb757600080fd5b60005b838110156153d85781810151838201526020016153c0565b50506000910152565b600081518084526153f98160208601602086016153bd565b601f01601f19169290920160200192915050565b602081526000610eb760208301846153e1565b60008083601f84011261543257600080fd5b50813567ffffffffffffffff81111561544a57600080fd5b60208301915083602082850101111561546257600080fd5b9250929050565b60008060006040848603121561547e57600080fd5b833567ffffffffffffffff81111561549557600080fd5b6154a186828701615420565b909790965060209590950135949350505050565b6000602082840312156154c757600080fd5b5035919050565b6001600160a01b038116811461170f57600080fd5b80356154ee816154ce565b919050565b6000806040838503121561550657600080fd5b8235615511816154ce565b946020939093013593505050565b60008060006060848603121561553457600080fd5b505081359360208301359350604090920135919050565b6000806020838503121561555e57600080fd5b823567ffffffffffffffff81111561557557600080fd5b61558185828601615420565b90969095509350505050565b60006020828403121561559f57600080fd5b8135610eb7816154ce565b6000806000606084860312156155bf57600080fd5b83356155ca816154ce565b925060208401356155da816154ce565b929592945050506040919091013590565b600080604083850312156155fe57600080fd5b823591506020830135615610816154ce565b809150509250929050565b60008060006060848603121561563057600080fd5b833592506020840135615642816154ce565b91506040840135615652816154ce565b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561568657600080fd5b823567ffffffffffffffff81111561569d57600080fd5b8301601f810185136156ae57600080fd5b803567ffffffffffffffff8111156156c8576156c861565d565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156156f7576156f761565d565b60405281815282820160200187101561570f57600080fd5b81602084016020830137600060208383010152809450505050615734602084016154e3565b90509250929050565b6000806000806060858703121561575357600080fd5b843567ffffffffffffffff81111561576a57600080fd5b61577687828801615420565b90989097506020870135966040013595509350505050565b801515811461170f57600080fd5b600080604083850312156157af57600080fd5b82356157ba816154ce565b915060208301356156108161578e565b6000602082840312156157dc57600080fd5b8135610eb78161578e565b600080600080606085870312156157fd57600080fd5b8435615808816154ce565b9350602085013567ffffffffffffffff81111561582457600080fd5b61583087828801615420565b9598909750949560400135949350505050565b60008060006040848603121561585857600080fd5b833567ffffffffffffffff81111561586f57600080fd5b61587b86828701615420565b9094509250506020840135615652816154ce565b600080604083850312156158a257600080fd5b82356158ad816154ce565b91506020830135615610816154ce565b600181811c908216806158d157607f821691505b6020821081036158f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526016908201527549442063616e6e6f742073746172742077697468202560501b604082015260600190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408152600061597a60408301858761593d565b9050826020830152949350505050565b6020808252602c908201527f4f6e6c792061646d696e7320616e64206f776e65722063616e2063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016159fe576159fe6159d6565b5060010190565b60008251615a178184602087016153bd565b9190910192915050565b602080825260139082015272086dedce8e4ded8d8cae440dad2e6dac2e8c6d606b1b604082015260600190565b60208082526024908201527f53656e646572206973206e6f7420616e20617574686f72697a6564206f70657260408201526330ba37b960e11b606082015260800190565b604081526000615aa560408301856153e1565b90508260208301529392505050565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b600060208284031215615b1f57600080fd5b8151610eb78161578e565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b8183823760009101908152919050565b606081526000615b7760608301868861593d565b6020830194909452506040015292915050565b6020808252602e908201527f5769746864726177616c2072657175657374207769746820746869732049442060408201526d191bd95cc81b9bdd08195e1a5cdd60921b606082015260800190565b60208082526024908201527f5769746864726177616c207265717565737420697320616c726561647920636c6040820152631bdcd95960e21b606082015260800190565b80820180821115610d0c57610d0c6159d6565b6020808252602e908201527f496e766573746d656e742072657175657374207769746820746869732049442060408201526d191bd95cc81b9bdd08195e1a5cdd60921b606082015260800190565b60208082526024908201527f496e766573746d656e74207265717565737420697320616c726561647920636c6040820152631bdcd95960e21b606082015260800190565b6020808252602e908201527f5769746864726177616c2072657175657374207769746820746869732049442060408201526d616c72656164792065786973747360901b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082615d4257634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610d0c57610d0c6159d6565b600060208284031215615d7057600080fd5b5051919050565b81810381811115610d0c57610d0c6159d6565b6001815b6001841115615dc557808504811115615da957615da96159d6565b6001841615615db757908102905b60019390931c928002615d8e565b935093915050565b600082615ddc57506001610d0c565b81615de957506000610d0c565b8160018114615dff5760028114615e0957615e25565b6001915050610d0c565b60ff841115615e1a57615e1a6159d6565b50506001821b610d0c565b5060208310610133831016604e8410600b8410161715615e48575081810a610d0c565b615e556000198484615d8a565b8060001904821115615e6957615e696159d6565b029392505050565b6000610eb760ff841683615dcd565b602560f81b815260008451615e9c8160018501602089016153bd565b602d60f81b6001918401918201528451615ebd8160028401602089016153bd565b600181830101915050602d60f81b60018201528351615ee38160028401602088016153bd565b0160020195945050505050565b600081615eff57615eff6159d6565b50600019019056fea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a2646970667358221220626cc0880a8db849ec0d9d24bcdbf9ad69a09e54ba583584c0f8cb68fa148e7364736f6c634300081a003300000000000000000000000072fc78ca9a81d48ebd0847efb3dfb8fd9dbcd50b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000045553444d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553444d00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104d85760003560e01c80637d41c86e11610283578063ad121eb81161015c578063d905777e116100ce578063ef8b30f711610092578063ef8b30f714610bd1578063f2fde38b14610be4578063f4f3b20014610bf7578063f5a23d8d14610c0a578063f897a22b14610c1d578063fcfff16f14610c4457600080fd5b8063d905777e14610b56578063da39b3e714610b69578063dd62ed3e14610b7c578063e5328e0614610bb5578063eaed1d0714610bbe57600080fd5b8063ba08765211610120578063ba08765214610ae1578063c63d75b614610af4578063c6e6f5921461056b578063c7f68b7d14610b07578063ce96cb7714610b30578063d547741f14610b4357600080fd5b8063ad121eb814610a8c578063b2a478f714610a9f578063b3d7f6b914610aa8578063b460af9414610abb578063b6363cf214610ace57600080fd5b806391cce4e2116101f557806395d89b41116101b957806395d89b4114610a3d578063995ea21a14610a45578063a1d187a714610a58578063a217fddf14610a6b578063a8d5fd6514610a73578063a9059cbb14610a7957600080fd5b806391cce4e2146109e857806391d14854146109fb57806393e59dc114610a0e57806394bf804d14610a2157806395a5862814610a3457600080fd5b806385b77f451161024757806385b77f451461096257806387228fc0146109755780638aab5b89146109885780638c9e2e5f146109b15780638da5cb5b146109c45780638f725541146109d557600080fd5b80637d41c86e146109035780637ea084da146109165780637fbb108614610929578063854cff2f1461093c57806385b5b14d1461094f57600080fd5b806336568abe116103b55780635b7f415c11610327578063715018a6116102eb578063715018a6146108a557806372a79388146108ad57806375b238fc146108c05780637aac8c65146108d55780637ab8ff98146108e85780637ad5b5df146108f057600080fd5b80635b7f415c1461083b578063608bf379146108435780636e553f65146108565780636fdca5e01461086957806370a082311461087c57600080fd5b8063402d267d11610379578063402d267d1461076b578063403f37311461077e5780634148325a146107915780634bbf7400146107a45780634cdad50614610815578063558a72971461082857600080fd5b806336568abe146106dc578063371fd8e6146106ef578063375b74c31461070257806338d52e0f146107325780633f47ea881461075857600080fd5b806323b872dd1161044e5780632e2d2984116104125780632e2d29841461062f5780632f2ff15d146106425780632f408cbe14610655578063313ce5671461066857806331403b5e1461067d578063351be7d8146106b357600080fd5b806323b872dd146105bf578063248a9ca3146105d257806325303a73146105f657806325387d511461060957806326c6f96c1461061c57600080fd5b8063095ea7b3116104a0578063095ea7b3146105585780630a28a4771461056b5780630b94e4f71461057e578063106381531461059157806318160ddd146105a45780632244e1c7146105ac57600080fd5b806301e1d114146104dd57806301ffc9a7146104f857806306fdde031461051b578063071f8a981461053057806307a2d13a14610545575b600080fd5b6104e5610c51565b6040519081526020015b60405180910390f35b61050b610506366004615393565b610c60565b60405190151581526020016104ef565b610523610d12565b6040516104ef919061540d565b61054361053e366004615469565b610da4565b005b6104e56105533660046154b5565b610e7e565b61050b6105663660046154f3565b610ebe565b6104e56105793660046154b5565b610ed6565b6104e561058c36600461551f565b610f07565b61054361059f36600461554b565b610f1c565b6004546104e5565b6105436105ba36600461558d565b610fb2565b61050b6105cd3660046155aa565b6110e5565b6104e56105e03660046154b5565b6000908152600160208190526040909120015490565b6105436106043660046154b5565b611109565b610543610617366004615469565b611156565b6104e561062a3660046155eb565b6111a0565b6104e561063d36600461561b565b61128d565b6105436106503660046155eb565b6114fc565b610543610663366004615673565b611528565b60125b60405160ff90911681526020016104ef565b6104e561068b3660046154f3565b6001600160a01b03919091166000908152601260209081526040808320938352929052205490565b6104e56106c136600461558d565b6001600160a01b031660009081526013602052604090205490565b6105436106ea3660046155eb565b6115b5565b6105436106fd3660046154b5565b6115e8565b60085461071a9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016104ef565b7f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec761071a565b6104e56107663660046154b5565b611712565b6104e561077936600461558d565b611730565b61054361078c36600461558d565b6118b6565b61054361079f36600461573d565b6119a6565b6107b76107b236600461554b565b611adc565b6040516104ef91908151151581526020808301511515908201526040808301516001600160a01b031690820152606080830151908201526080808301519082015260a0808301519082015260c0918201519181019190915260e00190565b6104e56108233660046154b5565b611bb3565b61050b61083636600461579c565b611bde565b61066b601281565b610543610851366004615469565b611ca7565b6104e56108643660046155eb565b611d6f565b6105436108773660046157ca565b611d7c565b6104e561088a36600461558d565b6001600160a01b031660009081526002602052604090205490565b610543611e0c565b6105436108bb366004615469565b611e20565b6104e5600080516020615f0883398151915281565b6105436108e336600461554b565b6120c4565b6104e561226f565b6105436108fe3660046157e7565b61227a565b6104e561091136600461561b565b612428565b610543610924366004615843565b612502565b6105436109373660046154b5565b6125c9565b61054361094a36600461558d565b612616565b61054361095d3660046154b5565b6126a8565b6104e561097036600461561b565b6126f5565b61054361098336600461554b565b6127c3565b6104e561099636600461558d565b6001600160a01b031660009081526016602052604090205490565b6105436109bf3660046154b5565b61288f565b6000546001600160a01b031661071a565b6105436109e33660046154b5565b6128e9565b6105436109f63660046154f3565b612936565b61050b610a093660046155eb565b612988565b60145461071a906001600160a01b031681565b6104e5610a2f3660046155eb565b6129b3565b6104e560095481565b6105236129c7565b6104e5610a533660046155eb565b6129d6565b610543610a663660046154b5565b612ab6565b6104e5600081565b3061071a565b61050b610a873660046154f3565b612b5b565b610543610a9a3660046154b5565b612b69565b6104e5600b5481565b6104e5610ab63660046154b5565b612beb565b6104e5610ac936600461561b565b612c0a565b61050b610adc36600461588f565b612c1f565b6104e5610aef36600461561b565b612ca1565b6104e5610b0236600461558d565b612fd3565b6104e5610b1536600461558d565b6001600160a01b031660009081526015602052604090205490565b6104e5610b3e36600461558d565b61315c565b610543610b513660046155eb565b6132eb565b6104e5610b6436600461558d565b613311565b6104e5610b7736600461561b565b613493565b6104e5610b8a36600461588f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6104e5600a5481565b6104e5610bcc3660046155eb565b6134a8565b6104e5610bdf3660046154b5565b613576565b610543610bf236600461558d565b6135b2565b610543610c0536600461558d565b6135ed565b6104e5610c183660046155eb565b6137bf565b61071a7f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781565b60085461050b9060ff1681565b6000610c5b61226f565b905090565b60006001600160e01b0319821663043eff2d60e51b1480610c9157506001600160e01b03198216630ce3bbe560e41b145b80610cac57506001600160e01b03198216631883ba3960e21b145b80610cc757506001600160e01b0319821663e3bc4e6560e01b145b80610ce257506001600160e01b0319821663a8d5fd6560e01b145b80610cfd57506001600160e01b031982166301ffc9a760e01b145b80610d0c5750610d0c8261388d565b92915050565b606060058054610d21906158bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4d906158bd565b8015610d9a5780601f10610d6f57610100808354040283529160200191610d9a565b820191906000526020600020905b815481529060010190602001808311610d7d57829003601f168201915b5050505050905090565b82826000818110610db757610db76158f7565b909101356001600160f81b031916602560f81b039050610df25760405162461bcd60e51b8152600401610de99061590d565b60405180910390fd5b610e3483838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525033935086925090506138c2565b336001600160a01b03167f7d43a51e9752bfe77b60b938e0e8e0f98537d42d1953eedf29908890830b4e64848484604051610e7193929190615966565b60405180910390a2505050565b600080610e8961226f565b905080600003610e9c5750600092915050565b610eb7610eb28483610ead60045490565b613bff565b613cba565b9392505050565b600033610ecc818585613cf1565b5060019392505050565b600080610ee161226f565b905080600003610ef45750600092915050565b610eb783610f0160045490565b83613bff565b6000610f14848484613cfe565b949350505050565b6000546001600160a01b0316331480610f485750610f48600080516020615f0883398151915233612988565b610f645760405162461bcd60e51b8152600401610de99061598a565b610f6e82826120c4565b610fad82828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250613dbc915050565b505050565b6000546001600160a01b0316331480610fde5750610fde600080516020615f0883398151915233612988565b610ffa5760405162461bcd60e51b8152600401610de99061598a565b6001600160a01b03811660009081526015602052604090205461105b5760405162461bcd60e51b815260206004820152601960248201527811195c1bdcda5d081c995c5d595cdd081b9bdd08199bdd5b99603a1b6044820152606401610de9565b60006110ac6040518060400160405280600781526020016619195c1bdcda5d60ca1b8152508360176000866001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6001600160a01b03831660009081526017602052604081208054929350906110d3836159ec565b91905055506110e181614076565b5050565b6000336110f385828561420a565b6110fe858585614282565b506001949350505050565b6000546001600160a01b03163314806111355750611135600080516020615f0883398151915233612988565b6111515760405162461bcd60e51b8152600401610de99061598a565b600f55565b611161838383611e20565b610fad83838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509250611528915050565b60008060116111cf6040518060400160405280600781526020016619195c1bdcda5d60ca1b815250858761402c565b6040516111dc9190615a05565b90815260408051918290036020908101832060c084018352805460ff808216151586526101008204161515928501929092526001600160a01b0362010000909204821692840183905260018101546060850152600281015460808501526003015460a0840152919250908416146112655760405162461bcd60e51b8152600401610de990615a21565b805180611273575080602001515b15611282576000915050610d0c565b608001519392505050565b60006112998233612c1f565b6112b55760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b0382166000908152601560205260409020546113165760405162461bcd60e51b815260206004820152601960248201527811195c1bdcda5d081c995c5d595cdd081b9bdd08199bdd5b99603a1b6044820152606401610de9565b60006113676040518060400160405280600781526020016619195c1bdcda5d60ca1b8152508460176000876001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b9050600060118260405161137b9190615a05565b908152604080516020928190038301812060c082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101919091526001820154606082015260028201546080820181905260039092015460a0820152915086146114425760405162461bcd60e51b815260206004820152602560248201527f4465706f73697420616d6f756e7420646f6573206e6f74206d617463682072656044820152641c5d595cdd60da1b6064820152608401610de9565b836001600160a01b031681604001516001600160a01b0316146114775760405162461bcd60e51b8152600401610de990615a21565b6001600160a01b038416600090815260176020526040812080549161149b836159ec565b91905055506114aa8286613dbc565b60408051888152602081018390529194506001600160a01b0387169133917fdcbc1c05240f31ff3ad067ef1ee35ce4997762752e3a095284754544f4c709d7910160405180910390a350509392505050565b60008281526001602081905260409091200154611518816142e1565b61152283836142eb565b50505050565b8160008151811061153b5761153b6158f7565b01602001516001600160f81b031916602560f81b0361156c5760405162461bcd60e51b8152600401610de99061590d565b60006115788383614364565b9050816001600160a01b03167f6b92a032d8e52d36d804fa511c21d1088f84428120c318e5cafc842eebcbca4e8483604051610e71929190615a92565b6001600160a01b03811633146115de5760405163334bd91960e11b815260040160405180910390fd5b610fad82826145b3565b6115f0614620565b600081116116105760405162461bcd60e51b8152600401610de990615ab4565b6008546040516323b872dd60e01b81526000916001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec78116926323b872dd9261166d92339261010090920416908790600401615ae9565b6020604051808303816000875af115801561168c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b09190615b0d565b9050806116cf5760405162461bcd60e51b8152600401610de990615b2a565b60405182815233907fbb284f7f8cb8b1b8c98ee9a7d765413efc44bbb17352a0302ada1d737cdaef1b9060200160405180910390a25061170f6001600755565b50565b60008061171d61226f565b905080600003610ef457610eb78361464a565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa15801561177b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061179f9190615b0d565b15806117b8575033600090815260156020526040902054155b156117c557506000919050565b600060116118186040518060400160405280600781526020016619195c1bdcda5d60ca1b8152503360176000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516118259190615a05565b908152604080516020928190038301812060c082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101829052600183015460608201526002830154608082015260039092015460a08301529091503314158061189e57508060200151155b156118ac5750600092915050565b6080015192915050565b6000546001600160a01b03163314806118e257506118e2600080516020615f0883398151915233612988565b6118fe5760405162461bcd60e51b8152600401610de99061598a565b6001600160a01b0381166119545760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420637573746f6469616e2061646472657373000000000000006044820152606401610de9565b60088054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fb88c20a211c5d7677ba2a26c317d8ae6b25aa492016dc8ceca2469761d063d8090600090a250565b838360008181106119b9576119b96158f7565b909101356001600160f81b031916602560f81b0390506119eb5760405162461bcd60e51b8152600401610de99061590d565b428111611a2d5760405162461bcd60e51b815260206004820152601060248201526f496e76616c696420646561646c696e6560801b6044820152606401610de9565b611a7084848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152503392508691506146819050565b8060118585604051611a83929190615b53565b9081526040519081900360200181206003019190915533907fc3d7c27aca23c9fb37e4b207505be153270189a973cc8afcc54a172ea08fe66890611ace908790879087908790615b63565b60405180910390a250505050565b611b296040518060e0016040528060001515815260200160001515815260200160006001600160a01b03168152602001600081526020016000815260200160008152602001600081525090565b60108383604051611b3b929190615b53565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101919091526001820154606082015260028201546080820152600382015460a082015260049091015460c08201529392505050565b600080611bbf60045490565b905080600003611bd25750600092915050565b610eb783610f0161226f565b60006001600160a01b038316611c365760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206f70657261746f72206164647265737300000000000000006044820152606401610de9565b336000818152601b602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917fceb576d9f15e4e200fdb5096d64d5dfd667e16def20c1eefd14256d8e3faa267910160405180910390a350600192915050565b82826000818110611cba57611cba6158f7565b909101356001600160f81b031916602560f81b039050611cec5760405162461bcd60e51b8152600401610de99061590d565b611d2f83838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152503392508591506146819050565b336001600160a01b03167fc3d7c27aca23c9fb37e4b207505be153270189a973cc8afcc54a172ea08fe6688484846000604051610e719493929190615b63565b6000610eb783833361128d565b6000546001600160a01b0316331480611da85750611da8600080516020615f0883398151915233612988565b611dc45760405162461bcd60e51b8152600401610de99061598a565b6008805460ff19168215159081179091556040519081527f50ea4db57628851a1970ad4a3cc76cab7eb7e50b8526f7786e429df90f099d3d906020015b60405180910390a150565b611e14614a16565b611e1e6000614a43565b565b6000546001600160a01b0316331480611e4c5750611e4c600080516020615f0883398151915233612988565b611e685760405162461bcd60e51b8152600401610de99061598a565b611e70614620565b600060108484604051611e84929190615b53565b908152602001604051809103902090506000816001015411611eb85760405162461bcd60e51b8152600401610de990615b8a565b805460ff1615611eda5760405162461bcd60e51b8152600401610de990615bd8565b60008211611efa5760405162461bcd60e51b8152600401610de990615ab4565b8060030154821115611f6c5760405162461bcd60e51b815260206004820152603560248201527f416d6f756e74206d757374206265206c657373207468616e206f7220657175616044820152741b081d1bc81c995c5d595cdd195908185b5bdd5b9d605a1b6064820152608401610de9565b805461ff00191661010017808255600482018390556001600160a01b0362010000909104166000908152601a602052604081208054849290611faf908490615c1c565b90915550506040516323b872dd60e01b81526000906001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec716906323b872dd9061200790339030908890600401615ae9565b6020604051808303816000875af1158015612026573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204a9190615b0d565b9050806120695760405162461bcd60e51b8152600401610de990615b2a565b8154604051620100009091046001600160a01b0316907f2691d35c2c6ce999ca72a1ec44dbdd447a1136cbdb62a461cfce22b0e03ced06906120b090889088908890615966565b60405180910390a25050610fad6001600755565b6000546001600160a01b03163314806120f057506120f0600080516020615f0883398151915233612988565b61210c5760405162461bcd60e51b8152600401610de99061598a565b600060118383604051612120929190615b53565b9081526020016040518091039020905060008160010154116121545760405162461bcd60e51b8152600401610de990615c2f565b805460ff16156121765760405162461bcd60e51b8152600401610de990615c7d565b8054610100900460ff16156121dd5760405162461bcd60e51b815260206004820152602760248201527f496e766573746d656e74207265717565737420697320616c726561647920636c60448201526661696d61626c6560c81b6064820152608401610de9565b805461010061ff0019909116178082556002820154620100009091046001600160a01b031660009081526019602052604081208054909190612220908490615c1c565b909155505080546002820154604051620100009092046001600160a01b0316917f5ddbfc9391a6d1d11f3a3e53ddaf7895e024bebd6152309a7120916aaf741ac591610e719187918791615966565b6000610c5b42614a93565b6000546001600160a01b03163314806122a657506122a6600080516020615f0883398151915233612988565b6122c25760405162461bcd60e51b8152600401610de99061598a565b600081116122e25760405162461bcd60e51b8152600401610de990615ab4565b601083836040516122f4929190615b53565b9081526020016040518091039020600101546000146123255760405162461bcd60e51b8152600401610de990615cc1565b6001600160a01b0384166000908152601360205260409020546123489082615c1c565b6001600160a01b03851660009081526002602052604090205410156123a65760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610de9565b6123eb83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250889250859150600190506138c2565b836001600160a01b03167f7d43a51e9752bfe77b60b938e0e8e0f98537d42d1953eedf29908890830b4e64848484604051611ace93929190615966565b60006124348333612c1f565b6124505760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b0383166000908152601660205260408120805491612474836159ec565b9190505590506124af6124a66040518060400160405280600681526020016572656465656d60d01b815250858461402c565b838660006138c2565b604080513381526020810186905282916001600160a01b0380861692908716917f1fdc681a13d8c5da54e301c7ce6542dcde4581e4725043fdab2db12ddc57450691015b60405180910390a49392505050565b82826000818110612515576125156158f7565b909101356001600160f81b031916602560f81b0390506125475760405162461bcd60e51b8152600401610de99061590d565b600061258a84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250869250613dbc915050565b9050816001600160a01b03167ffb400abdd6d94f1b489c0fb866536c810c984df0e46f4b9cd8fbbb9221911df1858584604051611ace93929190615966565b6000546001600160a01b03163314806125f557506125f5600080516020615f0883398151915233612988565b6126115760405162461bcd60e51b8152600401610de99061598a565b600c55565b6000546001600160a01b03163314806126425750612642600080516020615f0883398151915233612988565b61265e5760405162461bcd60e51b8152600401610de99061598a565b601480546001600160a01b0319166001600160a01b0383169081179091556040517f29d77446d0fb0dcebabf25ce79ea69ba1382a4525d4acf615a38c89c798aef7190600090a250565b6000546001600160a01b03163314806126d457506126d4600080516020615f0883398151915233612988565b6126f05760405162461bcd60e51b8152600401610de99061598a565b600e55565b60006127018333612c1f565b61271d5760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b0383166000908152601560205260408120805491612741836159ec565b91905055905061277b6127746040518060400160405280600781526020016619195c1bdcda5d60ca1b815250858461402c565b8386614681565b604080513381526020810186905282916001600160a01b0380861692908716917fbb58420bb8ce44e11b84e214cc0de10ce5e7c24d0355b2815c3d758b514cae7291016124f3565b6000546001600160a01b03163314806127ef57506127ef600080516020615f0883398151915233612988565b61280b5760405162461bcd60e51b8152600401610de99061598a565b8181600081811061281e5761281e6158f7565b909101356001600160f81b031916602560f81b0390506128505760405162461bcd60e51b8152600401610de99061590d565b6110e182828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061407692505050565b804210156128df5760405162461bcd60e51b815260206004820152601b60248201527f446561646c696e6520686173206e6f74207061737365642079657400000000006044820152606401610de9565b61170f3382614b4c565b6000546001600160a01b03163314806129155750612915600080516020615f0883398151915233612988565b6129315760405162461bcd60e51b8152600401610de99061598a565b600d55565b6000546001600160a01b03163314806129625750612962600080516020615f0883398151915233612988565b61297e5760405162461bcd60e51b8152600401610de99061598a565b6110e18282614b4c565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610eb76129c184610e7e565b83611d6f565b606060068054610d21906158bd565b6000806011612a056040518060400160405280600781526020016619195c1bdcda5d60ca1b815250858761402c565b604051612a129190615a05565b90815260408051918290036020908101832060c084018352805460ff808216151586526101008204161515928501929092526001600160a01b0362010000909204821692840183905260018101546060850152600281015460808501526003015460a084015291925090841614612a9b5760405162461bcd60e51b8152600401610de990615a21565b80518061127357508060200151611282576000915050610d0c565b6000546001600160a01b0316331480612ae25750612ae2600080516020615f0883398151915233612988565b612afe5760405162461bcd60e51b8152600401610de99061598a565b612b0661226f565b600a55612b166201518042615d25565b612b239062015180615d47565b600b5560098190556040518181527f1a728f9338714691aa7d3917d797b14e883fa68a35ea7cb3d0913d0fe98d583e90602001611e01565b600033610ecc818585614282565b6000546001600160a01b0316331480612b955750612b95600080516020615f0883398151915233612988565b612bb15760405162461bcd60e51b8152600401610de99061598a565b6000612bc06201518083615d25565b612bcd9062015180615d47565b9050600b548111156110e157612be281614a93565b600a55600b5550565b600080612bf760045490565b905080600003611bd257610eb783613cba565b6000610f14612c1885611712565b8484612ca1565b6000816001600160a01b0316836001600160a01b03161480612c4e57506000546001600160a01b038381169116145b80612c6c5750612c6c600080516020615f0883398151915283612988565b80610eb75750506001600160a01b039182166000908152601b6020908152604080832093909416825291909152205460ff1690565b6000612cad8233612c1f565b612cc95760405162461bcd60e51b8152600401610de990615a4e565b6001600160a01b038216600090815260166020526040902054612d295760405162461bcd60e51b815260206004820152601860248201527714995919595b481c995c5d595cdd081b9bdd08199bdd5b9960421b6044820152606401610de9565b6000612d796040518060400160405280600681526020016572656465656d60d01b8152508460186000876001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b90506000601082604051612d8d9190615a05565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b03169181019190915260018201546060820181905260028301546080830152600383015460a083015260049092015460c08201529150612e495760405162461bcd60e51b815260206004820152601860248201527714995919595b481c995c5d595cdd081b9bdd08199bdd5b9960421b6044820152606401610de9565b8060200151612e9a5760405162461bcd60e51b815260206004820152601c60248201527f52656465656d2072657175657374206e6f7420636c61696d61626c65000000006044820152606401610de9565b85816080015114612ef95760405162461bcd60e51b8152602060048201526024808201527f52656465656d20616d6f756e7420646f6573206e6f74206d61746368207265716044820152631d595cdd60e21b6064820152608401610de9565b836001600160a01b031681604001516001600160a01b031614612f2e5760405162461bcd60e51b8152600401610de990615a21565b6001600160a01b0384166000908152601860205260408120805491612f52836159ec565b9190505550612f618286614364565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167ffbde797d201c681b91056529119e0b02407c7bb96a4a2c75c01fc9667232c8db8460a001518a604051612fbe929190918252602082015260400190565b60405180910390a460a0015195945050505050565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa15801561301e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130429190615b0d565b158061305b575033600090815260156020526040902054155b1561306857506000919050565b600060116130bb6040518060400160405280600781526020016619195c1bdcda5d60ca1b8152503360176000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516130c89190615a05565b908152604080516020928190038301812060c082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b0316918101829052600183015460608201526002830154608082015260039092015460a08301529091503314158061314157508060200151155b1561314f5750600092915050565b610eb78160800151611712565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa1580156131a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131cb9190615b0d565b15806131e4575033600090815260166020526040902054155b156131f157506000919050565b600060106132436040518060400160405280600681526020016572656465656d60d01b8152503360186000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516132509190615a05565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b03169181018290526001830154606082015260028301546080820152600383015460a082015260049092015460c0830152909150331415806132d357508060200151155b156132e15750600092915050565b60a0015192915050565b60008281526001602081905260409091200154613307816142e1565b61152283836145b3565b601454604051633af32abf60e01b81526001600160a01b0383811660048301526000921690633af32abf90602401602060405180830381865afa15801561335c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133809190615b0d565b1580613399575033600090815260166020526040902054155b156133a657506000919050565b600060106133f86040518060400160405280600681526020016572656465656d60d01b8152503360186000336001600160a01b03166001600160a01b031681526020019081526020016000205461402c565b6040516134059190615a05565b908152604080516020928190038301812060e082018352805460ff80821615158452610100820416151594830194909452620100009093046001600160a01b03169181018290526001830154606082015260028301546080820152600383015460a082015260049092015460c08301529091503314158061189e575080602001516118ac5750600092915050565b6000610f146134a185610e7e565b848461128d565b60008060106134d66040518060400160405280600681526020016572656465656d60d01b815250858761402c565b6040516134e39190615a05565b90815260408051918290036020908101832060e084018352805460ff808216151586526101008204161515928501929092526001600160a01b036201000090920482169284018390526001810154606085015260028101546080850152600381015460a08501526004015460c084015291925090841614612a9b5760405162461bcd60e51b8152600401610de990615a21565b60008061358161226f565b90508060000361359457610eb78361464a565b610eb76135ad6135a6610eb260045490565b8584613bff565b61464a565b6135ba614a16565b6001600160a01b0381166135e457604051631e4fbdf760e01b815260006004820152602401610de9565b61170f81614a43565b6000546001600160a01b03163314806136195750613619600080516020615f0883398151915233612988565b6136355760405162461bcd60e51b8152600401610de99061598a565b61363d614620565b7f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec76001600160a01b0316816001600160a01b0316036136d35760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742077697468647261772055534420746f6b656e2077697468207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610de9565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015613721573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137459190615d5e565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015613790573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137b49190615b0d565b5061170f6001600755565b60008060106137ed6040518060400160405280600681526020016572656465656d60d01b815250858761402c565b6040516137fa9190615a05565b90815260408051918290036020908101832060e084018352805460ff808216151586526101008204161515928501929092526001600160a01b036201000090920482169284018390526001810154606085015260028101546080850152600381015460a08501526004015460c0840152919250908416146112655760405162461bcd60e51b8152600401610de990615a21565b60006001600160e01b03198216637965db0b60e01b1480610d0c57506301ffc9a760e01b6001600160e01b0319831614610d0c565b600082116138e25760405162461bcd60e51b8152600401610de990615ab4565b600e5482101561395a5760405162461bcd60e51b815260206004820152603b60248201527f416d6f756e74206d7573742062652067726561746572207468616e206f72206560448201527f7175616c20746f206d696e5769746864726177616c416d6f756e7400000000006064820152608401610de9565b600f548211156139d25760405162461bcd60e51b815260206004820152603860248201527f416d6f756e74206d757374206265206c657373207468616e206f72206571756160448201527f6c20746f206d61785769746864726177616c416d6f756e7400000000000000006064820152608401610de9565b6010846040516139e29190615a05565b908152602001604051809103902060010154600014613a135760405162461bcd60e51b8152600401610de990615cc1565b6001600160a01b038316600090815260136020526040902054613a369083615c1c565b6001600160a01b0384166000908152600260205260409020541015613a945760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610de9565b6000613a9e61226f565b90506000613ab08483610ead60045490565b90508215613ac757613ac28585614c59565b613af6565b6001600160a01b0385163303613ae157613ac23385614c59565b613aec85338661420a565b613af68585614c59565b613b008183615d77565b600a55613b106201518042615d25565b613b1d9062015180615d47565b600b556040805160e0810182526000808252602082018190526001600160a01b038816828401524260608301526080820187905260a0820184905260c08201529051601090613b6d908990615a05565b908152604080519182900360209081019092208351815493850151928501516001600160a01b0316620100000262010000600160b01b03199315156101000261ff00199215159290921661ffff19909516949094171791909116919091178155606082015160018201556080820151600282015560a0820151600382015560c090910151600490910155505050505050565b6000838302816000198587098281108382030391505080600003613c3657838281613c2c57613c2c615d0f565b0492505050610eb7565b808411613c4d57613c4d6003851502601118614c8f565b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6000613ce77f000000000000000000000000000000000000000000000000000000000000000c600a615e71565b610d0c9083615d25565b610fad8383836001614ca1565b6000838015613d9e57600184168015613d1957859250613d1d565b8392505b508260011c8460011c94505b8415613d98578560801c15613d3d57600080fd5b85860281810181811015613d5057600080fd5b8590049650506001851615613d8d578583028387820414613d76578615613d7657600080fd5b81810181811015613d8657600080fd5b8590049350505b8460011c9450613d29565b50613db4565b838015613dae5760009250613db2565b8392505b505b509392505050565b600080601184604051613dcf9190615a05565b908152602001604051809103902090506000816001015411613e035760405162461bcd60e51b8152600401610de990615c2f565b8054613e1e906201000090046001600160a01b031633612c1f565b613e3a5760405162461bcd60e51b8152600401610de990615a4e565b805460ff1615613e5c5760405162461bcd60e51b8152600401610de990615c7d565b8054610100900460ff16613ebe5760405162461bcd60e51b815260206004820152602360248201527f496e766573746d656e742072657175657374206973206e6f7420636c61696d61604482015262626c6560e81b6064820152608401610de9565b6001600160a01b038316613ee05780546201000090046001600160a01b031692505b600080613eeb61226f565b905080600003613f0957613f02836002015461464a565b9150613f2e565b613f2b613f1560045490565b613f22856002015461464a565b610ead8461464a565b91505b6002830154613f3d9082615c1c565b600a55613f4d6201518042615d25565b613f5a9062015180615d47565b600b55613f678583614d76565b600383015415613fdb576001600160a01b03851660009081526012602090815260408083206003870154845290915281208054849290613fa8908490615c1c565b90915550506001600160a01b03851660009081526013602052604081208054849290613fd5908490615c1c565b90915550505b8254600161ffff19909116178084556002840154620100009091046001600160a01b03166000908152601960205260408120805490919061401d908490615d77565b90915550919695505050505050565b606083614043846001600160a01b03166014614dac565b61404c84614f24565b60405160200161405e93929190615e80565b60405160208183030381529060405290509392505050565b61407e614620565b60006011826040516140909190615a05565b9081526020016040518091039020905060008160010154116140c45760405162461bcd60e51b8152600401610de990615c2f565b805460ff16156140e65760405162461bcd60e51b8152600401610de990615c7d565b805460ff191660011780825560028201546040516323b872dd60e01b81526000926001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec78116936323b872dd9361415193339362010000909104169190600401615ae9565b6020604051808303816000875af1158015614170573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141949190615b0d565b9050806141b35760405162461bcd60e51b8152600401610de990615b2a565b8154604051620100009091046001600160a01b0316907fa4e20764dca7e46187a86f8ab4d952545bd832b153a23cad99d8e554bb46e4aa906141f690869061540d565b60405180910390a2505061170f6001600755565b6001600160a01b038381166000908152600360209081526040808320938616835292905220546000198114611522578181101561427357604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610de9565b61152284848484036000614ca1565b6001600160a01b0383166142ac57604051634b637e8f60e11b815260006004820152602401610de9565b6001600160a01b0382166142d65760405163ec442f0560e01b815260006004820152602401610de9565b610fad838383614fb7565b61170f8133615158565b60006142f78383612988565b61435c5760008381526001602081815260408084206001600160a01b0387168086529252808420805460ff19169093179092559051339286917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a4506001610d0c565b506000610d0c565b600061436e614620565b60006010846040516143809190615a05565b9081526020016040518091039020905060008160010154116143b45760405162461bcd60e51b8152600401610de990615b8a565b80546143cf906201000090046001600160a01b031633612c1f565b6143eb5760405162461bcd60e51b8152600401610de990615a4e565b805460ff161561440d5760405162461bcd60e51b8152600401610de990615bd8565b8054610100900460ff1661446f5760405162461bcd60e51b815260206004820152602360248201527f5769746864726177616c2072657175657374206973206e6f7420636c61696d61604482015262626c6560e81b6064820152608401610de9565b6001600160a01b0383166144915780546201000090046001600160a01b031692505b8054600161ffff19909116178082556004820154620100009091046001600160a01b03166000908152601a6020526040812080549091906144d3908490615d77565b909155505060048082015460405163a9059cbb60e01b81526000926001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7169263a9059cbb9261454092899291016001600160a01b03929092168252602082015260400190565b6020604051808303816000875af115801561455f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145839190615b0d565b9050806145a25760405162461bcd60e51b8152600401610de990615b2a565b50600401549050610d0c6001600755565b60006145bf8383612988565b1561435c5760008381526001602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610d0c565b60026007540361464357604051633ee5aeb560e01b815260040160405180910390fd5b6002600755565b60006146777f000000000000000000000000000000000000000000000000000000000000000c600a615e71565b610d0c9083615d47565b614689614620565b60085460ff166146db5760405162461bcd60e51b815260206004820152601760248201527f6e6f74206f70656e20666f7220696e766573746d656e740000000000000000006044820152606401610de9565b6000811161472b5760405162461bcd60e51b815260206004820181905260248201527f616d6f756e74206d7573742062652067726561746572207468616e207a65726f6044820152606401610de9565b600c548110156147a35760405162461bcd60e51b815260206004820152603b60248201527f616d6f756e74206d7573742062652067726561746572207468616e206f72206560448201527f7175616c20746f206d696e496e766573746d656e74416d6f756e7400000000006064820152608401610de9565b600d5481111561481b5760405162461bcd60e51b815260206004820152603860248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201527f6c20746f206d6178496e766573746d656e74416d6f756e7400000000000000006064820152608401610de9565b60118360405161482b9190615a05565b9081526020016040518091039020600101546000146148a35760405162461bcd60e51b815260206004820152602e60248201527f496e766573746d656e742072657175657374207769746820746869732049442060448201526d616c72656164792065786973747360901b6064820152608401610de9565b6040805160c08101825260008082526020820181905233828401524260608301526080820184905260a082015290516011906148e0908690615a05565b908152604080516020928190038301812084518154948601519386015161ffff1990951690151561ff0019161761010093151584021762010000600160b01b031916620100006001600160a01b0395861602178155606085015160018201556080850151600282015560a0909401516003909401939093556008546323b872dd60e01b84526000937f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec78416936323b872dd936149a9938993919004909116908790600401615ae9565b6020604051808303816000875af11580156149c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149ec9190615b0d565b905080614a0b5760405162461bcd60e51b8152600401610de990615b2a565b50610fad6001600755565b6000546001600160a01b03163314611e1e5760405163118cdaa760e01b8152336004820152602401610de9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060095460001480614aa65750600b54155b15614ab3575050600a5490565b600b54821015614af95760405162461bcd60e51b81526020600482015260116024820152700496e76616c69642074696d657374616d7607c1b6044820152606401610de9565b600062015180600b5484614b0d9190615d77565b614b179190615d25565b9050610eb7600a54614b416009546402540be400614b359190615c1c565b846402540be400613cfe565b6402540be400613bff565b6001600160a01b0382166000908152601260209081526040808320848452909152902054614bbc5760405162461bcd60e51b815260206004820152601f60248201527f4e6f20636f6d6d69746d656e7420666f72207468697320646561646c696e65006044820152606401610de9565b6001600160a01b0382166000818152601260209081526040808320858452825280832054938352601390915281208054839290614bfa908490615d77565b90915550506001600160a01b038316600081815260126020908152604080832086845282528083209290925581518581529081018490527fa320053d9c2d98fcdf3d97ece75beb7f196905a3d17ebe17bb6ef695429239829101610e71565b6001600160a01b038216614c8357604051634b637e8f60e11b815260006004820152602401610de9565b6110e182600083614fb7565b634e487b71600052806020526024601cfd5b6001600160a01b038416614ccb5760405163e602df0560e01b815260006004820152602401610de9565b6001600160a01b038316614cf557604051634a1406b160e11b815260006004820152602401610de9565b6001600160a01b038085166000908152600360209081526040808320938716835292905220829055801561152257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051614d6891815260200190565b60405180910390a350505050565b6001600160a01b038216614da05760405163ec442f0560e01b815260006004820152602401610de9565b6110e160008383614fb7565b6060826000614dbc846002615d47565b614dc7906002615c1c565b67ffffffffffffffff811115614ddf57614ddf61565d565b6040519080825280601f01601f191660200182016040528015614e09576020820181803683370190505b509050600360fc1b81600081518110614e2457614e246158f7565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110614e5357614e536158f7565b60200101906001600160f81b031916908160001a9053506000614e77856002615d47565b614e82906001615c1c565b90505b6001811115614efa576f181899199a1a9b1b9c1cb0b131b232b360811b83600f1660108110614eb657614eb66158f7565b1a60f81b828281518110614ecc57614ecc6158f7565b60200101906001600160f81b031916908160001a90535060049290921c91614ef381615ef0565b9050614e85565b508115610f145760405163e22e27eb60e01b81526004810186905260248101859052604401610de9565b60606000614f3183615191565b600101905060008167ffffffffffffffff811115614f5157614f5161565d565b6040519080825280601f01601f191660200182016040528015614f7b576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084614f8557509392505050565b6001600160a01b03831615806150365750601454604051633af32abf60e01b81526001600160a01b03858116600483015290911690633af32abf90602401602060405180830381865afa158015615012573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150369190615b0d565b6150825760405162461bcd60e51b815260206004820152601960248201527f53656e646572206973206e6f742077686974656c6973746564000000000000006044820152606401610de9565b6001600160a01b03821615806151015750601454604051633af32abf60e01b81526001600160a01b03848116600483015290911690633af32abf90602401602060405180830381865afa1580156150dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906151019190615b0d565b61514d5760405162461bcd60e51b815260206004820152601c60248201527f526563697069656e74206973206e6f742077686974656c6973746564000000006044820152606401610de9565b610fad838383615269565b6151628282612988565b6110e15760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610de9565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106151d05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106151fc576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061521a57662386f26fc10000830492506010015b6305f5e1008310615232576305f5e100830492506008015b612710831061524657612710830492506004015b60648310615258576064830492506002015b600a8310610d0c5760010192915050565b6001600160a01b0383166152945780600460008282546152899190615c1c565b909155506153069050565b6001600160a01b038316600090815260026020526040902054818110156152e75760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610de9565b6001600160a01b03841660009081526002602052604090209082900390555b6001600160a01b03821661532257600480548290039055615341565b6001600160a01b03821660009081526002602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161538691815260200190565b60405180910390a3505050565b6000602082840312156153a557600080fd5b81356001600160e01b031981168114610eb757600080fd5b60005b838110156153d85781810151838201526020016153c0565b50506000910152565b600081518084526153f98160208601602086016153bd565b601f01601f19169290920160200192915050565b602081526000610eb760208301846153e1565b60008083601f84011261543257600080fd5b50813567ffffffffffffffff81111561544a57600080fd5b60208301915083602082850101111561546257600080fd5b9250929050565b60008060006040848603121561547e57600080fd5b833567ffffffffffffffff81111561549557600080fd5b6154a186828701615420565b909790965060209590950135949350505050565b6000602082840312156154c757600080fd5b5035919050565b6001600160a01b038116811461170f57600080fd5b80356154ee816154ce565b919050565b6000806040838503121561550657600080fd5b8235615511816154ce565b946020939093013593505050565b60008060006060848603121561553457600080fd5b505081359360208301359350604090920135919050565b6000806020838503121561555e57600080fd5b823567ffffffffffffffff81111561557557600080fd5b61558185828601615420565b90969095509350505050565b60006020828403121561559f57600080fd5b8135610eb7816154ce565b6000806000606084860312156155bf57600080fd5b83356155ca816154ce565b925060208401356155da816154ce565b929592945050506040919091013590565b600080604083850312156155fe57600080fd5b823591506020830135615610816154ce565b809150509250929050565b60008060006060848603121561563057600080fd5b833592506020840135615642816154ce565b91506040840135615652816154ce565b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561568657600080fd5b823567ffffffffffffffff81111561569d57600080fd5b8301601f810185136156ae57600080fd5b803567ffffffffffffffff8111156156c8576156c861565d565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156156f7576156f761565d565b60405281815282820160200187101561570f57600080fd5b81602084016020830137600060208383010152809450505050615734602084016154e3565b90509250929050565b6000806000806060858703121561575357600080fd5b843567ffffffffffffffff81111561576a57600080fd5b61577687828801615420565b90989097506020870135966040013595509350505050565b801515811461170f57600080fd5b600080604083850312156157af57600080fd5b82356157ba816154ce565b915060208301356156108161578e565b6000602082840312156157dc57600080fd5b8135610eb78161578e565b600080600080606085870312156157fd57600080fd5b8435615808816154ce565b9350602085013567ffffffffffffffff81111561582457600080fd5b61583087828801615420565b9598909750949560400135949350505050565b60008060006040848603121561585857600080fd5b833567ffffffffffffffff81111561586f57600080fd5b61587b86828701615420565b9094509250506020840135615652816154ce565b600080604083850312156158a257600080fd5b82356158ad816154ce565b91506020830135615610816154ce565b600181811c908216806158d157607f821691505b6020821081036158f157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526016908201527549442063616e6e6f742073746172742077697468202560501b604082015260600190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408152600061597a60408301858761593d565b9050826020830152949350505050565b6020808252602c908201527f4f6e6c792061646d696e7320616e64206f776e65722063616e2063616c6c207460408201526b3434b990333ab731ba34b7b760a11b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016159fe576159fe6159d6565b5060010190565b60008251615a178184602087016153bd565b9190910192915050565b602080825260139082015272086dedce8e4ded8d8cae440dad2e6dac2e8c6d606b1b604082015260600190565b60208082526024908201527f53656e646572206973206e6f7420616e20617574686f72697a6564206f70657260408201526330ba37b960e11b606082015260800190565b604081526000615aa560408301856153e1565b90508260208301529392505050565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b600060208284031215615b1f57600080fd5b8151610eb78161578e565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b8183823760009101908152919050565b606081526000615b7760608301868861593d565b6020830194909452506040015292915050565b6020808252602e908201527f5769746864726177616c2072657175657374207769746820746869732049442060408201526d191bd95cc81b9bdd08195e1a5cdd60921b606082015260800190565b60208082526024908201527f5769746864726177616c207265717565737420697320616c726561647920636c6040820152631bdcd95960e21b606082015260800190565b80820180821115610d0c57610d0c6159d6565b6020808252602e908201527f496e766573746d656e742072657175657374207769746820746869732049442060408201526d191bd95cc81b9bdd08195e1a5cdd60921b606082015260800190565b60208082526024908201527f496e766573746d656e74207265717565737420697320616c726561647920636c6040820152631bdcd95960e21b606082015260800190565b6020808252602e908201527f5769746864726177616c2072657175657374207769746820746869732049442060408201526d616c72656164792065786973747360901b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082615d4257634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417610d0c57610d0c6159d6565b600060208284031215615d7057600080fd5b5051919050565b81810381811115610d0c57610d0c6159d6565b6001815b6001841115615dc557808504811115615da957615da96159d6565b6001841615615db757908102905b60019390931c928002615d8e565b935093915050565b600082615ddc57506001610d0c565b81615de957506000610d0c565b8160018114615dff5760028114615e0957615e25565b6001915050610d0c565b60ff841115615e1a57615e1a6159d6565b50506001821b610d0c565b5060208310610133831016604e8410600b8410161715615e48575081810a610d0c565b615e556000198484615d8a565b8060001904821115615e6957615e696159d6565b029392505050565b6000610eb760ff841683615dcd565b602560f81b815260008451615e9c8160018501602089016153bd565b602d60f81b6001918401918201528451615ebd8160028401602089016153bd565b600181830101915050602d60f81b60018201528351615ee38160028401602088016153bd565b0160020195945050505050565b600081615eff57615eff6159d6565b50600019019056fea49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775a2646970667358221220626cc0880a8db849ec0d9d24bcdbf9ad69a09e54ba583584c0f8cb68fa148e7364736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000072fc78ca9a81d48ebd0847efb3dfb8fd9dbcd50b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000000000000000000000000000000000000000000045553444d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045553444d00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : whitelist_ (address): 0x72Fc78cA9A81D48eBD0847efb3DFB8FD9dbCD50b
Arg [1] : name_ (string): USDM
Arg [2] : symbol_ (string): USDM
Arg [3] : usdTokenAddr_ (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000072fc78ca9a81d48ebd0847efb3dfb8fd9dbcd50b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5553444d00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5553444d00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.