Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TokenVesting
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-03-29 */ pragma solidity ^0.5.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } /** * @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 ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } 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' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } /* * @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 GSN 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. */ contract Context is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable is Initializable, Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function initialize(address sender) public initializer { _owner = sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[50] private ______gap; } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting is Ownable { // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore, // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a // cliff period of a year and a duration of four years, are safe to use. // solhint-disable not-rely-on-time using SafeMath for uint256; using SafeERC20 for IERC20; event TokensReleased(address token, uint256 amount); event TokenVestingRevoked(address token); // beneficiary of tokens after they are released address private _beneficiary; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; bool private _revocable; mapping (address => uint256) private _released; mapping (address => bool) private _revoked; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * beneficiary, gradually in a linear fashion until start + duration. By then all * of the balance will have vested. * @param beneficiary address of the beneficiary to whom vested tokens are transferred * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param start the time (as Unix time) at which point vesting starts * @param duration duration in seconds of the period in which the tokens will vest * @param revocable whether the vesting is revocable or not */ constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public { require(beneficiary != address(0), "TokenVesting: beneficiary is the zero address"); // solhint-disable-next-line max-line-length require(cliffDuration <= duration, "TokenVesting: cliff is longer than duration"); require(duration > 0, "TokenVesting: duration is 0"); // solhint-disable-next-line max-line-length require(start.add(duration) > block.timestamp, "TokenVesting: final time is before current time"); _beneficiary = beneficiary; _revocable = revocable; _duration = duration; _cliff = start.add(cliffDuration); _start = start; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the cliff time of the token vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the token vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the token vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @return true if the vesting is revocable. */ function revocable() public view returns (bool) { return _revocable; } /** * @return the amount of the token released. */ function released(address token) public view returns (uint256) { return _released[token]; } /** * @return true if the token is revoked. */ function revoked(address token) public view returns (bool) { return _revoked[token]; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(IERC20 token) public { uint256 unreleased = _releasableAmount(token); require(unreleased > 0, "TokenVesting: no tokens are due"); _released[address(token)] = _released[address(token)].add(unreleased); token.safeTransfer(_beneficiary, unreleased); emit TokensReleased(address(token), unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(IERC20 token) public onlyOwner { require(_revocable, "TokenVesting: cannot revoke"); require(!_revoked[address(token)], "TokenVesting: token already revoked"); uint256 balance = token.balanceOf(address(this)); uint256 unreleased = _releasableAmount(token); uint256 refund = balance.sub(unreleased); _revoked[address(token)] = true; token.safeTransfer(owner(), refund); emit TokenVestingRevoked(address(token)); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function _releasableAmount(IERC20 token) private view returns (uint256) { return _vestedAmount(token).sub(_released[address(token)]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function _vestedAmount(IERC20 token) private view returns (uint256) { uint256 currentBalance = token.balanceOf(address(this)); uint256 totalBalance = currentBalance.add(_released[address(token)]); if (block.timestamp < _cliff) { return 0; } else if (block.timestamp >= _start.add(_duration) || _revoked[address(token)]) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(_start)).div(_duration); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"bool","name":"revocable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"TokenVestingRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensReleased","type":"event"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cliff","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"revocable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"revoke","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"revoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620012a0380380620012a0833981810160405260a08110156200003757600080fd5b508051602082015160408301516060840151608090940151929391929091906001600160a01b0385166200009d5760405162461bcd60e51b815260040180806020018281038252602d81526020018062001248602d913960400191505060405180910390fd5b81831115620000de5760405162461bcd60e51b815260040180806020018281038252602b81526020018062001275602b913960400191505060405180910390fd5b6000821162000134576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e56657374696e673a206475726174696f6e20697320300000000000604482015290519081900360640190fd5b426200014f8386620001e360201b620008521790919060201c565b116200018d5760405162461bcd60e51b815260040180806020018281038252602f81526020018062001219602f913960400191505060405180910390fd5b606680546001600160a01b0319166001600160a01b038716179055606a805460ff19168215151790556069829055620001d38484620001e3602090811b6200085217901c565b6067555050506068555062000245565b6000828201838110156200023e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610fc480620002556000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063be9a655511610066578063be9a6555146101dd578063c4d66de8146101e5578063f2fde38b1461020b578063fa01dc0614610231576100ea565b80638da5cb5b146101a75780638f32d59b146101af5780639852595c146101b7576100ea565b806338af3eed116100c857806338af3eed14610139578063715018a61461015d57806374a8f10314610165578063872a78101461018b576100ea565b80630fb5a6b4146100ef57806313d033c0146101095780631916558714610111575b600080fd5b6100f7610257565b60408051918252519081900360200190f35b6100f761025d565b6101376004803603602081101561012757600080fd5b50356001600160a01b0316610263565b005b610141610368565b604080516001600160a01b039092168252519081900360200190f35b610137610377565b6101376004803603602081101561017b57600080fd5b50356001600160a01b031661041a565b610193610642565b604080519115158252519081900360200190f35b61014161064b565b61019361065a565b6100f7600480360360208110156101cd57600080fd5b50356001600160a01b0316610680565b6100f761069f565b610137600480360360208110156101fb57600080fd5b50356001600160a01b03166106a5565b6101376004803603602081101561022157600080fd5b50356001600160a01b0316610797565b6101936004803603602081101561024757600080fd5b50356001600160a01b03166107fc565b60695490565b60675490565b600061026e8261081a565b9050600081116102c5576040805162461bcd60e51b815260206004820152601f60248201527f546f6b656e56657374696e673a206e6f20746f6b656e73206172652064756500604482015290519081900360640190fd5b6001600160a01b0382166000908152606b60205260409020546102ee908263ffffffff61085216565b6001600160a01b038084166000818152606b60205260409020929092556066546103209291168363ffffffff6108b316565b604080516001600160a01b03841681526020810183905281517fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df93179929181900390910190a15050565b6066546001600160a01b031690565b61037f61065a565b6103d0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b61042261065a565b610473576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b606a5460ff166104ca576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e56657374696e673a2063616e6e6f74207265766f6b650000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152606c602052604090205460ff16156105225760405162461bcd60e51b8152600401808060200182810382526023815260200180610f6d6023913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561056c57600080fd5b505afa158015610580573d6000803e3d6000fd5b505050506040513d602081101561059657600080fd5b5051905060006105a58361081a565b905060006105b9838363ffffffff61090a16565b6001600160a01b0385166000908152606c60205260409020805460ff1916600117905590506106006105e961064b565b6001600160a01b038616908363ffffffff6108b316565b604080516001600160a01b038616815290517f39983c6d4d174a7aee564f449d4a5c3c7ac9649d72b7793c56901183996f8af69181900360200190a150505050565b606a5460ff1690565b6033546001600160a01b031690565b6033546000906001600160a01b031661067161094c565b6001600160a01b031614905090565b6001600160a01b0381166000908152606b60205260409020545b919050565b60685490565b600054610100900460ff16806106be57506106be610950565b806106cc575060005460ff16155b6107075760405162461bcd60e51b815260040180806020018281038252602e815260200180610f15602e913960400191505060405180910390fd5b600054610100900460ff16158015610732576000805460ff1961ff0019909116610100171660011790555b603380546001600160a01b0319166001600160a01b0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015610793576000805461ff00191690555b5050565b61079f61065a565b6107f0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6107f981610956565b50565b6001600160a01b03166000908152606c602052604090205460ff1690565b6001600160a01b0381166000908152606b602052604081205461084c90610840846109f7565b9063ffffffff61090a16565b92915050565b6000828201838110156108ac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610905908490610b3c565b505050565b60006108ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cfa565b3390565b303b1590565b6001600160a01b03811661099b5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ece6026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b604080516370a0823160e01b8152306004820152905160009182916001600160a01b038516916370a08231916024808301926020929190829003018186803b158015610a4257600080fd5b505afa158015610a56573d6000803e3d6000fd5b505050506040513d6020811015610a6c57600080fd5b50516001600160a01b0384166000908152606b602052604081205491925090610a9c90839063ffffffff61085216565b9050606754421015610ab35760009250505061069a565b606954606854610ac89163ffffffff61085216565b42101580610aee57506001600160a01b0384166000908152606c602052604090205460ff165b15610afc57915061069a9050565b610b33606954610b27610b1a6068544261090a90919063ffffffff16565b849063ffffffff610d9116565b9063ffffffff610dea16565b9250505061069a565b610b4e826001600160a01b0316610e2c565b610b9f576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610bdd5780518252601f199092019160209182019101610bbe565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610c3f576040519150601f19603f3d011682016040523d82523d6000602084013e610c44565b606091505b509150915081610c9b576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610cf457808060200190516020811015610cb757600080fd5b5051610cf45760405162461bcd60e51b815260040180806020018281038252602a815260200180610f43602a913960400191505060405180910390fd5b50505050565b60008184841115610d895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d4e578181015183820152602001610d36565b50505050905090810190601f168015610d7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082610da05750600061084c565b82820282848281610dad57fe5b04146108ac5760405162461bcd60e51b8152600401808060200182810382526021815260200180610ef46021913960400191505060405180910390fd5b60006108ac83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e68565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610e6057508115155b949350505050565b60008183610eb75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610d4e578181015183820152602001610d36565b506000838581610ec357fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564546f6b656e56657374696e673a20746f6b656e20616c7265616479207265766f6b6564a265627a7a72315820780822da8f845f563e8c266e3b77cc1e79ab30330d2f6bfc76e59e467d53a9b564736f6c63430005110032546f6b656e56657374696e673a2066696e616c2074696d65206973206265666f72652063757272656e742074696d65546f6b656e56657374696e673a2062656e656669636961727920697320746865207a65726f2061646472657373546f6b656e56657374696e673a20636c696666206973206c6f6e676572207468616e206475726174696f6e000000000000000000000000520cf70a2d0b3dfb7386a2bc9f800321f62a5c3a000000000000000000000000000000000000000000000000000000005e7a9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007861f800000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063be9a655511610066578063be9a6555146101dd578063c4d66de8146101e5578063f2fde38b1461020b578063fa01dc0614610231576100ea565b80638da5cb5b146101a75780638f32d59b146101af5780639852595c146101b7576100ea565b806338af3eed116100c857806338af3eed14610139578063715018a61461015d57806374a8f10314610165578063872a78101461018b576100ea565b80630fb5a6b4146100ef57806313d033c0146101095780631916558714610111575b600080fd5b6100f7610257565b60408051918252519081900360200190f35b6100f761025d565b6101376004803603602081101561012757600080fd5b50356001600160a01b0316610263565b005b610141610368565b604080516001600160a01b039092168252519081900360200190f35b610137610377565b6101376004803603602081101561017b57600080fd5b50356001600160a01b031661041a565b610193610642565b604080519115158252519081900360200190f35b61014161064b565b61019361065a565b6100f7600480360360208110156101cd57600080fd5b50356001600160a01b0316610680565b6100f761069f565b610137600480360360208110156101fb57600080fd5b50356001600160a01b03166106a5565b6101376004803603602081101561022157600080fd5b50356001600160a01b0316610797565b6101936004803603602081101561024757600080fd5b50356001600160a01b03166107fc565b60695490565b60675490565b600061026e8261081a565b9050600081116102c5576040805162461bcd60e51b815260206004820152601f60248201527f546f6b656e56657374696e673a206e6f20746f6b656e73206172652064756500604482015290519081900360640190fd5b6001600160a01b0382166000908152606b60205260409020546102ee908263ffffffff61085216565b6001600160a01b038084166000818152606b60205260409020929092556066546103209291168363ffffffff6108b316565b604080516001600160a01b03841681526020810183905281517fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df93179929181900390910190a15050565b6066546001600160a01b031690565b61037f61065a565b6103d0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b61042261065a565b610473576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b606a5460ff166104ca576040805162461bcd60e51b815260206004820152601b60248201527f546f6b656e56657374696e673a2063616e6e6f74207265766f6b650000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152606c602052604090205460ff16156105225760405162461bcd60e51b8152600401808060200182810382526023815260200180610f6d6023913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b15801561056c57600080fd5b505afa158015610580573d6000803e3d6000fd5b505050506040513d602081101561059657600080fd5b5051905060006105a58361081a565b905060006105b9838363ffffffff61090a16565b6001600160a01b0385166000908152606c60205260409020805460ff1916600117905590506106006105e961064b565b6001600160a01b038616908363ffffffff6108b316565b604080516001600160a01b038616815290517f39983c6d4d174a7aee564f449d4a5c3c7ac9649d72b7793c56901183996f8af69181900360200190a150505050565b606a5460ff1690565b6033546001600160a01b031690565b6033546000906001600160a01b031661067161094c565b6001600160a01b031614905090565b6001600160a01b0381166000908152606b60205260409020545b919050565b60685490565b600054610100900460ff16806106be57506106be610950565b806106cc575060005460ff16155b6107075760405162461bcd60e51b815260040180806020018281038252602e815260200180610f15602e913960400191505060405180910390fd5b600054610100900460ff16158015610732576000805460ff1961ff0019909116610100171660011790555b603380546001600160a01b0319166001600160a01b0384811691909117918290556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a38015610793576000805461ff00191690555b5050565b61079f61065a565b6107f0576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6107f981610956565b50565b6001600160a01b03166000908152606c602052604090205460ff1690565b6001600160a01b0381166000908152606b602052604081205461084c90610840846109f7565b9063ffffffff61090a16565b92915050565b6000828201838110156108ac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610905908490610b3c565b505050565b60006108ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cfa565b3390565b303b1590565b6001600160a01b03811661099b5760405162461bcd60e51b8152600401808060200182810382526026815260200180610ece6026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b604080516370a0823160e01b8152306004820152905160009182916001600160a01b038516916370a08231916024808301926020929190829003018186803b158015610a4257600080fd5b505afa158015610a56573d6000803e3d6000fd5b505050506040513d6020811015610a6c57600080fd5b50516001600160a01b0384166000908152606b602052604081205491925090610a9c90839063ffffffff61085216565b9050606754421015610ab35760009250505061069a565b606954606854610ac89163ffffffff61085216565b42101580610aee57506001600160a01b0384166000908152606c602052604090205460ff165b15610afc57915061069a9050565b610b33606954610b27610b1a6068544261090a90919063ffffffff16565b849063ffffffff610d9116565b9063ffffffff610dea16565b9250505061069a565b610b4e826001600160a01b0316610e2c565b610b9f576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610bdd5780518252601f199092019160209182019101610bbe565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610c3f576040519150601f19603f3d011682016040523d82523d6000602084013e610c44565b606091505b509150915081610c9b576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610cf457808060200190516020811015610cb757600080fd5b5051610cf45760405162461bcd60e51b815260040180806020018281038252602a815260200180610f43602a913960400191505060405180910390fd5b50505050565b60008184841115610d895760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d4e578181015183820152602001610d36565b50505050905090810190601f168015610d7b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082610da05750600061084c565b82820282848281610dad57fe5b04146108ac5760405162461bcd60e51b8152600401808060200182810382526021815260200180610ef46021913960400191505060405180910390fd5b60006108ac83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610e68565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610e6057508115155b949350505050565b60008183610eb75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610d4e578181015183820152602001610d36565b506000838581610ec357fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a65645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564546f6b656e56657374696e673a20746f6b656e20616c7265616479207265766f6b6564a265627a7a72315820780822da8f845f563e8c266e3b77cc1e79ab30330d2f6bfc76e59e467d53a9b564736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000520cf70a2d0b3dfb7386a2bc9f800321f62a5c3a000000000000000000000000000000000000000000000000000000005e7a9f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007861f800000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : beneficiary (address): 0x520Cf70a2D0B3dfB7386A2Bc9F800321F62a5c3a
Arg [1] : start (uint256): 1585094400
Arg [2] : cliffDuration (uint256): 0
Arg [3] : duration (uint256): 126230400
Arg [4] : revocable (bool): False
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000520cf70a2d0b3dfb7386a2bc9f800321f62a5c3a
Arg [1] : 000000000000000000000000000000000000000000000000000000005e7a9f00
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000007861f80
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
20826:5906:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20826:5906:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23896:85;;;:::i;:::-;;;;;;;;;;;;;;;;23582:79;;;:::i;24631:372::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24631:372:0;-1:-1:-1;;;;;24631:372:0;;:::i;:::-;;23412:91;;;:::i;:::-;;;;-1:-1:-1;;;;;23412:91:0;;;;;;;;;;;;;;14392:140;;;:::i;25230:515::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25230:515:0;-1:-1:-1;;;;;25230:515:0;;:::i;24057:84::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;13579:79;;;:::i;13945:94::-;;;:::i;24217:105::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24217:105:0;-1:-1:-1;;;;;24217:105:0;;:::i;23740:79::-;;;:::i;13353:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13353:145:0;-1:-1:-1;;;;;13353:145:0;;:::i;14687:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14687:109:0;-1:-1:-1;;;;;14687:109:0;;:::i;24394:100::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24394:100:0;-1:-1:-1;;;;;24394:100:0;;:::i;23896:85::-;23964:9;;23896:85;:::o;23582:79::-;23647:6;;23582:79;:::o;24631:372::-;24680:18;24701:24;24719:5;24701:17;:24::i;:::-;24680:45;;24759:1;24746:10;:14;24738:58;;;;;-1:-1:-1;;;24738:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24837:25:0;;;;;;:9;:25;;;;;;:41;;24867:10;24837:41;:29;:41;:::i;:::-;-1:-1:-1;;;;;24809:25:0;;;;;;;:9;:25;;;;;:69;;;;24910:12;;24891:44;;24809:25;24910:12;24924:10;24891:44;:18;:44;:::i;:::-;24953:42;;;-1:-1:-1;;;;;24953:42:0;;;;;;;;;;;;;;;;;;;;;;;24631:372;;:::o;23412:91::-;23483:12;;-1:-1:-1;;;;;23483:12:0;23412:91;:::o;14392:140::-;13791:9;:7;:9::i;:::-;13783:54;;;;;-1:-1:-1;;;13783:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14475:6;;14454:40;;14491:1;;-1:-1:-1;;;;;14475:6:0;;14454:40;;14491:1;;14454:40;14505:6;:19;;-1:-1:-1;;;;;;14505:19:0;;;14392:140::o;25230:515::-;13791:9;:7;:9::i;:::-;13783:54;;;;;-1:-1:-1;;;13783:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25296:10;;;;25288:50;;;;;-1:-1:-1;;;25288:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25358:24:0;;;;;;:8;:24;;;;;;;;25357:25;25349:73;;;;-1:-1:-1;;;25349:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25453:30;;;-1:-1:-1;;;25453:30:0;;25477:4;25453:30;;;;;;25435:15;;-1:-1:-1;;;;;25453:15:0;;;;;:30;;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;25453:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25453:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25453:30:0;;-1:-1:-1;25496:18:0;25517:24;25535:5;25517:17;:24::i;:::-;25496:45;-1:-1:-1;25552:14:0;25569:23;:7;25496:45;25569:23;:11;:23;:::i;:::-;-1:-1:-1;;;;;25605:24:0;;;;;;:8;:24;;;;;:31;;-1:-1:-1;;25605:31:0;25632:4;25605:31;;;25552:40;-1:-1:-1;25649:35:0;25668:7;:5;:7::i;:::-;-1:-1:-1;;;;;25649:18:0;;;25677:6;25649:35;:18;:35;:::i;:::-;25702;;;-1:-1:-1;;;;;25702:35:0;;;;;;;;;;;;;;;13848:1;;;25230:515;:::o;24057:84::-;24123:10;;;;24057:84;:::o;13579:79::-;13644:6;;-1:-1:-1;;;;;13644:6:0;13579:79;:::o;13945:94::-;14025:6;;13985:4;;-1:-1:-1;;;;;14025:6:0;14009:12;:10;:12::i;:::-;-1:-1:-1;;;;;14009:22:0;;14002:29;;13945:94;:::o;24217:105::-;-1:-1:-1;;;;;24298:16:0;;24271:7;24298:16;;;:9;:16;;;;;;24217:105;;;;:::o;23740:79::-;23805:6;;23740:79;:::o;13353:145::-;10554:12;;;;;;;;:31;;;10570:15;:13;:15::i;:::-;10554:47;;;-1:-1:-1;10590:11:0;;;;10589:12;10554:47;10546:106;;;;-1:-1:-1;;;10546:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10661:19;10684:12;;;;;;10683:13;10703:83;;;;10732:12;:19;;-1:-1:-1;;;;10732:19:0;;;;;10760:18;10747:4;10760:18;;;10703:83;13419:6;:15;;-1:-1:-1;;;;;;13419:15:0;-1:-1:-1;;;;;13419:15:0;;;;;;;;;;;13450:40;;13483:6;;;-1:-1:-1;;13450:40:0;;-1:-1:-1;;13450:40:0;10808:14;10804:57;;;10848:5;10833:20;;-1:-1:-1;;10833:20:0;;;10804:57;13353:145;;:::o;14687:109::-;13791:9;:7;:9::i;:::-;13783:54;;;;;-1:-1:-1;;;13783:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14760:28;14779:8;14760:18;:28::i;:::-;14687:109;:::o;24394:100::-;-1:-1:-1;;;;;24471:15:0;24447:4;24471:15;;;:8;:15;;;;;;;;;24394:100::o;25915:149::-;-1:-1:-1;;;;;26030:25:0;;25978:7;26030:25;;;:9;:25;;;;;;26005:51;;:20;26048:5;26005:13;:20::i;:::-;:24;:51;:24;:51;:::i;:::-;25998:58;25915:149;-1:-1:-1;;25915:149:0:o;16010:181::-;16068:7;16100:5;;;16124:6;;;;16116:46;;;;;-1:-1:-1;;;16116:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16182:1;16010:181;-1:-1:-1;;;16010:181:0:o;6379:176::-;6488:58;;;-1:-1:-1;;;;;6488:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;6488:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;6462:85:0;;6481:5;;6462:18;:85::i;:::-;6379:176;;;:::o;16466:136::-;16524:7;16551:43;16555:1;16558;16551:43;;;;;;;;;;;;;;;;;:3;:43::i;12374:98::-;12454:10;12374:98;:::o;10955:508::-;11372:4;11418:17;11450:7;10955:508;:::o;14902:229::-;-1:-1:-1;;;;;14976:22:0;;14968:73;;;;-1:-1:-1;;;14968:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15078:6;;15057:38;;-1:-1:-1;;;;;15057:38:0;;;;15078:6;;15057:38;;15078:6;;15057:38;15106:6;:17;;-1:-1:-1;;;;;;15106:17:0;-1:-1:-1;;;;;15106:17:0;;;;;;;;;;14902:229::o;26205:524::-;26309:30;;;-1:-1:-1;;;26309:30:0;;26333:4;26309:30;;;;;;26264:7;;;;-1:-1:-1;;;;;26309:15:0;;;;;:30;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;26309:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26309:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26309:30:0;-1:-1:-1;;;;;26392:25:0;;26350:20;26392:25;;;:9;26309:30;26392:25;;;;;26309:30;;-1:-1:-1;26350:20:0;26373:45;;26309:30;;26373:45;:18;:45;:::i;:::-;26350:68;;26453:6;;26435:15;:24;26431:291;;;26483:1;26476:8;;;;;;26431:291;26536:9;;26525:6;;:21;;;:10;:21;:::i;:::-;26506:15;:40;;:68;;;-1:-1:-1;;;;;;26550:24:0;;;;;;:8;:24;;;;;;;;26506:68;26502:220;;;26598:12;-1:-1:-1;26591:19:0;;-1:-1:-1;26591:19:0;26502:220;26650:60;26700:9;;26650:45;26667:27;26687:6;;26667:15;:19;;:27;;;;:::i;:::-;26650:12;;:45;:16;:45;:::i;:::-;:49;:60;:49;:60;:::i;:::-;26643:67;;;;;;8418:1114;9022:27;9030:5;-1:-1:-1;;;;;9022:25:0;;:27::i;:::-;9014:71;;;;;-1:-1:-1;;;9014:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9159:12;9173:23;9208:5;-1:-1:-1;;;;;9200:19:0;9220:4;9200:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;9200:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;9158:67:0;;;;9244:7;9236:52;;;;;-1:-1:-1;;;9236:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9305:17;;:21;9301:224;;9447:10;9436:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9436:30:0;9428:85;;;;-1:-1:-1;;;9428:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8418:1114;;;;:::o;16939:192::-;17025:7;17061:12;17053:6;;;;17045:29;;;;-1:-1:-1;;;17045:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17045:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;17097:5:0;;;16939:192::o;17382:471::-;17440:7;17685:6;17681:47;;-1:-1:-1;17715:1:0;17708:8;;17681:47;17752:5;;;17756:1;17752;:5;:1;17776:5;;;;;:10;17768:56;;;;-1:-1:-1;;;17768:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18321:132;18379:7;18406:39;18410:1;18413;18406:39;;;;;;;;;;;;;;;;;:3;:39::i;709:619::-;769:4;1237:20;;1080:66;1277:23;;;;;;:42;;-1:-1:-1;1304:15:0;;;1277:42;1269:51;709:619;-1:-1:-1;;;;709:619:0:o;18983:345::-;19069:7;19171:12;19164:5;19156:28;;;;-1:-1:-1;;;19156:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;19156:28:0;;19195:9;19211:1;19207;:5;;;;;;;18983:345;-1:-1:-1;;;;;18983:345:0:o
Swarm Source
bzzr://780822da8f845f563e8c266e3b77cc1e79ab30330d2f6bfc76e59e467d53a9b5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.