Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 220 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim To | 21706542 | 28 hrs ago | IN | 0 ETH | 0.00066888 | ||||
Claim To | 21698564 | 2 days ago | IN | 0 ETH | 0.00094119 | ||||
Claim To | 21629071 | 11 days ago | IN | 0 ETH | 0.0008655 | ||||
Claim To | 21626136 | 12 days ago | IN | 0 ETH | 0.00079527 | ||||
Claim To | 21601509 | 15 days ago | IN | 0 ETH | 0.00051362 | ||||
Claim To | 21445000 | 37 days ago | IN | 0 ETH | 0.00610336 | ||||
Claim To | 21260346 | 63 days ago | IN | 0 ETH | 0.00163554 | ||||
Claim To | 21210937 | 70 days ago | IN | 0 ETH | 0.00150489 | ||||
Claim To | 21109393 | 84 days ago | IN | 0 ETH | 0.00070841 | ||||
Claim To | 21070944 | 89 days ago | IN | 0 ETH | 0.00151604 | ||||
Claim To | 20914933 | 111 days ago | IN | 0 ETH | 0.00569224 | ||||
Claim To | 20788626 | 129 days ago | IN | 0 ETH | 0.00123746 | ||||
Claim To | 20777565 | 130 days ago | IN | 0 ETH | 0.00097705 | ||||
Claim To | 20760128 | 133 days ago | IN | 0 ETH | 0.00036857 | ||||
Claim To | 20742011 | 135 days ago | IN | 0 ETH | 0.00052222 | ||||
Claim To | 20727126 | 137 days ago | IN | 0 ETH | 0.00035404 | ||||
Claim To | 20648743 | 148 days ago | IN | 0 ETH | 0.0002548 | ||||
Claim To | 20644884 | 149 days ago | IN | 0 ETH | 0.00027824 | ||||
Claim To | 20608904 | 154 days ago | IN | 0 ETH | 0.00017601 | ||||
Claim To | 20608121 | 154 days ago | IN | 0 ETH | 0.00018305 | ||||
Claim To | 20597325 | 156 days ago | IN | 0 ETH | 0.00017809 | ||||
Claim To | 20591081 | 156 days ago | IN | 0 ETH | 0.00016375 | ||||
Claim To | 20583546 | 157 days ago | IN | 0 ETH | 0.00023136 | ||||
Claim To | 20582212 | 158 days ago | IN | 0 ETH | 0.00028739 | ||||
Claim To | 20561747 | 161 days ago | IN | 0 ETH | 0.00022284 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20068523 | 229 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CustomVesting
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.16; import "@chainlink/contracts/src/v0.8/KeeperCompatible.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "contracts/vesting/IVesting.sol"; import "contracts/vesting/CustomReleaser.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; /** * @title Vesting */ contract CustomVesting is IVesting, Pausable, AccessControl, ReentrancyGuard, KeeperCompatibleInterface { using SafeERC20 for IERC20; using SafeERC20 for IERC20Metadata; using EnumerableSet for EnumerableSet.AddressSet; bytes32 public constant AIRDROPPER = keccak256("AIRDROPPER"); uint256 public tge; /// @notice The redund period in seconds after TGE uint256 public refundPeriod; CustomReleaser private releaser; IERC20 private immutable token; IERC20Metadata public immutable refundToken; uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; EnumerableSet.AddressSet private _refundees; uint256 public claimFee; address payable public feeReserve; address public refundReserve; EnumerableSet.AddressSet private _autoAirdrops; uint256 public airdropFee; /// @dev The bool to determine if auto compounding is active bool private iterationActive = false; /// @dev The index of the address to start the auroAirdrop iteration from uint256 private autoAirdropIndex; /// @dev The number of addresses to iterate through in each auroAirdrop iteration uint256 private addressCountPerIteartion = 50; event PaymentReleased(address to, uint256 amount); event Airdropped(address to, uint256 amount); modifier onlyInRefundPeriod() { require( (block.timestamp < refundPeriod + tge) && (block.timestamp >= tge), "Refund is not open" ); _; } constructor( address _token, address _refundToken, address _refundReserve, address _feeReserve, uint256 _tge, uint256 _refundPeriod ) { require(_token != address(0), "Token address cannot be 0"); require(_refundReserve != address(0), "Refund reserve cannot be the zero address"); require(_feeReserve != address(0), "Fee reserve cannot be the zero address"); releaser = new CustomReleaser(address(this), _token); token = IERC20(_token); refundToken = IERC20Metadata(_refundToken); refundReserve = _refundReserve; feeReserve = payable(_feeReserve); tge = _tge; refundPeriod = _refundPeriod; airdropFee = 10 * refundToken.decimals(); _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(AIRDROPPER, msg.sender); } function updateIterationNumber(uint256 iteration) external onlyRole(DEFAULT_ADMIN_ROLE) { addressCountPerIteartion = iteration; } function setRefundPeriod(uint256 _refundPeriod) external onlyRole(DEFAULT_ADMIN_ROLE) { refundPeriod = _refundPeriod; } function updateReleaser(address _releaser) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_releaser != address(0), "Vesting: releaser cannot be the zero address"); releaser = CustomReleaser(_releaser); } function addVestingInstances( uint256[] memory unlockTimes, uint256[] memory amounts ) external onlyRole(DEFAULT_ADMIN_ROLE) { releaser.addVestingInstances(unlockTimes, amounts); } function setRefundReserve(address _refundReserve) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_refundReserve != address(0), "Vesting: refund reserve cannot be the zero address"); refundReserve = _refundReserve; } function setFeeReserve(address _feeReserve) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_feeReserve != address(0), "Vesting: fee reserve cannot be the zero address"); feeReserve = payable(_feeReserve); } function setClaimFee(uint256 _fee) external onlyRole(DEFAULT_ADMIN_ROLE) { claimFee = _fee; } function setAirdropFee(uint256 _fee) external onlyRole(DEFAULT_ADMIN_ROLE) { airdropFee = _fee; } function emergencyWithdraw( uint256 _amount, bool _fromReleaser ) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_fromReleaser) { releaser.emergencyWithdraw(msg.sender, _amount); } else { token.safeTransfer(msg.sender, _amount); } } function replaceWallet( address _oldWallet, address _newWallet ) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_oldWallet != address(0), "Vesting: old wallet is the zero address"); require(_newWallet != address(0), "Vesting: new wallet is the zero address"); require(_shares[_oldWallet] > 0, "Vesting: old wallet has no shares"); uint256 oldShares = _shares[_oldWallet]; _shares[_oldWallet] = 0; _shares[_newWallet] = oldShares; uint256 oldReleased = _released[_oldWallet]; _released[_oldWallet] = 0; _released[_newWallet] = oldReleased; emit SharesUpdated(_oldWallet, 0); emit SharesUpdated(_newWallet, oldShares); } function updateTimes(uint256 _tge) external onlyRole(DEFAULT_ADMIN_ROLE) { if (_tge > 0) { //require(_tge > block.timestamp, "TGE cannot be in the past"); tge = _tge; } } function airdrop(address[] memory _accounts) external onlyRole(AIRDROPPER) { releaser.release(); for (uint256 i = 0; i < _accounts.length; i++) { uint256 payment = releasable(_accounts[i]); if (payment > 0) { _release(_accounts[i], _accounts[i]); emit Claimed(_accounts[i], payment); } } } function removeAutoAirdrop(address _account) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_autoAirdrops.contains(_account), "Vesting: account has not requested airdrop"); _autoAirdrops.remove(_account); } function requestAutoAirdrop() external nonReentrant { require( !_autoAirdrops.contains(msg.sender), "Vesting: account has already requested airdrop" ); require(_shares[msg.sender] > 0, "Vesting: account has no shares"); _autoAirdrops.add(msg.sender); refundToken.safeTransferFrom(msg.sender, feeReserve, airdropFee); } /** * @dev See {IVesting-claim}. */ function claim() external payable nonReentrant whenNotPaused { require(block.timestamp >= tge, "Vesting: TGE has not happened yet"); require(msg.value >= claimFee, "Vesting: claim fee is not enough"); releaser.release(); uint256 payment = releasable(msg.sender); _release(msg.sender, msg.sender); if (msg.value > 0) { (bool sent, ) = feeReserve.call{value: msg.value}(""); require(sent, "Failed to send fee"); } emit Claimed(msg.sender, payment); } function claimTo(address _receiver) external payable nonReentrant whenNotPaused { require(block.timestamp >= tge, "Vesting: TGE has not happened yet"); require(msg.value >= claimFee, "Vesting: claim fee is not enough"); releaser.release(); uint256 payment = releasable(msg.sender); _release(msg.sender, _receiver); if (msg.value > 0) { (bool sent, ) = feeReserve.call{value: msg.value}(""); require(sent, "Failed to send fee"); } emit Claimed(msg.sender, payment); } function getRefund() external nonReentrant whenNotPaused onlyInRefundPeriod { require(claimedOf(msg.sender) == 0, "Vesting: account has already claimed"); require(!_refundees.contains(msg.sender), "Vesting: account has already been refunded"); require(_shares[msg.sender] > 0, "Vesting: account has no shares"); _refundUser(msg.sender); } /** * @dev Function to remove shares from an arrayof accounts and transfer the tokens to the admin. * emits {Refunded} event. * @param _accounts addresses of the accounts. */ function refundUsers(address[] memory _accounts) external onlyRole(DEFAULT_ADMIN_ROLE) { for (uint256 i = 0; i < _accounts.length; i++) { if (_refundees.contains(_accounts[i])) { continue; } else { _refundUser(_accounts[i]); } } } // ACCESS CONTROL FUNCTIONS function pause() external onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } function unpause() external onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } function batchSetShares(address[] memory _accounts, uint256[] memory _shares_) external { require(_accounts.length == _shares_.length, "Vesting: arrays length mismatch"); for (uint256 i = 0; i < _accounts.length; i++) { setShares(_accounts[i], _shares_[i]); } } function batchAddShares(address[] memory _accounts, uint256[] memory _shares_) external { require(_accounts.length == _shares_.length, "Vesting: arrays length mismatch"); for (uint256 i = 0; i < _accounts.length; i++) { addShares(_accounts[i], _shares_[i]); } } function batchRemoveShares(address[] memory _accounts) external { for (uint256 i = 0; i < _accounts.length; i++) { removeShares(_accounts[i]); } } function checkUpkeep( bytes calldata /* checkData */ ) external view override returns (bool upkeepNeeded, bytes memory performData) { upkeepNeeded = iterationActive; return (upkeepNeeded, ""); // We don't use the checkData in this example. The checkData is defined when the Upkeep was registered. } function performUpkeep(bytes calldata /* performData */) external override { //We highly recommend revalidating the upkeep in the performUpkeep function if (iterationActive) { autoAirdrop(); } // We don't use the performData in this example. The performData is generated by the Keeper's call to your checkUpkeep function } function autoAirdrop() public { uint256 usersLeft = _autoAirdrops.length() - autoAirdropIndex; uint256 startIndex = autoAirdropIndex; uint256 remaingCount; if (usersLeft > addressCountPerIteartion) { iterationActive = true; autoAirdropIndex = autoAirdropIndex + addressCountPerIteartion; remaingCount = addressCountPerIteartion; } else { iterationActive = false; remaingCount = usersLeft; autoAirdropIndex = 0; } for (uint256 i = startIndex; i < startIndex + remaingCount; i++) { address user = _autoAirdrops.at(i); _autoAirdrop(user); } } /** * @dev See {IVesting-claimableOf}. */ function claimableOf(address _account) external view returns (uint256) { return releasable(_account); } /** * @dev Function to get the vesting releaser contract. * @return address of the releaser contract. */ function getReleaser() external view returns (address) { return address(releaser); } /** * @dev Function to get the vesting token contract. * @return address of the token contract. */ function getTokenAddress() external view returns (address) { return address(token); } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) external view returns (uint256) { return _shares[account]; } function getTotalShares() external view returns (uint256) { return _totalShares; } function getRefundeeNumber() external view returns (uint256) { return _refundees.length(); } function getRefundees(uint _start, uint _end) external view returns (address[] memory) { uint256 refundeesCount = _refundees.length(); require(_start >= 0, "Vesting: start is negative"); require(_start < refundeesCount, "Vesting: start is greater than refundees length"); if (_end > refundeesCount) { _end = refundeesCount; } address[] memory _refs = new address[](_end - _start); for (uint i = _start; i < _end; i++) { _refs[i - _start] = _refundees.at(i); } return _refs; } function getAutoAirdropNumber() external view returns (uint256) { return _autoAirdrops.length(); } function getAutoAirdrops(uint _start, uint _end) external view returns (address[] memory) { uint256 airdropsCount = _autoAirdrops.length(); require(_start >= 0, "Vesting: start is negative"); require(_start < airdropsCount, "Vesting: start is greater than airdrops length"); if (_end > airdropsCount) { _end = airdropsCount; } address[] memory _drops = new address[](_end - _start); for (uint i = _start; i < _end; i++) { _drops[i - _start] = _autoAirdrops.at(i); } return _drops; } /** * @dev See {IVesting-setShares}. */ function setShares(address _account, uint256 shares_) public onlyRole(DEFAULT_ADMIN_ROLE) { require(_account != address(0), "Vesting: account is the zero address"); require(shares_ > 0, "Vesting: shares are 0"); uint256 oldShares = _shares[_account]; _shares[_account] = shares_; _totalShares = _totalShares + shares_ - oldShares; emit SharesUpdated(_account, shares_); } /** * @dev See {IVesting-addShares}. */ function addShares(address _account, uint256 _amount) public onlyRole(DEFAULT_ADMIN_ROLE) { require(_account != address(0), "Vesting: account is the zero address"); require(_amount > 0, "Vesting: shares are 0"); _shares[_account] += _amount; _totalShares += _amount; emit SharesAdded(_account, _amount); } /** * @dev See {IVesting-removeShares}. */ function removeShares(address _account) public onlyRole(DEFAULT_ADMIN_ROLE) { _removeShares(_account); } /** * @dev See {IVesting-totalClaimableOf}. */ function totalClaimableOf(address _account) public view returns (uint256) { uint256 totalAmount = token.balanceOf(address(this)) + token.balanceOf(address(releaser)) + _totalReleased; return _shareOf(_account, totalAmount); } /** * @dev See {IVesting-claimedOf}. */ function claimedOf(address _account) public view returns (uint256) { return _released[_account]; } function _autoAirdrop(address _account) internal { require(_autoAirdrops.contains(_account), "Vesting: account has not requested airdrop"); require(_shares[_account] > 0, "Vesting: account has no shares"); releaser.release(); uint256 payment = releasable(_account); if (payment > 0) { _release(_account, _account); emit Airdropped(_account, payment); } } /** * @dev Function to remove shares from an account and transfer the tokens to the admin. * emits {Refunded} event. * @param _account address of the account. */ function _refundUser(address _account) internal { require(releaser.released() == 0, "Cliff has ended"); require(releaser.releasable() == 0, "Vesting: releaser has releasable tokens"); if (claimedOf(_account) > 0) { return; } else { _refundees.add(_account); uint256 payment = releasable(_account); uint256 notClaimed = totalClaimableOf(_account); uint256 share = _shares[_account]; _removeShares(_account); releaser.emergencyWithdraw(refundReserve, notClaimed - payment); token.safeTransfer(refundReserve, payment); refundToken.safeTransferFrom(refundReserve, _account, share); emit Refunded(_account, notClaimed); } } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function _release(address account, address _receiver) internal virtual { require(_shares[account] > 0, "Vesting: account has no shares"); uint256 payment = releasable(account); require(payment != 0, "Vesting: account is not due payment"); _released[account] += payment; _totalReleased += payment; token.safeTransfer(_receiver, payment); emit PaymentReleased(_receiver, payment); } function _removeShares(address _account) internal { require(_account != address(0), "Vesting: account is the zero address"); uint256 oldShares = _shares[_account]; _shares[_account] = 0; _totalShares -= oldShares; emit SharesUpdated(_account, 0); } /** * @dev Getter for the amount of shares in tokens with respect to total amounts. * @param _account address of the account. * @param _amount amount of total tokens. * @return amount of tokens account can receive. */ function _shareOf(address _account, uint256 _amount) internal view returns (uint256) { return (_amount * _shares[_account]) / _totalShares; } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(address account) internal view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + _totalReleased + releaser.releasable(); return _pendingPayment(account, totalReceived, _released[account]); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } function canRequestRefund() external view override returns (bool) { return block.timestamp < refundPeriod + tge && block.timestamp >= tge; } function hasRequestedRefund(address _account) external view override returns (bool) { return _refundees.contains(_account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract AutomationBase { error OnlySimulatedBackend(); /** * @notice method that allows it to be simulated via eth_call by checking that * the sender is the zero address. */ function preventExecution() internal view { if (tx.origin != address(0)) { revert OnlySimulatedBackend(); } } /** * @notice modifier that allows it to be simulated via eth_call by checking * that the sender is the zero address. */ modifier cannotExecute() { preventExecution(); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./AutomationBase.sol"; import "./interfaces/AutomationCompatibleInterface.sol"; abstract contract AutomationCompatible is AutomationBase, AutomationCompatibleInterface {}
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface AutomationCompatibleInterface { /** * @notice method that is simulated by the keepers to see if any work actually * needs to be performed. This method does does not actually need to be * executable, and since it is only ever simulated it can consume lots of gas. * @dev To ensure that it is never called, you may want to add the * cannotExecute modifier from KeeperBase to your implementation of this * method. * @param checkData specified in the upkeep registration so it is always the * same for a registered upkeep. This can easily be broken down into specific * arguments using `abi.decode`, so multiple upkeeps can be registered on the * same contract and easily differentiated by the contract. * @return upkeepNeeded boolean to indicate whether the keeper should call * performUpkeep or not. * @return performData bytes that the keeper should call performUpkeep with, if * upkeep is needed. If you would like to encode data to decode later, try * `abi.encode`. */ function checkUpkeep(bytes calldata checkData) external returns (bool upkeepNeeded, bytes memory performData); /** * @notice method that is actually executed by the keepers, via the registry. * The data returned by the checkUpkeep simulation will be passed into * this method to actually be executed. * @dev The input to this method should not be trusted, and the caller of the * method should not even be restricted to any single registry. Anyone should * be able call it, and the input should be validated, there is no guarantee * that the data passed in is the performData returned from checkUpkeep. This * could happen due to malicious keepers, racing keepers, or simply a state * change while the performUpkeep transaction is waiting for confirmation. * Always validate the data passed in. * @param performData is the data which was passed back from the checkData * simulation. If it is encoded, it can easily be decoded into other types by * calling `abi.decode`. This data should not be trusted, and should be * validated against the contract's current state. */ function performUpkeep(bytes calldata performData) external; }
// SPDX-License-Identifier: MIT /** * @notice This is a deprecated interface. Please use AutomationCompatible directly. */ pragma solidity ^0.8.0; import {AutomationCompatible as KeeperCompatible} from "./AutomationCompatible.sol"; import {AutomationBase as KeeperBase} from "./AutomationBase.sol"; import {AutomationCompatibleInterface as KeeperCompatibleInterface} from "./interfaces/AutomationCompatibleInterface.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../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 => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ 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 override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @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 override 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 override 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 override 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 `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @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 Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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 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; 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 require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // 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 v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // 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^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return 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 { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(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) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.16; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /** * @title Releaser */ contract CustomReleaser is Ownable { using SafeERC20 for IERC20; struct VestingInstance { uint256 unlockTime; uint256 percent; } uint16 public constant PERCENTAGE_FACTOR = 10000; // 100%. So to imply 22.5% you should use 2250. IERC20 private immutable _token; address private immutable _beneficiary; uint256 private _erc20Released; VestingInstance[] public vestingInstances; event ERC20Released(address _token, uint256 _amount); /** * @dev Set the beneficiary, start timestamp and vesting duration of the vesting wallet. */ constructor(address beneficiaryAddress, address erc20Token) { require(erc20Token != address(0), "Releaser: token cannot be the zero address"); require(beneficiaryAddress != address(0), "Releaser: beneficiary is zero address"); _token = IERC20(erc20Token); _beneficiary = beneficiaryAddress; } function addVestingInstances( uint256[] memory unlockTimes, uint256[] memory percents ) external onlyOwner { require( unlockTimes.length == percents.length, "Releaser: unlockTimes and amounts length mismatch" ); for (uint256 i = 0; i < unlockTimes.length; i++) { vestingInstances.push(VestingInstance(unlockTimes[i], percents[i])); } } /** * @dev Release the tokens that have already vested. * * Emits a {ERC20Released} event. */ function release() external virtual { uint256 _releasable = vestedAmount(block.timestamp) - released(); _erc20Released += _releasable; emit ERC20Released(ERC20token(), _releasable); _token.safeTransfer(beneficiary(), _releasable); } /** * @dev Withdraw the tokens that have already vested. * Only in emergency or refund period. * @param _to Address to withdraw tokens to. This will be the owner of main Vesting contract. * @param _amount Amount of tokens to withdraw. */ function emergencyWithdraw(address _to, uint256 _amount) external onlyOwner { _token.safeTransfer(_to, _amount); } /** * @dev Calculates the amount of tokens that has already vested. */ function vestedAmount(uint256 timestamp) public view virtual returns (uint256) { uint256 totalVestedAmount = 0; uint256 totalReleasableAmount = _token.balanceOf(address(this)) + released(); for (uint256 i = 0; i < vestingInstances.length; i++) { if (vestingInstances[i].unlockTime <= timestamp) { totalVestedAmount += (vestingInstances[i].percent * totalReleasableAmount) / PERCENTAGE_FACTOR; } } return totalVestedAmount; } /** * @dev Getter for the token address. */ function ERC20token() public view virtual returns (address) { return address(_token); } /** * @dev Getter for the beneficiary address. */ function beneficiary() public view virtual returns (address) { return _beneficiary; } /** * @dev Amount of token already released */ function released() public view virtual returns (uint256) { return _erc20Released; } function releasable() public view virtual returns (uint256) { return vestedAmount(block.timestamp) - released(); } }
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.16; interface ILegacyVesting { event Claimed(address account, uint256 amount); event Refunded(address account, uint256 amount); event RefundRequested(address account); event SharesAdded(address account, uint256 amount); event SharesUpdated(address account, uint256 newShares); /** * @dev Transfers currently claimable tokens to the sender * emits {Claimed} event. */ function claim() external payable; /** * @dev Returns `true` if users can request a refund */ function canRequestRefund() external view returns (bool); /** * @dev checks if `_acount` has requested a refund */ function hasRequestedRefund(address _account) external view returns (bool); /** * @dev Gets and stores a refund request for the sender * emits {RefundRequested} event. */ function getRefund() external; /** * @notice Sets `_amount` shares to `_account` independent of their previous shares. * @dev Even if `_account` has shares, it will be set to `_amount`. * emits {SharesUpdated} event. * @param _account The account to set shares to * @param _amount The amount of shares to set */ function setShares(address _account, uint256 _amount) external; /** * @notice Adds `_amount` shares to `_account`. * @dev If `_account` has no shares, it will be added to the list of shareholders. * emits {SharesAdded} event. * @param _account The account to add shares to * @param _amount The amount of shares to add */ function addShares(address _account, uint256 _amount) external; /** * @notice Removes `_amount` shares from `_account`. * @dev If `_account` has no shares, it will be removed from the list of shareholders. * emits {SharesUpdated} event. * @param _account The account to remove shares from */ function removeShares(address _account) external; /** * @dev Returns amount of tokens that can be claimed by `_account` */ function claimableOf(address _account) external view returns (uint256); /** * @dev Returns total amount of tokens that can be claimed by `_account` */ function totalClaimableOf(address _account) external view returns (uint256); /** * @dev Returns amount of tokens that has been claimed by `_account` */ function claimedOf(address _account) external view returns (uint256); }
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.16; import "contracts/vesting/ILegacyVesting.sol"; interface IVesting is ILegacyVesting { /** * @dev Transfers currently claimable tokens to the `_receiver` * emits {Claimed} event. */ function claimTo(address _receiver) external payable; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_refundToken","type":"address"},{"internalType":"address","name":"_refundReserve","type":"address"},{"internalType":"address","name":"_feeReserve","type":"address"},{"internalType":"uint256","name":"_tge","type":"uint256"},{"internalType":"uint256","name":"_refundPeriod","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RefundRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Refunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SharesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"newShares","type":"uint256"}],"name":"SharesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"AIRDROPPER","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":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"unlockTimes","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"addVestingInstances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_shares_","type":"uint256[]"}],"name":"batchAddShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"batchRemoveShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_shares_","type":"uint256[]"}],"name":"batchSetShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canRequestRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"checkUpkeep","outputs":[{"internalType":"bool","name":"upkeepNeeded","type":"bool"},{"internalType":"bytes","name":"performData","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claimableOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"claimedOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_fromReleaser","type":"bool"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReserve","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAutoAirdropNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"getAutoAirdrops","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRefundeeNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"getRefundees","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReleaser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_account","type":"address"}],"name":"hasRequestedRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"performUpkeep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refundPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundReserve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundToken","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"refundUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeAutoAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oldWallet","type":"address"},{"internalType":"address","name":"_newWallet","type":"address"}],"name":"replaceWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestAutoAirdrop","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":"uint256","name":"_fee","type":"uint256"}],"name":"setAirdropFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setClaimFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeReserve","type":"address"}],"name":"setFeeReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_refundPeriod","type":"uint256"}],"name":"setRefundPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_refundReserve","type":"address"}],"name":"setRefundReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"shares_","type":"uint256"}],"name":"setShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"totalClaimableOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"iteration","type":"uint256"}],"name":"updateIterationNumber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_releaser","type":"address"}],"name":"updateReleaser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tge","type":"uint256"}],"name":"updateTimes","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526012805460ff1916905560326014553480156200002057600080fd5b5060405162004df638038062004df6833981016040819052620000439162000382565b6000805460ff1916905560016002556001600160a01b038616620000ae5760405162461bcd60e51b815260206004820152601960248201527f546f6b656e20616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b6001600160a01b038416620001185760405162461bcd60e51b815260206004820152602960248201527f526566756e6420726573657276652063616e6e6f7420626520746865207a65726044820152686f206164647265737360b81b6064820152608401620000a5565b6001600160a01b0383166200017f5760405162461bcd60e51b815260206004820152602660248201527f46656520726573657276652063616e6e6f7420626520746865207a65726f206160448201526564647265737360d01b6064820152608401620000a5565b30866040516200018f9062000357565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015620001c3573d6000803e3d6000fd5b50600580546001600160a01b03199081166001600160a01b039384161790915587821660805286821660a0819052600e80548316888516179055600d8054909216928616929092179055600383905560048281556040805163313ce56760e01b8152905163313ce567928281019260209291908290030181865afa15801562000250573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002769190620003f1565b6200028390600a6200041d565b60ff1660115562000296600033620002ce565b620002c27f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff533620002ce565b50505050505062000455565b60008281526001602090815260408083206001600160a01b038516845290915290205460ff16620003535760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45b5050565b610ed78062003f1f83390190565b80516001600160a01b03811681146200037d57600080fd5b919050565b60008060008060008060c087890312156200039c57600080fd5b620003a78762000365565b9550620003b76020880162000365565b9450620003c76040880162000365565b9350620003d76060880162000365565b92506080870151915060a087015190509295509295509295565b6000602082840312156200040457600080fd5b815160ff811681146200041657600080fd5b9392505050565b600060ff821660ff84168160ff04811182151516156200044d57634e487b7160e01b600052601160045260246000fd5b029392505050565b60805160a051613a6c620004b36000396000818161072a01528181611f290152612b5701526000818161046101528181610e8901528181610f0b01528181611dc3015281816124b3015281816126550152612b1c0152613a6c6000f3fe6080604052600436106103815760003560e01c8063729ad39e116101d1578063a262f5f811610102578063c69b7e69116100a0578063d547741f1161006f578063d547741f14610a64578063d6d5e10114610a84578063e3e1fb0f14610aa4578063e50b2bc214610ac457600080fd5b8063c69b7e69146109e4578063cc107a1e14610a04578063ce7c2ac214610a19578063d5002f2e14610a4f57600080fd5b8063b2d5ae44116100dc578063b2d5ae4414610959578063b6168acf1461096e578063baa3f7ee1461098e578063bb5b3edc146109c457600080fd5b8063a262f5f81461091a578063a6a3b5b41461092d578063a7497fa51461094357600080fd5b80638e7e54151161016f578063986244551161014957806398624455146108b957806399d32fc4146108cf5780639ce40383146108e5578063a217fddf1461090557600080fd5b80638e7e54151461086457806391d1485414610879578063922555b41461089957600080fd5b8063851c17a7116101ab578063851c17a7146107e65780638903ab9d146108045780638bccbf62146108245780638dba908c1461084457600080fd5b8063729ad39e14610791578063789ff0e1146107b15780638456cb59146107d157600080fd5b8063368a5e34116102b65780634a5dc02811610254578063596298b511610223578063596298b5146106e05780635c975abb146107005780635cb732be146107185780636e04ff0d1461074c57600080fd5b80634a5dc0281461066b5780634e71d92d1461068b5780635084be371461069357806351d8804f146106b357600080fd5b80633f4ba83a116102905780633f4ba83a146105f65780634585e33b1461060b5780634792ad351461062b5780634a426ea41461064b57600080fd5b8063368a5e341461058d5780633cc02171146105c15780633eef2ec1146105d657600080fd5b8063248a9ca3116103235780632f2ff15d116102fd5780632f2ff15d1461051857806331f94a281461053857806333cd801a1461055857806336568abe1461056d57600080fd5b8063248a9ca31461049957806329a06ff5146104d85780632e75ab50146104f857600080fd5b80630cde3e0b1161035f5780630cde3e0b146103fd5780630db194571461041d5780630e81073c1461043257806310fe9ae81461045257600080fd5b806301ffc9a7146103865780630a21b1ac146103bb5780630ac26fa0146103dd575b600080fd5b34801561039257600080fd5b506103a66103a136600461324f565b610ae4565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d6366004613279565b610b1b565b005b3480156103e957600080fd5b506103a66103f83660046132ae565b610b2c565b34801561040957600080fd5b506103db61041836600461339f565b610b39565b34801561042957600080fd5b506103a6610bad565b34801561043e57600080fd5b506103db61044d366004613403565b610bd4565b34801561045e57600080fd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b0390911681526020016103b2565b3480156104a557600080fd5b506104ca6104b4366004613279565b6000908152600160208190526040909120015490565b6040519081526020016103b2565b3480156104e457600080fd5b506103db6104f3366004613279565b610cdb565b34801561050457600080fd5b506103db610513366004613279565b610cec565b34801561052457600080fd5b506103db61053336600461342d565b610cfd565b34801561054457600080fd5b506103db6105533660046132ae565b610d28565b34801561056457600080fd5b506104ca610dc7565b34801561057957600080fd5b506103db61058836600461342d565b610dd3565b34801561059957600080fd5b506104ca7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff581565b3480156105cd57600080fd5b506104ca610e51565b3480156105e257600080fd5b506104ca6105f13660046132ae565b610e5d565b34801561060257600080fd5b506103db610fa5565b34801561061757600080fd5b506103db610626366004613459565b610fbb565b34801561063757600080fd5b506103db61064636600461352d565b610fce565b34801561065757600080fd5b506103db61066636600461352d565b611079565b34801561067757600080fd5b506103db610686366004613279565b611124565b6103db611135565b34801561069f57600080fd5b506103db6106ae366004613279565b61131e565b3480156106bf57600080fd5b506106d36106ce366004613564565b611335565b6040516103b29190613586565b3480156106ec57600080fd5b506103db6106fb3660046135d3565b61146b565b34801561070c57600080fd5b5060005460ff166103a6565b34801561072457600080fd5b506104817f000000000000000000000000000000000000000000000000000000000000000081565b34801561075857600080fd5b50610783610767366004613459565b505060125460408051602081019091526000815260ff90911691565b6040516103b2929190613658565b34801561079d57600080fd5b506103db6107ac3660046135d3565b6114ab565b3480156107bd57600080fd5b50600d54610481906001600160a01b031681565b3480156107dd57600080fd5b506103db611617565b3480156107f257600080fd5b506005546001600160a01b0316610481565b34801561081057600080fd5b506104ca61081f3660046132ae565b61162a565b34801561083057600080fd5b506103db61083f366004613403565b611635565b34801561085057600080fd5b506106d361085f366004613564565b611717565b34801561087057600080fd5b506103db611843565b34801561088557600080fd5b506103a661089436600461342d565b6118f0565b3480156108a557600080fd5b506103db6108b43660046132ae565b61191b565b3480156108c557600080fd5b506104ca60115481565b3480156108db57600080fd5b506104ca600c5481565b3480156108f157600080fd5b506103db6109003660046132ae565b61192f565b34801561091157600080fd5b506104ca600081565b6103db6109283660046132ae565b61196c565b34801561093957600080fd5b506104ca60045481565b34801561094f57600080fd5b506104ca60035481565b34801561096557600080fd5b506103db611b53565b34801561097a57600080fd5b506103db6109893660046132ae565b611cd7565b34801561099a57600080fd5b506104ca6109a93660046132ae565b6001600160a01b031660009081526009602052604090205490565b3480156109d057600080fd5b506103db6109df366004613681565b611d73565b3480156109f057600080fd5b506103db6109ff3660046135d3565b611dea565b348015610a1057600080fd5b506103db611e66565b348015610a2557600080fd5b506104ca610a343660046132ae565b6001600160a01b031660009081526008602052604090205490565b348015610a5b57600080fd5b506006546104ca565b348015610a7057600080fd5b506103db610a7f36600461342d565b611f57565b348015610a9057600080fd5b506103db610a9f3660046132ae565b611f7d565b348015610ab057600080fd5b50600e54610481906001600160a01b031681565b348015610ad057600080fd5b506103db610adf3660046136b1565b612016565b60006001600160e01b03198216637965db0b60e01b1480610b1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000610b26816121f7565b50600455565b6000610b15600a83612201565b6000610b44816121f7565b600554604051630cde3e0b60e01b81526001600160a01b0390911690630cde3e0b90610b769086908690600401613716565b600060405180830381600087803b158015610b9057600080fd5b505af1158015610ba4573d6000803e3d6000fd5b50505050505050565b6000600354600454610bbf919061375a565b42108015610bcf57506003544210155b905090565b6000610bdf816121f7565b6001600160a01b038316610c0e5760405162461bcd60e51b8152600401610c059061376d565b60405180910390fd5b60008211610c565760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610c05565b6001600160a01b03831660009081526008602052604081208054849290610c7e90849061375a565b925050819055508160066000828254610c97919061375a565b90915550506040517fcede7a9903c07d938c75644b6e38f7950ae1d362fca0fc61c99f2496ec9e992190610cce90859085906137b1565b60405180910390a1505050565b6000610ce6816121f7565b50601155565b6000610cf7816121f7565b50600c55565b60008281526001602081905260409091200154610d19816121f7565b610d238383612223565b505050565b6000610d33816121f7565b6001600160a01b038216610da45760405162461bcd60e51b815260206004820152603260248201527f56657374696e673a20726566756e6420726573657276652063616e6e6f7420626044820152716520746865207a65726f206164647265737360701b6064820152608401610c05565b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610bcf600a61228e565b6001600160a01b0381163314610e435760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c05565b610e4d8282612298565b5050565b6000610bcf600f61228e565b6007546005546040516370a0823160e01b81526001600160a01b039182166004820152600092839290917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa158015610ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef691906137ca565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610f5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7e91906137ca565b610f88919061375a565b610f92919061375a565b9050610f9e83826122ff565b9392505050565b6000610fb0816121f7565b610fb8612332565b50565b60125460ff1615610e4d57610e4d611843565b805182511461101f5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610c05565b60005b8251811015610d2357611067838281518110611040576110406137e3565b602002602001015183838151811061105a5761105a6137e3565b6020026020010151611635565b80611071816137f9565b915050611022565b80518251146110ca5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610c05565b60005b8251811015610d23576111128382815181106110eb576110eb6137e3565b6020026020010151838381518110611105576111056137e3565b6020026020010151610bd4565b8061111c816137f9565b9150506110cd565b600061112f816121f7565b50601455565b61113d612384565b6111456123db565b6003544210156111675760405162461bcd60e51b8152600401610c0590613812565b600c543410156111b95760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610c05565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561120957600080fd5b505af115801561121d573d6000803e3d6000fd5b50505050600061122c33612421565b90506112383333612563565b34156112d857600d546040516000916001600160a01b03169034908381818185875af1925050503d806000811461128b576040519150601f19603f3d011682016040523d82523d6000602084013e611290565b606091505b50509050806112d65760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610c05565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a33826040516113099291906137b1565b60405180910390a15061131c6001600255565b565b6000611329816121f7565b8115610e4d5750600355565b60606000611343600a61228e565b90508084106113ac5760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2073746172742069732067726561746572207468616e207260448201526e0cacceadcc8cacae640d8cadccee8d608b1b6064820152608401610c05565b808311156113b8578092505b60006113c48585613853565b67ffffffffffffffff8111156113dc576113dc6132c9565b604051908082528060200260200182016040528015611405578160200160208202803683370190505b509050845b848110156114625761141d600a826126ad565b826114288884613853565b81518110611438576114386137e3565b6001600160a01b03909216602092830291909101909101528061145a816137f9565b91505061140a565b50949350505050565b60005b8151811015610e4d5761149982828151811061148c5761148c6137e3565b602002602001015161191b565b806114a3816137f9565b91505061146e565b7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff56114d5816121f7565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561152557600080fd5b505af1158015611539573d6000803e3d6000fd5b5050505060005b8251811015610d2357600061156d848381518110611560576115606137e3565b6020026020010151612421565b90508015611604576115b184838151811061158a5761158a6137e3565b60200260200101518584815181106115a4576115a46137e3565b6020026020010151612563565b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8483815181106115e4576115e46137e3565b6020026020010151826040516115fb9291906137b1565b60405180910390a15b508061160f816137f9565b915050611540565b6000611622816121f7565b610fb86126b9565b6000610b1582612421565b6000611640816121f7565b6001600160a01b0383166116665760405162461bcd60e51b8152600401610c059061376d565b600082116116ae5760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610c05565b6001600160a01b038316600090815260086020526040902080549083905560065481906116dc90859061375a565b6116e69190613853565b600655604051600080516020613a178339815191529061170990869086906137b1565b60405180910390a150505050565b60606000611725600f61228e565b905080841061178d5760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a2073746172742069732067726561746572207468616e206160448201526d0d2e4c8e4dee0e640d8cadccee8d60931b6064820152608401610c05565b80831115611799578092505b60006117a58585613853565b67ffffffffffffffff8111156117bd576117bd6132c9565b6040519080825280602002602001820160405280156117e6578160200160208202803683370190505b509050845b84811015611462576117fe600f826126ad565b826118098884613853565b81518110611819576118196137e3565b6001600160a01b03909216602092830291909101909101528061183b816137f9565b9150506117eb565b6000601354611852600f61228e565b61185c9190613853565b905060006013549050600060145483111561189a576012805460ff1916600117905560145460135461188e919061375a565b601355506014546118ac565b506012805460ff191690556000601355815b815b6118b8828461375a565b8110156118ea5760006118cc600f836126ad565b90506118d7816126f6565b50806118e2816137f9565b9150506118ae565b50505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000611926816121f7565b610e4d82612814565b600061193a816121f7565b611945600f83612201565b6119615760405162461bcd60e51b8152600401610c0590613866565b610d23600f83612891565b611974612384565b61197c6123db565b60035442101561199e5760405162461bcd60e51b8152600401610c0590613812565b600c543410156119f05760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610c05565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a4057600080fd5b505af1158015611a54573d6000803e3d6000fd5b505050506000611a6333612421565b9050611a6f3383612563565b3415611b0f57600d546040516000916001600160a01b03169034908381818185875af1925050503d8060008114611ac2576040519150601f19603f3d011682016040523d82523d6000602084013e611ac7565b606091505b5050905080611b0d5760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610c05565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a3382604051611b409291906137b1565b60405180910390a150610fb86001600255565b611b5b612384565b611b636123db565b600354600454611b73919061375a565b42108015611b8357506003544210155b611bc45760405162461bcd60e51b81526020600482015260126024820152712932b33ab7321034b9903737ba1037b832b760711b6044820152606401610c05565b3360009081526009602052604090205415611c2d5760405162461bcd60e51b8152602060048201526024808201527f56657374696e673a206163636f756e742068617320616c726561647920636c616044820152631a5b595960e21b6064820152608401610c05565b611c38600a33612201565b15611c985760405162461bcd60e51b815260206004820152602a60248201527f56657374696e673a206163636f756e742068617320616c7265616479206265656044820152691b881c99599d5b99195960b21b6064820152608401610c05565b33600090815260086020526040902054611cc45760405162461bcd60e51b8152600401610c05906138b0565b611ccd336128a6565b61131c6001600255565b6000611ce2816121f7565b6001600160a01b038216611d505760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2066656520726573657276652063616e6e6f74206265207460448201526e6865207a65726f206164647265737360881b6064820152608401610c05565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611d7e816121f7565b8115611db6576005546040516395ccea6760e01b81526001600160a01b03909116906395ccea6790610b7690339087906004016137b1565b610d236001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163385612bb2565b6000611df5816121f7565b60005b8251811015610d2357611e2e838281518110611e1657611e166137e3565b6020026020010151600a61220190919063ffffffff16565b611e5457611e54838281518110611e4757611e476137e3565b60200260200101516128a6565b80611e5e816137f9565b915050611df8565b611e6e612384565b611e79600f33612201565b15611edd5760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a206163636f756e742068617320616c72656164792072657160448201526d07565737465642061697264726f760941b6064820152608401610c05565b33600090815260086020526040902054611f095760405162461bcd60e51b8152600401610c05906138b0565b611f14600f33612c08565b50600d54601154611ccd916001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169233929190911690612c1d565b60008281526001602081905260409091200154611f73816121f7565b610d238383612298565b6000611f88816121f7565b6001600160a01b038216611ff35760405162461bcd60e51b815260206004820152602c60248201527f56657374696e673a2072656c65617365722063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152608401610c05565b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000612021816121f7565b6001600160a01b0383166120875760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206f6c642077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610c05565b6001600160a01b0382166120ed5760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206e65772077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610c05565b6001600160a01b03831660009081526008602052604090205461215c5760405162461bcd60e51b815260206004820152602160248201527f56657374696e673a206f6c642077616c6c657420686173206e6f2073686172656044820152607360f81b6064820152608401610c05565b6001600160a01b038084166000818152600860209081526040808320805490849055948716808452818420869055938352600990915280822080549083905592825280822083905551600080516020613a17833981519152916121c1918891906137b1565b60405180910390a1600080516020613a1783398151915284836040516121e89291906137b1565b60405180910390a15050505050565b610fb88133612c55565b6001600160a01b03811660009081526001830160205260408120541515610f9e565b61222d82826118f0565b610e4d5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000610b15825490565b6122a282826118f0565b15610e4d5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6006546001600160a01b03831660009081526008602052604081205490919061232890846138e7565b610f9e9190613906565b61233a612cae565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60028054036123d55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c05565b60028055565b60005460ff161561131c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c05565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663fbccedae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612477573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249b91906137ca565b6007546040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015612502573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252691906137ca565b612530919061375a565b61253a919061375a565b6001600160a01b038416600090815260096020526040902054909150610f9e9084908390612cf7565b6001600160a01b0382166000908152600860205260409020546125985760405162461bcd60e51b8152600401610c05906138b0565b60006125a383612421565b9050806000036126015760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a206163636f756e74206973206e6f7420647565207061796d604482015262195b9d60ea1b6064820152608401610c05565b6001600160a01b0383166000908152600960205260408120805483929061262990849061375a565b925050819055508060076000828254612642919061375a565b9091555061267c90506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383612bb2565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610cce9291906137b1565b6000610f9e8383612d3d565b6126c16123db565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123673390565b612701600f82612201565b61271d5760405162461bcd60e51b8152600401610c0590613866565b6001600160a01b0381166000908152600860205260409020546127525760405162461bcd60e51b8152600401610c05906138b0565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127a257600080fd5b505af11580156127b6573d6000803e3d6000fd5b5050505060006127c582612421565b90508015610e4d576127d78283612563565b7f7bd6d4be1decdc27a9ed9c7ccdf5bb7cc38e31b3647b958c6b37162a2296c0fa82826040516128089291906137b1565b60405180910390a15050565b6001600160a01b03811661283a5760405162461bcd60e51b8152600401610c059061376d565b6001600160a01b0381166000908152600860205260408120805490829055600680549192839261286b908490613853565b9091555050604051600080516020613a17833981519152906128089084906000906137b1565b6000610f9e836001600160a01b038416612d67565b600560009054906101000a90046001600160a01b03166001600160a01b031663961325216040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291d91906137ca565b1561295c5760405162461bcd60e51b815260206004820152600f60248201526e10db1a5999881a185cc8195b991959608a1b6044820152606401610c05565b600560009054906101000a90046001600160a01b03166001600160a01b031663fbccedae6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d391906137ca565b15612a305760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a2072656c6561736572206861732072656c65617361626c6560448201526620746f6b656e7360c81b6064820152608401610c05565b6001600160a01b03811660009081526009602052604090205415612a515750565b612a5c600a82612c08565b506000612a6882612421565b90506000612a7583610e5d565b6001600160a01b038416600090815260086020526040902054909150612a9a84612814565b600554600e546001600160a01b03918216916395ccea679116612abd8686613853565b6040518363ffffffff1660e01b8152600401612ada9291906137b1565b600060405180830381600087803b158015612af457600080fd5b505af1158015612b08573d6000803e3d6000fd5b5050600e54612b4692506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692501685612bb2565b600e54612b81906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691168684612c1d565b7fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d065184836040516117099291906137b1565b610d238363a9059cbb60e01b8484604051602401612bd19291906137b1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612e5a565b6000610f9e836001600160a01b038416612f2f565b6040516001600160a01b03808516602483015283166044820152606481018290526118ea9085906323b872dd60e01b90608401612bd1565b612c5f82826118f0565b610e4d57612c6c81612f7e565b612c77836020612f90565b604051602001612c88929190613928565b60408051601f198184030181529082905262461bcd60e51b8252610c059160040161399d565b60005460ff1661131c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c05565b6006546001600160a01b03841660009081526008602052604081205490918391612d2190866138e7565b612d2b9190613906565b612d359190613853565b949350505050565b6000826000018281548110612d5457612d546137e3565b9060005260206000200154905092915050565b60008181526001830160205260408120548015612e50576000612d8b600183613853565b8554909150600090612d9f90600190613853565b9050818114612e04576000866000018281548110612dbf57612dbf6137e3565b9060005260206000200154905080876000018481548110612de257612de26137e3565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612e1557612e156139b0565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b15565b6000915050610b15565b6000612eaf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661312c9092919063ffffffff16565b9050805160001480612ed0575080806020019051810190612ed091906139c6565b610d235760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c05565b6000818152600183016020526040812054612f7657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b15565b506000610b15565b6060610b156001600160a01b03831660145b60606000612f9f8360026138e7565b612faa90600261375a565b67ffffffffffffffff811115612fc257612fc26132c9565b6040519080825280601f01601f191660200182016040528015612fec576020820181803683370190505b509050600360fc1b81600081518110613007576130076137e3565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613036576130366137e3565b60200101906001600160f81b031916908160001a905350600061305a8460026138e7565b61306590600161375a565b90505b60018111156130dd576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613099576130996137e3565b1a60f81b8282815181106130af576130af6137e3565b60200101906001600160f81b031916908160001a90535060049490941c936130d6816139e3565b9050613068565b508315610f9e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c05565b6060612d35848460008585600080866001600160a01b0316858760405161315391906139fa565b60006040518083038185875af1925050503d8060008114613190576040519150601f19603f3d011682016040523d82523d6000602084013e613195565b606091505b50915091506131a6878383876131b1565b979650505050505050565b60608315613220578251600003613219576001600160a01b0385163b6132195760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c05565b5081612d35565b612d3583838151156132355781518083602001fd5b8060405162461bcd60e51b8152600401610c05919061399d565b60006020828403121561326157600080fd5b81356001600160e01b031981168114610f9e57600080fd5b60006020828403121561328b57600080fd5b5035919050565b80356001600160a01b03811681146132a957600080fd5b919050565b6000602082840312156132c057600080fd5b610f9e82613292565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613308576133086132c9565b604052919050565b600067ffffffffffffffff82111561332a5761332a6132c9565b5060051b60200190565b600082601f83011261334557600080fd5b8135602061335a61335583613310565b6132df565b82815260059290921b8401810191818101908684111561337957600080fd5b8286015b84811015613394578035835291830191830161337d565b509695505050505050565b600080604083850312156133b257600080fd5b823567ffffffffffffffff808211156133ca57600080fd5b6133d686838701613334565b935060208501359150808211156133ec57600080fd5b506133f985828601613334565b9150509250929050565b6000806040838503121561341657600080fd5b61341f83613292565b946020939093013593505050565b6000806040838503121561344057600080fd5b8235915061345060208401613292565b90509250929050565b6000806020838503121561346c57600080fd5b823567ffffffffffffffff8082111561348457600080fd5b818501915085601f83011261349857600080fd5b8135818111156134a757600080fd5b8660208285010111156134b957600080fd5b60209290920196919550909350505050565b600082601f8301126134dc57600080fd5b813560206134ec61335583613310565b82815260059290921b8401810191818101908684111561350b57600080fd5b8286015b848110156133945761352081613292565b835291830191830161350f565b6000806040838503121561354057600080fd5b823567ffffffffffffffff8082111561355857600080fd5b6133d6868387016134cb565b6000806040838503121561357757600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156135c75783516001600160a01b0316835292840192918401916001016135a2565b50909695505050505050565b6000602082840312156135e557600080fd5b813567ffffffffffffffff8111156135fc57600080fd5b612d35848285016134cb565b60005b8381101561362357818101518382015260200161360b565b50506000910152565b60008151808452613644816020860160208601613608565b601f01601f19169290920160200192915050565b8215158152604060208201526000612d35604083018461362c565b8015158114610fb857600080fd5b6000806040838503121561369457600080fd5b8235915060208301356136a681613673565b809150509250929050565b600080604083850312156136c457600080fd5b6136cd83613292565b915061345060208401613292565b600081518084526020808501945080840160005b8381101561370b578151875295820195908201906001016136ef565b509495945050505050565b60408152600061372960408301856136db565b828103602084015261373b81856136db565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b1557610b15613744565b60208082526024908201527f56657374696e673a206163636f756e7420697320746865207a65726f206164646040820152637265737360e01b606082015260800190565b6001600160a01b03929092168252602082015260400190565b6000602082840312156137dc57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006001820161380b5761380b613744565b5060010190565b60208082526021908201527f56657374696e673a2054474520686173206e6f742068617070656e65642079656040820152601d60fa1b606082015260800190565b81810381811115610b1557610b15613744565b6020808252602a908201527f56657374696e673a206163636f756e7420686173206e6f742072657175657374604082015269065642061697264726f760b41b606082015260800190565b6020808252601e908201527f56657374696e673a206163636f756e7420686173206e6f207368617265730000604082015260600190565b600081600019048311821515161561390157613901613744565b500290565b60008261392357634e487b7160e01b600052601260045260246000fd5b500490565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613960816017850160208801613608565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613991816028840160208801613608565b01602801949350505050565b602081526000610f9e602083018461362c565b634e487b7160e01b600052603160045260246000fd5b6000602082840312156139d857600080fd5b8151610f9e81613673565b6000816139f2576139f2613744565b506000190190565b60008251613a0c818460208701613608565b919091019291505056fee6382c9ed5c0c33bb05042f73cf6cbe9cb25639f9a711e094ee563bc9cb80e2ca2646970667358221220f39504020938803bb2fc39e5220ef9b7c7a8fbfaac6b7cb9cad48523896424b064736f6c6343000810003360c060405234801561001057600080fd5b50604051610ed7380380610ed783398101604081905261002f9161018d565b61003833610121565b6001600160a01b0381166100a65760405162461bcd60e51b815260206004820152602a60248201527f52656c65617365723a20746f6b656e2063616e6e6f7420626520746865207a65604482015269726f206164647265737360b01b60648201526084015b60405180910390fd5b6001600160a01b03821661010a5760405162461bcd60e51b815260206004820152602560248201527f52656c65617365723a2062656e6566696369617279206973207a65726f206164604482015264647265737360d81b606482015260840161009d565b6001600160a01b039081166080521660a0526101c0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811461018857600080fd5b919050565b600080604083850312156101a057600080fd5b6101a983610171565b91506101b760208401610171565b90509250929050565b60805160a051610ccf61020860003960008181610111015261056301526000818161019401528181610337015281816104f40152818161053901526105a00152610ccf6000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80638da5cb5b1161008c578063961325211161006657806396132521146101cb578063ee01e5e7146101d3578063f2fde38b146101ef578063fbccedae1461020257600080fd5b80638da5cb5b14610181578063920616f51461019257806395ccea67146101b857600080fd5b80630cde3e0b146100d45780631bfce853146100e957806338af3eed1461010f5780633dd5931014610149578063715018a61461017157806386d1a69f14610179575b600080fd5b6100e76100e2366004610a54565b61020a565b005b6100fc6100f7366004610ab8565b610315565b6040519081526020015b60405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610106565b61015c610157366004610ab8565b610457565b60408051928352602083019190915201610106565b6100e7610485565b6100e7610499565b6000546001600160a01b0316610131565b7f0000000000000000000000000000000000000000000000000000000000000000610131565b6100e76101c6366004610aed565b61058b565b6001546100fc565b6101dc61271081565b60405161ffff9091168152602001610106565b6100e76101fd366004610b17565b6105cb565b6100fc610641565b610212610664565b80518251146102825760405162461bcd60e51b815260206004820152603160248201527f52656c65617365723a20756e6c6f636b54696d657320616e6420616d6f756e746044820152700e640d8cadccee8d040dad2e6dac2e8c6d607b1b60648201526084015b60405180910390fd5b60005b825181101561031057600260405180604001604052808584815181106102ad576102ad610b39565b602002602001015181526020018484815181106102cc576102cc610b39565b60209081029190910181015190915282546001818101855560009485529382902083516002909202019081559101519101558061030881610b65565b915050610285565b505050565b6000808061032260015490565b6040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610386573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103aa9190610b7e565b6103b49190610b97565b905060005b60025481101561044e5784600282815481106103d7576103d7610b39565b9060005260206000209060020201600001541161043c5761271061ffff16826002838154811061040957610409610b39565b9060005260206000209060020201600101546104259190610bb0565b61042f9190610bcf565b6104399084610b97565b92505b8061044681610b65565b9150506103b9565b50909392505050565b6002818154811061046757600080fd5b60009182526020909120600290910201805460019091015490915082565b61048d610664565b61049760006106be565b565b60006104a460015490565b6104ad42610315565b6104b79190610bf1565b905080600160008282546104cb9190610b97565b909155507fc0e523490dd523c33b1878c9eb14ff46991e3f5b2cd33710918618f2a39cba1b90507f0000000000000000000000000000000000000000000000000000000000000000604080516001600160a01b039092168252602082018490520160405180910390a16105887f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000008361070e565b50565b610593610664565b6105c76001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016838361070e565b5050565b6105d3610664565b6001600160a01b0381166106385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610279565b610588816106be565b600061064c60015490565b61065542610315565b61065f9190610bf1565b905090565b6000546001600160a01b031633146104975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610279565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564908401526103109286929160009161079e91851690849061081e565b90508051600014806107bf5750808060200190518101906107bf9190610c04565b6103105760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610279565b606061082d8484600085610835565b949350505050565b6060824710156108965760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610279565b600080866001600160a01b031685876040516108b29190610c4a565b60006040518083038185875af1925050503d80600081146108ef576040519150601f19603f3d011682016040523d82523d6000602084013e6108f4565b606091505b509150915061090587838387610910565b979650505050505050565b6060831561097f578251600003610978576001600160a01b0385163b6109785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610279565b508161082d565b61082d83838151156109945781518083602001fd5b8060405162461bcd60e51b81526004016102799190610c66565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126109d557600080fd5b8135602067ffffffffffffffff808311156109f2576109f26109ae565b8260051b604051601f19603f83011681018181108482111715610a1757610a176109ae565b604052938452858101830193838101925087851115610a3557600080fd5b83870191505b8482101561090557813583529183019190830190610a3b565b60008060408385031215610a6757600080fd5b823567ffffffffffffffff80821115610a7f57600080fd5b610a8b868387016109c4565b93506020850135915080821115610aa157600080fd5b50610aae858286016109c4565b9150509250929050565b600060208284031215610aca57600080fd5b5035919050565b80356001600160a01b0381168114610ae857600080fd5b919050565b60008060408385031215610b0057600080fd5b610b0983610ad1565b946020939093013593505050565b600060208284031215610b2957600080fd5b610b3282610ad1565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610b7757610b77610b4f565b5060010190565b600060208284031215610b9057600080fd5b5051919050565b80820180821115610baa57610baa610b4f565b92915050565b6000816000190483118215151615610bca57610bca610b4f565b500290565b600082610bec57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610baa57610baa610b4f565b600060208284031215610c1657600080fd5b81518015158114610b3257600080fd5b60005b83811015610c41578181015183820152602001610c29565b50506000910152565b60008251610c5c818460208701610c26565b9190910192915050565b6020815260008251806020840152610c85816040850160208701610c26565b601f01601f1916919091016040019291505056fea2646970667358221220cb805f2d8c582edc525405595bf6a681f5140f2b05c652f19e26f207d79d71e664736f6c6343000810003300000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934000000000000000000000000eca95b8dbe5d466635dd8f298417f3127514093400000000000000000000000000000000000000000000000000000000666ac6a40000000000000000000000000000000000000000000000000000000000015180
Deployed Bytecode
0x6080604052600436106103815760003560e01c8063729ad39e116101d1578063a262f5f811610102578063c69b7e69116100a0578063d547741f1161006f578063d547741f14610a64578063d6d5e10114610a84578063e3e1fb0f14610aa4578063e50b2bc214610ac457600080fd5b8063c69b7e69146109e4578063cc107a1e14610a04578063ce7c2ac214610a19578063d5002f2e14610a4f57600080fd5b8063b2d5ae44116100dc578063b2d5ae4414610959578063b6168acf1461096e578063baa3f7ee1461098e578063bb5b3edc146109c457600080fd5b8063a262f5f81461091a578063a6a3b5b41461092d578063a7497fa51461094357600080fd5b80638e7e54151161016f578063986244551161014957806398624455146108b957806399d32fc4146108cf5780639ce40383146108e5578063a217fddf1461090557600080fd5b80638e7e54151461086457806391d1485414610879578063922555b41461089957600080fd5b8063851c17a7116101ab578063851c17a7146107e65780638903ab9d146108045780638bccbf62146108245780638dba908c1461084457600080fd5b8063729ad39e14610791578063789ff0e1146107b15780638456cb59146107d157600080fd5b8063368a5e34116102b65780634a5dc02811610254578063596298b511610223578063596298b5146106e05780635c975abb146107005780635cb732be146107185780636e04ff0d1461074c57600080fd5b80634a5dc0281461066b5780634e71d92d1461068b5780635084be371461069357806351d8804f146106b357600080fd5b80633f4ba83a116102905780633f4ba83a146105f65780634585e33b1461060b5780634792ad351461062b5780634a426ea41461064b57600080fd5b8063368a5e341461058d5780633cc02171146105c15780633eef2ec1146105d657600080fd5b8063248a9ca3116103235780632f2ff15d116102fd5780632f2ff15d1461051857806331f94a281461053857806333cd801a1461055857806336568abe1461056d57600080fd5b8063248a9ca31461049957806329a06ff5146104d85780632e75ab50146104f857600080fd5b80630cde3e0b1161035f5780630cde3e0b146103fd5780630db194571461041d5780630e81073c1461043257806310fe9ae81461045257600080fd5b806301ffc9a7146103865780630a21b1ac146103bb5780630ac26fa0146103dd575b600080fd5b34801561039257600080fd5b506103a66103a136600461324f565b610ae4565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103db6103d6366004613279565b610b1b565b005b3480156103e957600080fd5b506103a66103f83660046132ae565b610b2c565b34801561040957600080fd5b506103db61041836600461339f565b610b39565b34801561042957600080fd5b506103a6610bad565b34801561043e57600080fd5b506103db61044d366004613403565b610bd4565b34801561045e57600080fd5b507f00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c5b6040516001600160a01b0390911681526020016103b2565b3480156104a557600080fd5b506104ca6104b4366004613279565b6000908152600160208190526040909120015490565b6040519081526020016103b2565b3480156104e457600080fd5b506103db6104f3366004613279565b610cdb565b34801561050457600080fd5b506103db610513366004613279565b610cec565b34801561052457600080fd5b506103db61053336600461342d565b610cfd565b34801561054457600080fd5b506103db6105533660046132ae565b610d28565b34801561056457600080fd5b506104ca610dc7565b34801561057957600080fd5b506103db61058836600461342d565b610dd3565b34801561059957600080fd5b506104ca7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff581565b3480156105cd57600080fd5b506104ca610e51565b3480156105e257600080fd5b506104ca6105f13660046132ae565b610e5d565b34801561060257600080fd5b506103db610fa5565b34801561061757600080fd5b506103db610626366004613459565b610fbb565b34801561063757600080fd5b506103db61064636600461352d565b610fce565b34801561065757600080fd5b506103db61066636600461352d565b611079565b34801561067757600080fd5b506103db610686366004613279565b611124565b6103db611135565b34801561069f57600080fd5b506103db6106ae366004613279565b61131e565b3480156106bf57600080fd5b506106d36106ce366004613564565b611335565b6040516103b29190613586565b3480156106ec57600080fd5b506103db6106fb3660046135d3565b61146b565b34801561070c57600080fd5b5060005460ff166103a6565b34801561072457600080fd5b506104817f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781565b34801561075857600080fd5b50610783610767366004613459565b505060125460408051602081019091526000815260ff90911691565b6040516103b2929190613658565b34801561079d57600080fd5b506103db6107ac3660046135d3565b6114ab565b3480156107bd57600080fd5b50600d54610481906001600160a01b031681565b3480156107dd57600080fd5b506103db611617565b3480156107f257600080fd5b506005546001600160a01b0316610481565b34801561081057600080fd5b506104ca61081f3660046132ae565b61162a565b34801561083057600080fd5b506103db61083f366004613403565b611635565b34801561085057600080fd5b506106d361085f366004613564565b611717565b34801561087057600080fd5b506103db611843565b34801561088557600080fd5b506103a661089436600461342d565b6118f0565b3480156108a557600080fd5b506103db6108b43660046132ae565b61191b565b3480156108c557600080fd5b506104ca60115481565b3480156108db57600080fd5b506104ca600c5481565b3480156108f157600080fd5b506103db6109003660046132ae565b61192f565b34801561091157600080fd5b506104ca600081565b6103db6109283660046132ae565b61196c565b34801561093957600080fd5b506104ca60045481565b34801561094f57600080fd5b506104ca60035481565b34801561096557600080fd5b506103db611b53565b34801561097a57600080fd5b506103db6109893660046132ae565b611cd7565b34801561099a57600080fd5b506104ca6109a93660046132ae565b6001600160a01b031660009081526009602052604090205490565b3480156109d057600080fd5b506103db6109df366004613681565b611d73565b3480156109f057600080fd5b506103db6109ff3660046135d3565b611dea565b348015610a1057600080fd5b506103db611e66565b348015610a2557600080fd5b506104ca610a343660046132ae565b6001600160a01b031660009081526008602052604090205490565b348015610a5b57600080fd5b506006546104ca565b348015610a7057600080fd5b506103db610a7f36600461342d565b611f57565b348015610a9057600080fd5b506103db610a9f3660046132ae565b611f7d565b348015610ab057600080fd5b50600e54610481906001600160a01b031681565b348015610ad057600080fd5b506103db610adf3660046136b1565b612016565b60006001600160e01b03198216637965db0b60e01b1480610b1557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000610b26816121f7565b50600455565b6000610b15600a83612201565b6000610b44816121f7565b600554604051630cde3e0b60e01b81526001600160a01b0390911690630cde3e0b90610b769086908690600401613716565b600060405180830381600087803b158015610b9057600080fd5b505af1158015610ba4573d6000803e3d6000fd5b50505050505050565b6000600354600454610bbf919061375a565b42108015610bcf57506003544210155b905090565b6000610bdf816121f7565b6001600160a01b038316610c0e5760405162461bcd60e51b8152600401610c059061376d565b60405180910390fd5b60008211610c565760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610c05565b6001600160a01b03831660009081526008602052604081208054849290610c7e90849061375a565b925050819055508160066000828254610c97919061375a565b90915550506040517fcede7a9903c07d938c75644b6e38f7950ae1d362fca0fc61c99f2496ec9e992190610cce90859085906137b1565b60405180910390a1505050565b6000610ce6816121f7565b50601155565b6000610cf7816121f7565b50600c55565b60008281526001602081905260409091200154610d19816121f7565b610d238383612223565b505050565b6000610d33816121f7565b6001600160a01b038216610da45760405162461bcd60e51b815260206004820152603260248201527f56657374696e673a20726566756e6420726573657276652063616e6e6f7420626044820152716520746865207a65726f206164647265737360701b6064820152608401610c05565b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610bcf600a61228e565b6001600160a01b0381163314610e435760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c05565b610e4d8282612298565b5050565b6000610bcf600f61228e565b6007546005546040516370a0823160e01b81526001600160a01b039182166004820152600092839290917f00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c909116906370a0823190602401602060405180830381865afa158015610ed2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef691906137ca565b6040516370a0823160e01b81523060048201527f00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c6001600160a01b0316906370a0823190602401602060405180830381865afa158015610f5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7e91906137ca565b610f88919061375a565b610f92919061375a565b9050610f9e83826122ff565b9392505050565b6000610fb0816121f7565b610fb8612332565b50565b60125460ff1615610e4d57610e4d611843565b805182511461101f5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610c05565b60005b8251811015610d2357611067838281518110611040576110406137e3565b602002602001015183838151811061105a5761105a6137e3565b6020026020010151611635565b80611071816137f9565b915050611022565b80518251146110ca5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e673a20617272617973206c656e677468206d69736d61746368006044820152606401610c05565b60005b8251811015610d23576111128382815181106110eb576110eb6137e3565b6020026020010151838381518110611105576111056137e3565b6020026020010151610bd4565b8061111c816137f9565b9150506110cd565b600061112f816121f7565b50601455565b61113d612384565b6111456123db565b6003544210156111675760405162461bcd60e51b8152600401610c0590613812565b600c543410156111b95760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610c05565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561120957600080fd5b505af115801561121d573d6000803e3d6000fd5b50505050600061122c33612421565b90506112383333612563565b34156112d857600d546040516000916001600160a01b03169034908381818185875af1925050503d806000811461128b576040519150601f19603f3d011682016040523d82523d6000602084013e611290565b606091505b50509050806112d65760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610c05565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a33826040516113099291906137b1565b60405180910390a15061131c6001600255565b565b6000611329816121f7565b8115610e4d5750600355565b60606000611343600a61228e565b90508084106113ac5760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2073746172742069732067726561746572207468616e207260448201526e0cacceadcc8cacae640d8cadccee8d608b1b6064820152608401610c05565b808311156113b8578092505b60006113c48585613853565b67ffffffffffffffff8111156113dc576113dc6132c9565b604051908082528060200260200182016040528015611405578160200160208202803683370190505b509050845b848110156114625761141d600a826126ad565b826114288884613853565b81518110611438576114386137e3565b6001600160a01b03909216602092830291909101909101528061145a816137f9565b91505061140a565b50949350505050565b60005b8151811015610e4d5761149982828151811061148c5761148c6137e3565b602002602001015161191b565b806114a3816137f9565b91505061146e565b7f78f12a009c29082657d0c0b71e1da642df0932969e5ac25f5190d1e8802d5ff56114d5816121f7565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561152557600080fd5b505af1158015611539573d6000803e3d6000fd5b5050505060005b8251811015610d2357600061156d848381518110611560576115606137e3565b6020026020010151612421565b90508015611604576115b184838151811061158a5761158a6137e3565b60200260200101518584815181106115a4576115a46137e3565b6020026020010151612563565b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a8483815181106115e4576115e46137e3565b6020026020010151826040516115fb9291906137b1565b60405180910390a15b508061160f816137f9565b915050611540565b6000611622816121f7565b610fb86126b9565b6000610b1582612421565b6000611640816121f7565b6001600160a01b0383166116665760405162461bcd60e51b8152600401610c059061376d565b600082116116ae5760405162461bcd60e51b8152602060048201526015602482015274056657374696e673a2073686172657320617265203605c1b6044820152606401610c05565b6001600160a01b038316600090815260086020526040902080549083905560065481906116dc90859061375a565b6116e69190613853565b600655604051600080516020613a178339815191529061170990869086906137b1565b60405180910390a150505050565b60606000611725600f61228e565b905080841061178d5760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a2073746172742069732067726561746572207468616e206160448201526d0d2e4c8e4dee0e640d8cadccee8d60931b6064820152608401610c05565b80831115611799578092505b60006117a58585613853565b67ffffffffffffffff8111156117bd576117bd6132c9565b6040519080825280602002602001820160405280156117e6578160200160208202803683370190505b509050845b84811015611462576117fe600f826126ad565b826118098884613853565b81518110611819576118196137e3565b6001600160a01b03909216602092830291909101909101528061183b816137f9565b9150506117eb565b6000601354611852600f61228e565b61185c9190613853565b905060006013549050600060145483111561189a576012805460ff1916600117905560145460135461188e919061375a565b601355506014546118ac565b506012805460ff191690556000601355815b815b6118b8828461375a565b8110156118ea5760006118cc600f836126ad565b90506118d7816126f6565b50806118e2816137f9565b9150506118ae565b50505050565b60009182526001602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000611926816121f7565b610e4d82612814565b600061193a816121f7565b611945600f83612201565b6119615760405162461bcd60e51b8152600401610c0590613866565b610d23600f83612891565b611974612384565b61197c6123db565b60035442101561199e5760405162461bcd60e51b8152600401610c0590613812565b600c543410156119f05760405162461bcd60e51b815260206004820181905260248201527f56657374696e673a20636c61696d20666565206973206e6f7420656e6f7567686044820152606401610c05565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a4057600080fd5b505af1158015611a54573d6000803e3d6000fd5b505050506000611a6333612421565b9050611a6f3383612563565b3415611b0f57600d546040516000916001600160a01b03169034908381818185875af1925050503d8060008114611ac2576040519150601f19603f3d011682016040523d82523d6000602084013e611ac7565b606091505b5050905080611b0d5760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f2073656e642066656560701b6044820152606401610c05565b505b7fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a3382604051611b409291906137b1565b60405180910390a150610fb86001600255565b611b5b612384565b611b636123db565b600354600454611b73919061375a565b42108015611b8357506003544210155b611bc45760405162461bcd60e51b81526020600482015260126024820152712932b33ab7321034b9903737ba1037b832b760711b6044820152606401610c05565b3360009081526009602052604090205415611c2d5760405162461bcd60e51b8152602060048201526024808201527f56657374696e673a206163636f756e742068617320616c726561647920636c616044820152631a5b595960e21b6064820152608401610c05565b611c38600a33612201565b15611c985760405162461bcd60e51b815260206004820152602a60248201527f56657374696e673a206163636f756e742068617320616c7265616479206265656044820152691b881c99599d5b99195960b21b6064820152608401610c05565b33600090815260086020526040902054611cc45760405162461bcd60e51b8152600401610c05906138b0565b611ccd336128a6565b61131c6001600255565b6000611ce2816121f7565b6001600160a01b038216611d505760405162461bcd60e51b815260206004820152602f60248201527f56657374696e673a2066656520726573657276652063616e6e6f74206265207460448201526e6865207a65726f206164647265737360881b6064820152608401610c05565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611d7e816121f7565b8115611db6576005546040516395ccea6760e01b81526001600160a01b03909116906395ccea6790610b7690339087906004016137b1565b610d236001600160a01b037f00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c163385612bb2565b6000611df5816121f7565b60005b8251811015610d2357611e2e838281518110611e1657611e166137e3565b6020026020010151600a61220190919063ffffffff16565b611e5457611e54838281518110611e4757611e476137e3565b60200260200101516128a6565b80611e5e816137f9565b915050611df8565b611e6e612384565b611e79600f33612201565b15611edd5760405162461bcd60e51b815260206004820152602e60248201527f56657374696e673a206163636f756e742068617320616c72656164792072657160448201526d07565737465642061697264726f760941b6064820152608401610c05565b33600090815260086020526040902054611f095760405162461bcd60e51b8152600401610c05906138b0565b611f14600f33612c08565b50600d54601154611ccd916001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781169233929190911690612c1d565b60008281526001602081905260409091200154611f73816121f7565b610d238383612298565b6000611f88816121f7565b6001600160a01b038216611ff35760405162461bcd60e51b815260206004820152602c60248201527f56657374696e673a2072656c65617365722063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152608401610c05565b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000612021816121f7565b6001600160a01b0383166120875760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206f6c642077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610c05565b6001600160a01b0382166120ed5760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a206e65772077616c6c657420697320746865207a65726f206044820152666164647265737360c81b6064820152608401610c05565b6001600160a01b03831660009081526008602052604090205461215c5760405162461bcd60e51b815260206004820152602160248201527f56657374696e673a206f6c642077616c6c657420686173206e6f2073686172656044820152607360f81b6064820152608401610c05565b6001600160a01b038084166000818152600860209081526040808320805490849055948716808452818420869055938352600990915280822080549083905592825280822083905551600080516020613a17833981519152916121c1918891906137b1565b60405180910390a1600080516020613a1783398151915284836040516121e89291906137b1565b60405180910390a15050505050565b610fb88133612c55565b6001600160a01b03811660009081526001830160205260408120541515610f9e565b61222d82826118f0565b610e4d5760008281526001602081815260408084206001600160a01b0386168086529252808420805460ff19169093179092559051339285917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d9190a45050565b6000610b15825490565b6122a282826118f0565b15610e4d5760008281526001602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6006546001600160a01b03831660009081526008602052604081205490919061232890846138e7565b610f9e9190613906565b61233a612cae565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60028054036123d55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c05565b60028055565b60005460ff161561131c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c05565b600080600560009054906101000a90046001600160a01b03166001600160a01b031663fbccedae6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612477573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249b91906137ca565b6007546040516370a0823160e01b81523060048201527f00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c6001600160a01b0316906370a0823190602401602060405180830381865afa158015612502573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252691906137ca565b612530919061375a565b61253a919061375a565b6001600160a01b038416600090815260096020526040902054909150610f9e9084908390612cf7565b6001600160a01b0382166000908152600860205260409020546125985760405162461bcd60e51b8152600401610c05906138b0565b60006125a383612421565b9050806000036126015760405162461bcd60e51b815260206004820152602360248201527f56657374696e673a206163636f756e74206973206e6f7420647565207061796d604482015262195b9d60ea1b6064820152608401610c05565b6001600160a01b0383166000908152600960205260408120805483929061262990849061375a565b925050819055508060076000828254612642919061375a565b9091555061267c90506001600160a01b037f00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c168383612bb2565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610cce9291906137b1565b6000610f9e8383612d3d565b6126c16123db565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123673390565b612701600f82612201565b61271d5760405162461bcd60e51b8152600401610c0590613866565b6001600160a01b0381166000908152600860205260409020546127525760405162461bcd60e51b8152600401610c05906138b0565b600560009054906101000a90046001600160a01b03166001600160a01b03166386d1a69f6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127a257600080fd5b505af11580156127b6573d6000803e3d6000fd5b5050505060006127c582612421565b90508015610e4d576127d78283612563565b7f7bd6d4be1decdc27a9ed9c7ccdf5bb7cc38e31b3647b958c6b37162a2296c0fa82826040516128089291906137b1565b60405180910390a15050565b6001600160a01b03811661283a5760405162461bcd60e51b8152600401610c059061376d565b6001600160a01b0381166000908152600860205260408120805490829055600680549192839261286b908490613853565b9091555050604051600080516020613a17833981519152906128089084906000906137b1565b6000610f9e836001600160a01b038416612d67565b600560009054906101000a90046001600160a01b03166001600160a01b031663961325216040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061291d91906137ca565b1561295c5760405162461bcd60e51b815260206004820152600f60248201526e10db1a5999881a185cc8195b991959608a1b6044820152606401610c05565b600560009054906101000a90046001600160a01b03166001600160a01b031663fbccedae6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d391906137ca565b15612a305760405162461bcd60e51b815260206004820152602760248201527f56657374696e673a2072656c6561736572206861732072656c65617361626c6560448201526620746f6b656e7360c81b6064820152608401610c05565b6001600160a01b03811660009081526009602052604090205415612a515750565b612a5c600a82612c08565b506000612a6882612421565b90506000612a7583610e5d565b6001600160a01b038416600090815260086020526040902054909150612a9a84612814565b600554600e546001600160a01b03918216916395ccea679116612abd8686613853565b6040518363ffffffff1660e01b8152600401612ada9291906137b1565b600060405180830381600087803b158015612af457600080fd5b505af1158015612b08573d6000803e3d6000fd5b5050600e54612b4692506001600160a01b037f00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c811692501685612bb2565b600e54612b81906001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7811691168684612c1d565b7fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d065184836040516117099291906137b1565b610d238363a9059cbb60e01b8484604051602401612bd19291906137b1565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612e5a565b6000610f9e836001600160a01b038416612f2f565b6040516001600160a01b03808516602483015283166044820152606481018290526118ea9085906323b872dd60e01b90608401612bd1565b612c5f82826118f0565b610e4d57612c6c81612f7e565b612c77836020612f90565b604051602001612c88929190613928565b60408051601f198184030181529082905262461bcd60e51b8252610c059160040161399d565b60005460ff1661131c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c05565b6006546001600160a01b03841660009081526008602052604081205490918391612d2190866138e7565b612d2b9190613906565b612d359190613853565b949350505050565b6000826000018281548110612d5457612d546137e3565b9060005260206000200154905092915050565b60008181526001830160205260408120548015612e50576000612d8b600183613853565b8554909150600090612d9f90600190613853565b9050818114612e04576000866000018281548110612dbf57612dbf6137e3565b9060005260206000200154905080876000018481548110612de257612de26137e3565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612e1557612e156139b0565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610b15565b6000915050610b15565b6000612eaf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661312c9092919063ffffffff16565b9050805160001480612ed0575080806020019051810190612ed091906139c6565b610d235760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c05565b6000818152600183016020526040812054612f7657508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b15565b506000610b15565b6060610b156001600160a01b03831660145b60606000612f9f8360026138e7565b612faa90600261375a565b67ffffffffffffffff811115612fc257612fc26132c9565b6040519080825280601f01601f191660200182016040528015612fec576020820181803683370190505b509050600360fc1b81600081518110613007576130076137e3565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613036576130366137e3565b60200101906001600160f81b031916908160001a905350600061305a8460026138e7565b61306590600161375a565b90505b60018111156130dd576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613099576130996137e3565b1a60f81b8282815181106130af576130af6137e3565b60200101906001600160f81b031916908160001a90535060049490941c936130d6816139e3565b9050613068565b508315610f9e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c05565b6060612d35848460008585600080866001600160a01b0316858760405161315391906139fa565b60006040518083038185875af1925050503d8060008114613190576040519150601f19603f3d011682016040523d82523d6000602084013e613195565b606091505b50915091506131a6878383876131b1565b979650505050505050565b60608315613220578251600003613219576001600160a01b0385163b6132195760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c05565b5081612d35565b612d3583838151156132355781518083602001fd5b8060405162461bcd60e51b8152600401610c05919061399d565b60006020828403121561326157600080fd5b81356001600160e01b031981168114610f9e57600080fd5b60006020828403121561328b57600080fd5b5035919050565b80356001600160a01b03811681146132a957600080fd5b919050565b6000602082840312156132c057600080fd5b610f9e82613292565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613308576133086132c9565b604052919050565b600067ffffffffffffffff82111561332a5761332a6132c9565b5060051b60200190565b600082601f83011261334557600080fd5b8135602061335a61335583613310565b6132df565b82815260059290921b8401810191818101908684111561337957600080fd5b8286015b84811015613394578035835291830191830161337d565b509695505050505050565b600080604083850312156133b257600080fd5b823567ffffffffffffffff808211156133ca57600080fd5b6133d686838701613334565b935060208501359150808211156133ec57600080fd5b506133f985828601613334565b9150509250929050565b6000806040838503121561341657600080fd5b61341f83613292565b946020939093013593505050565b6000806040838503121561344057600080fd5b8235915061345060208401613292565b90509250929050565b6000806020838503121561346c57600080fd5b823567ffffffffffffffff8082111561348457600080fd5b818501915085601f83011261349857600080fd5b8135818111156134a757600080fd5b8660208285010111156134b957600080fd5b60209290920196919550909350505050565b600082601f8301126134dc57600080fd5b813560206134ec61335583613310565b82815260059290921b8401810191818101908684111561350b57600080fd5b8286015b848110156133945761352081613292565b835291830191830161350f565b6000806040838503121561354057600080fd5b823567ffffffffffffffff8082111561355857600080fd5b6133d6868387016134cb565b6000806040838503121561357757600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156135c75783516001600160a01b0316835292840192918401916001016135a2565b50909695505050505050565b6000602082840312156135e557600080fd5b813567ffffffffffffffff8111156135fc57600080fd5b612d35848285016134cb565b60005b8381101561362357818101518382015260200161360b565b50506000910152565b60008151808452613644816020860160208601613608565b601f01601f19169290920160200192915050565b8215158152604060208201526000612d35604083018461362c565b8015158114610fb857600080fd5b6000806040838503121561369457600080fd5b8235915060208301356136a681613673565b809150509250929050565b600080604083850312156136c457600080fd5b6136cd83613292565b915061345060208401613292565b600081518084526020808501945080840160005b8381101561370b578151875295820195908201906001016136ef565b509495945050505050565b60408152600061372960408301856136db565b828103602084015261373b81856136db565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b1557610b15613744565b60208082526024908201527f56657374696e673a206163636f756e7420697320746865207a65726f206164646040820152637265737360e01b606082015260800190565b6001600160a01b03929092168252602082015260400190565b6000602082840312156137dc57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b60006001820161380b5761380b613744565b5060010190565b60208082526021908201527f56657374696e673a2054474520686173206e6f742068617070656e65642079656040820152601d60fa1b606082015260800190565b81810381811115610b1557610b15613744565b6020808252602a908201527f56657374696e673a206163636f756e7420686173206e6f742072657175657374604082015269065642061697264726f760b41b606082015260800190565b6020808252601e908201527f56657374696e673a206163636f756e7420686173206e6f207368617265730000604082015260600190565b600081600019048311821515161561390157613901613744565b500290565b60008261392357634e487b7160e01b600052601260045260246000fd5b500490565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613960816017850160208801613608565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613991816028840160208801613608565b01602801949350505050565b602081526000610f9e602083018461362c565b634e487b7160e01b600052603160045260246000fd5b6000602082840312156139d857600080fd5b8151610f9e81613673565b6000816139f2576139f2613744565b506000190190565b60008251613a0c818460208701613608565b919091019291505056fee6382c9ed5c0c33bb05042f73cf6cbe9cb25639f9a711e094ee563bc9cb80e2ca2646970667358221220f39504020938803bb2fc39e5220ef9b7c7a8fbfaac6b7cb9cad48523896424b064736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934000000000000000000000000eca95b8dbe5d466635dd8f298417f3127514093400000000000000000000000000000000000000000000000000000000666ac6a40000000000000000000000000000000000000000000000000000000000015180
-----Decoded View---------------
Arg [0] : _token (address): 0x87B46212e805A3998B7e8077E9019c90759Ea88C
Arg [1] : _refundToken (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
Arg [2] : _refundReserve (address): 0xEca95B8Dbe5D466635dD8F298417F31275140934
Arg [3] : _feeReserve (address): 0xEca95B8Dbe5D466635dD8F298417F31275140934
Arg [4] : _tge (uint256): 1718273700
Arg [5] : _refundPeriod (uint256): 86400
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000087b46212e805a3998b7e8077e9019c90759ea88c
Arg [1] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [2] : 000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934
Arg [3] : 000000000000000000000000eca95b8dbe5d466635dd8f298417f31275140934
Arg [4] : 00000000000000000000000000000000000000000000000000000000666ac6a4
Arg [5] : 0000000000000000000000000000000000000000000000000000000000015180
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.014996 | 201,740.9855 | $3,025.32 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.