More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 3,149 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 11441484 | 1463 days ago | IN | 0 ETH | 0.0036848 | ||||
Withdraw | 11440229 | 1464 days ago | IN | 0 ETH | 0.00468265 | ||||
Deposit | 11419738 | 1467 days ago | IN | 0 ETH | 0.01284224 | ||||
Deposit | 11415840 | 1467 days ago | IN | 0 ETH | 0.00829806 | ||||
Deposit | 11403136 | 1469 days ago | IN | 0 ETH | 0.00493381 | ||||
Withdraw All | 11402352 | 1469 days ago | IN | 0 ETH | 0.00264501 | ||||
Earn | 11402305 | 1469 days ago | IN | 0 ETH | 0.00154176 | ||||
Deposit | 11399544 | 1470 days ago | IN | 0 ETH | 0.00395122 | ||||
Deposit | 11399464 | 1470 days ago | IN | 0 ETH | 0.00296359 | ||||
Withdraw | 11389998 | 1471 days ago | IN | 0 ETH | 0.00336453 | ||||
Withdraw | 11389152 | 1471 days ago | IN | 0 ETH | 0.00112968 | ||||
Deposit | 11384183 | 1472 days ago | IN | 0 ETH | 0.00928593 | ||||
Deposit | 11382712 | 1472 days ago | IN | 0 ETH | 0.00431989 | ||||
Deposit | 11381940 | 1473 days ago | IN | 0 ETH | 0.00773663 | ||||
Withdraw | 11381896 | 1473 days ago | IN | 0 ETH | 0.00725733 | ||||
Withdraw | 11381605 | 1473 days ago | IN | 0 ETH | 0.0057825 | ||||
Withdraw | 11381426 | 1473 days ago | IN | 0 ETH | 0.00471858 | ||||
Withdraw | 11380851 | 1473 days ago | IN | 0 ETH | 0.01259759 | ||||
Withdraw | 11380159 | 1473 days ago | IN | 0 ETH | 0.00779656 | ||||
Withdraw | 11380065 | 1473 days ago | IN | 0 ETH | 0.00502451 | ||||
Deposit | 11379737 | 1473 days ago | IN | 0 ETH | 0.00337829 | ||||
Deposit | 11378590 | 1473 days ago | IN | 0 ETH | 0.00847228 | ||||
Deposit | 11377559 | 1473 days ago | IN | 0 ETH | 0.00059916 | ||||
Deposit | 11376175 | 1473 days ago | IN | 0 ETH | 0.00425098 | ||||
Withdraw | 11375401 | 1474 days ago | IN | 0 ETH | 0.00489265 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
cVault_CP3R
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-10 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } /** * @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. */ 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. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { 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. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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 Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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 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)); } /** * @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' // 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. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /* * @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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } interface IController { function vaults(address) external view returns (address); function rewards() external view returns (address); function want(address) external view returns (address); // NOTE: Only StrategyControllerV2 implements this function balanceOf(address) external view returns (uint); function withdraw(address, uint) external; function earn(address, uint) external; } interface IStakingRewards { function balanceOf(address account) external view returns (uint256); function stakeFor(uint256 amount, address recipient) external; function withdrawForUserByCVault(uint256 amount, address from) external; function getRewardFor(address user) external; } contract cVault is ERC20 { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; IERC20 public token; uint public min = 9500; uint public constant max = 10000; address public governance; address public controller; address public stakingPool; constructor (address _token, address _controller) public ERC20( string(abi.encodePacked("Compounder ", ERC20(_token).name())), string(abi.encodePacked("c", ERC20(_token).symbol())) ) { token = IERC20(_token); _setupDecimals(ERC20(_token).decimals()); governance = msg.sender; controller = _controller; } // Total balance of token in both vault and corresponding strategy function balance() public view returns (uint) { return token.balanceOf(address(this)) .add(IController(controller).balanceOf(address(token))); } function setMin(uint _min) external { require(msg.sender == governance, "!governance"); min = _min; } function setGovernance(address _governance) public { require(msg.sender == governance, "!governance"); governance = _governance; } function setController(address _controller) public { require(msg.sender == governance, "!governance"); controller = _controller; } function setStakingPool(address _stakingPool) public { require(msg.sender == governance, "!governance"); stakingPool = _stakingPool; } function infiniteApproveStakingPool() public { require(msg.sender == governance, "!governance"); _approve(address(this), stakingPool, uint(-1)); } function removeApprovalStakingPool() public { require(msg.sender == governance, "!governance"); _approve(address(this), stakingPool, uint(0)); } // Custom logic in here for how much the vault allows to be borrowed // Sets minimum required on-hand to keep small withdrawals cheap function available() public view returns (uint) { return token.balanceOf(address(this)).mul(min).div(max); } // Called by Keeper to put deposited token into strategy function earn() public { uint _bal = available(); token.safeTransfer(controller, _bal); IController(controller).earn(address(token), _bal); } function depositAll(bool _autoStakeInStakingPool) external { deposit(token.balanceOf(msg.sender), _autoStakeInStakingPool); } function deposit(uint _amount, bool _autoStakeInStakingPool) public { uint _pool = balance(); uint _before = token.balanceOf(address(this)); token.safeTransferFrom(msg.sender, address(this), _amount); uint _after = token.balanceOf(address(this)); _amount = _after.sub(_before); // Additional check for deflationary tokens uint shares = 0; if (totalSupply() == 0) { shares = _amount; } else { shares = (_amount.mul(totalSupply())).div(_pool); } if (_autoStakeInStakingPool) { _mint(address(this), shares); IStakingRewards(stakingPool).stakeFor(shares, msg.sender); IStakingRewards(stakingPool).getRewardFor(msg.sender); } else { _mint(msg.sender, shares); } } function withdrawAll() external { withdraw(balanceOf(msg.sender), false); } function withdrawAllFromRewardPool() external { withdraw(IStakingRewards(stakingPool).balanceOf(msg.sender), true); } // No rebalance implementation for lower fees and faster swaps function withdraw(uint _shares, bool _autoWithdrawFromStakingPool) public { if (_autoWithdrawFromStakingPool) { IStakingRewards(stakingPool).withdrawForUserByCVault(_shares, msg.sender); IStakingRewards(stakingPool).getRewardFor(msg.sender); } uint r = (balance().mul(_shares)).div(totalSupply()); _burn(msg.sender, _shares); // Check balance uint b = token.balanceOf(address(this)); if (b < r) { uint _withdraw = r.sub(b); IController(controller).withdraw(address(token), _withdraw); uint _after = token.balanceOf(address(this)); uint _diff = _after.sub(b); if (_diff < _withdraw) { r = b.add(_diff); } } token.safeTransfer(msg.sender, r); } // Used to swap any borrowed reserve over the debt limit to liquidate to 'token' function harvest(address reserve, uint amount) external { require(msg.sender == controller, "!controller"); require(reserve != address(token), "token"); IERC20(reserve).safeTransfer(controller, amount); } function getPricePerFullShare() public view returns (uint) { return balance().mul(1e18).div(totalSupply()); } } contract cVault_CP3R is cVault { constructor (address _token, address _controller) public cVault( _token, _controller ) { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_controller","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_autoStakeInStakingPool","type":"bool"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_autoStakeInStakingPool","type":"bool"}],"name":"depositAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"earn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPricePerFullShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"reserve","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"infiniteApproveStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeApprovalStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_min","type":"uint256"}],"name":"setMin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingPool","type":"address"}],"name":"setStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shares","type":"uint256"},{"internalType":"bool","name":"_autoWithdrawFromStakingPool","type":"bool"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllFromRewardPool","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261251c6006553480156200001757600080fd5b5060405162002e8f38038062002e8f833981810160405260408110156200003d57600080fd5b508051602090910151604080516306fdde0360e01b81529051839183916001600160a01b038416916306fdde03916004808301926000929190829003018186803b1580156200008b57600080fd5b505afa158015620000a0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015620000ca57600080fd5b8101908080516040519392919084640100000000821115620000eb57600080fd5b9083019060208201858111156200010157600080fd5b82516401000000008111828201881017156200011c57600080fd5b82525081516020918201929091019080838360005b838110156200014b57818101518382015260200162000131565b50505050905090810190601f168015620001795780820380516001836020036101000a031916815260200191505b5060405250505060405160200180806a021b7b6b837bab73232b9160ad1b815250600b0182805190602001908083835b60208310620001ca5780518252601f199092019160209182019101620001a9565b6001836020036101000a038019825116818451168082178552505050505050905001915050604051602081830303815290604052826001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156200023857600080fd5b505afa1580156200024d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156200027757600080fd5b81019080805160405193929190846401000000008211156200029857600080fd5b908301906020820185811115620002ae57600080fd5b8251640100000000811182820188101715620002c957600080fd5b82525081516020918201929091019080838360005b83811015620002f8578181015183820152602001620002de565b50505050905090810190601f168015620003265780820380516001836020036101000a031916815260200191505b506040525050506040516020018080606360f81b81525060010182805190602001908083835b602083106200036d5780518252601f1990920191602091820191016200034c565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040528160039080519060200190620003b9929190620004bf565b508051620003cf906004906020840190620004bf565b505060058054601260ff1990911617610100600160a81b0319166101006001600160a01b038616908102919091179091556040805163313ce56760e01b8152905162000471935063313ce56791600480820192602092909190829003018186803b1580156200043d57600080fd5b505afa15801562000452573d6000803e3d6000fd5b505050506040513d60208110156200046957600080fd5b5051620004a9565b60078054336001600160a01b031991821617909155600880549091166001600160a01b0392909216919091179055506200055b915050565b6005805460ff191660ff92909216919091179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200050257805160ff191683800117855562000532565b8280016001018555821562000532579182015b828111156200053257825182559160200191906001019062000515565b506200054092915062000544565b5090565b5b8082111562000540576000815560010162000545565b612924806200056b6000396000f3fe608060405234801561001057600080fd5b506004361061020b5760003560e01c806377c7b8fc1161012a578063ab033ea9116100bd578063dd62ed3e1161008c578063f889794511610071578063f889794514610651578063fc0c546a14610659578063fef6e740146106615761020b565b8063dd62ed3e1461060e578063f77c4791146106495761020b565b8063ab033ea9146105c3578063b1c6c47e146105f6578063b69ef8a8146105fe578063d389800f146106065761020b565b80639a408321116100f95780639a4083211461050d5780639f4003a014610532578063a457c2d714610551578063a9059cbb1461058a5761020b565b806377c7b8fc146104c2578063853828b6146104ca57806392eefe9b146104d257806395d89b41146105055761020b565b8063313ce567116101a257806348a0d7541161017157806348a0d754146104775780635aa6e6751461047f5780636ac5db191461048757806370a082311461048f5761020b565b8063313ce567146103de57806338d07436146103fc578063395093511461042157806345dc3dd81461045a5761020b565b80630ef14cbc116101de5780630ef14cbc1461034657806318160ddd1461034e57806323b872dd146103685780633028f63a146103ab5761020b565b8063018ee9b71461021057806306fdde031461024b578063095ea7b3146102c85780630c56ae3b14610315575b600080fd5b6102496004803603604081101561022657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610669565b005b6102536107a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028d578181015183820152602001610275565b50505050905090810190601f1680156102ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610301600480360360408110156102de57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561085d565b604080519115158252519081900360200190f35b61031d61087b565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610249610897565b610356610945565b60408051918252519081900360200190f35b6103016004803603606081101561037e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561094b565b610249600480360360208110156103c157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109ec565b6103e6610ab9565b6040805160ff9092168252519081900360200190f35b6102496004803603604081101561041257600080fd5b50803590602001351515610ac2565b6103016004803603604081101561043757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e65565b6102496004803603602081101561047057600080fd5b5035610ec0565b610356610f4b565b61031d611019565b610356611035565b610356600480360360208110156104a557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661103b565b610356611063565b610249611084565b610249600480360360208110156104e857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611097565b610253611164565b6102496004803603604081101561052357600080fd5b508035906020013515156111e3565b6102496004803603602081101561054857600080fd5b503515156114f3565b6103016004803603604081101561056757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561159f565b610301600480360360408110156105a057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611614565b610249600480360360208110156105d957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611628565b6102496116f5565b6103566117c0565b610249611912565b6103566004803603604081101561062457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166119ec565b61031d611a24565b610356611a40565b61031d611a46565b610249611a67565b60085473ffffffffffffffffffffffffffffffffffffffff1633146106ef57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21636f6e74726f6c6c6572000000000000000000000000000000000000000000604482015290519081900360640190fd5b60055473ffffffffffffffffffffffffffffffffffffffff83811661010090920416141561077e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f746f6b656e000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6008546107a59073ffffffffffffffffffffffffffffffffffffffff848116911683611b0c565b5050565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b600061087161086a611b9e565b8484611ba2565b5060015b92915050565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60075473ffffffffffffffffffffffffffffffffffffffff16331461091d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b60095461094390309073ffffffffffffffffffffffffffffffffffffffff166000611ba2565b565b60025490565b6000610958848484611ce9565b6109e284610964611b9e565b6109dd8560405180606001604052806028815260200161280e6028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260408120906109af611b9e565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190611eb9565b611ba2565b5060019392505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610a7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460ff1690565b8015610be457600954604080517f4e2e7ec500000000000000000000000000000000000000000000000000000000815260048101859052336024820152905173ffffffffffffffffffffffffffffffffffffffff90921691634e2e7ec59160448082019260009290919082900301818387803b158015610b4157600080fd5b505af1158015610b55573d6000803e3d6000fd5b5050600954604080517f055de275000000000000000000000000000000000000000000000000000000008152336004820152905173ffffffffffffffffffffffffffffffffffffffff909216935063055de275925060248082019260009290919082900301818387803b158015610bcb57600080fd5b505af1158015610bdf573d6000803e3d6000fd5b505050505b6000610c09610bf1610945565b610c0385610bfd6117c0565b90611f6a565b90611fe4565b9050610c153384612026565b600554604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610c8b57600080fd5b505afa158015610c9f573d6000803e3d6000fd5b505050506040513d6020811015610cb557600080fd5b5051905081811015610e36576000610ccd8383612170565b600854600554604080517ff3fef3a300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff6101009093048316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b158015610d5257600080fd5b505af1158015610d66573d6000803e3d6000fd5b5050600554604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000945061010090920473ffffffffffffffffffffffffffffffffffffffff1692506370a08231916024808301926020929190829003018186803b158015610de157600080fd5b505afa158015610df5573d6000803e3d6000fd5b505050506040513d6020811015610e0b57600080fd5b505190506000610e1b8285612170565b905082811015610e3257610e2f84826121b2565b94505b5050505b600554610e5f90610100900473ffffffffffffffffffffffffffffffffffffffff163384611b0c565b50505050565b6000610871610e72611b9e565b846109dd8560016000610e83611b9e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c1681529252902054906121b2565b60075473ffffffffffffffffffffffffffffffffffffffff163314610f4657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600655565b6000611014612710610c03600654600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610fe257600080fd5b505afa158015610ff6573d6000803e3d6000fd5b505050506040513d602081101561100c57600080fd5b505190611f6a565b905090565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b61271081565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6000611014611070610945565b610c03670de0b6b3a7640000610bfd6117c0565b6109436110903361103b565b6000610ac2565b60075473ffffffffffffffffffffffffffffffffffffffff16331461111d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108535780601f1061082857610100808354040283529160200191610853565b60006111ed6117c0565b90506000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561127a57600080fd5b505afa15801561128e573d6000803e3d6000fd5b505050506040513d60208110156112a457600080fd5b50516005549091506112d390610100900473ffffffffffffffffffffffffffffffffffffffff16333087612226565b600554604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561134957600080fd5b505afa15801561135d573d6000803e3d6000fd5b505050506040513d602081101561137357600080fd5b505190506113818183612170565b9450600061138d610945565b6113985750846113b1565b6113ae84610c036113a7610945565b8990611f6a565b90505b84156114e1576113c130826122bb565b600954604080517f51746bb200000000000000000000000000000000000000000000000000000000815260048101849052336024820152905173ffffffffffffffffffffffffffffffffffffffff909216916351746bb29160448082019260009290919082900301818387803b15801561143a57600080fd5b505af115801561144e573d6000803e3d6000fd5b5050600954604080517f055de275000000000000000000000000000000000000000000000000000000008152336004820152905173ffffffffffffffffffffffffffffffffffffffff909216935063055de275925060248082019260009290919082900301818387803b1580156114c457600080fd5b505af11580156114d8573d6000803e3d6000fd5b505050506114eb565b6114eb33826122bb565b505050505050565b600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152905161159c92610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561156a57600080fd5b505afa15801561157e573d6000803e3d6000fd5b505050506040513d602081101561159457600080fd5b5051826111e3565b50565b60006108716115ac611b9e565b846109dd856040518060600160405280602581526020016128ca60259139600160006115d6611b9e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190611eb9565b6000610871611621611b9e565b8484611ce9565b60075473ffffffffffffffffffffffffffffffffffffffff1633146116ae57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff16331461177b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b60095461094390309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611ba2565b600854600554604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff6101009093048316600482015290516000936110149316916370a08231916024808301926020929190829003018186803b15801561183f57600080fd5b505afa158015611853573d6000803e3d6000fd5b505050506040513d602081101561186957600080fd5b5051600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905161010090920473ffffffffffffffffffffffffffffffffffffffff16916370a0823191602480820192602092909190829003018186803b1580156118e057600080fd5b505afa1580156118f4573d6000803e3d6000fd5b505050506040513d602081101561190a57600080fd5b5051906121b2565b600061191c610f4b565b60085460055491925061194e91610100900473ffffffffffffffffffffffffffffffffffffffff908116911683611b0c565b600854600554604080517fb02bf4b900000000000000000000000000000000000000000000000000000000815261010090920473ffffffffffffffffffffffffffffffffffffffff908116600484015260248301859052905192169163b02bf4b99160448082019260009290919082900301818387803b1580156119d157600080fd5b505af11580156119e5573d6000803e3d6000fd5b5050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1681565b600954604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290516109439273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015611ad957600080fd5b505afa158015611aed573d6000803e3d6000fd5b505050506040513d6020811015611b0357600080fd5b50516001610ac2565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611b999084906123ec565b505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611c0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061287c6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611c7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127a56022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128576025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611dc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806127606023913960400191505060405180910390fd5b611dcc838383611b99565b611e16816040518060600160405280602681526020016127c76026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611eb9565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054611e5290826121b2565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611f62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f27578181015183820152602001611f0f565b50505050905090810190601f168015611f545780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082611f7957506000610875565b82820282848281611f8657fe5b0414611fdd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127ed6021913960400191505060405180910390fd5b9392505050565b6000611fdd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124c4565b73ffffffffffffffffffffffffffffffffffffffff8216612092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128366021913960400191505060405180910390fd5b61209e82600083611b99565b6120e8816040518060600160405280602281526020016127836022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190611eb9565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205560025461211b9082612170565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000611fdd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611eb9565b600082820183811015611fdd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052610e5f9085906123ec565b73ffffffffffffffffffffffffffffffffffffffff821661233d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61234960008383611b99565b60025461235690826121b2565b60025573ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461238990826121b2565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b606061244e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125439092919063ffffffff16565b805190915015611b995780806020019051602081101561246d57600080fd5b5051611b99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128a0602a913960400191505060405180910390fd5b6000818361252d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315611f27578181015183820152602001611f0f565b50600083858161253957fe5b0495945050505050565b6060612552848460008561255a565b949350505050565b606061256585612726565b6125d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061263a57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016125fd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461269c576040519150601f19603f3d011682016040523d82523d6000602084013e6126a1565b606091505b509150915081156126b55791506125529050565b8051156126c55780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152865160248401528651879391928392604401919085019080838360008315611f27578181015183820152602001611f0f565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061255257505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bc767b1b6c8b735a0b65ab36b883704f200125a56a5f32c0c14d68d8a3fe1bd164736f6c634300060c00330000000000000000000000007ef1081ecc8b5b5b130656a41d4ce4f89dbbcc8c0000000000000000000000000b283b107f70d23250f882fbfe7216c38abbd7ca
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061020b5760003560e01c806377c7b8fc1161012a578063ab033ea9116100bd578063dd62ed3e1161008c578063f889794511610071578063f889794514610651578063fc0c546a14610659578063fef6e740146106615761020b565b8063dd62ed3e1461060e578063f77c4791146106495761020b565b8063ab033ea9146105c3578063b1c6c47e146105f6578063b69ef8a8146105fe578063d389800f146106065761020b565b80639a408321116100f95780639a4083211461050d5780639f4003a014610532578063a457c2d714610551578063a9059cbb1461058a5761020b565b806377c7b8fc146104c2578063853828b6146104ca57806392eefe9b146104d257806395d89b41146105055761020b565b8063313ce567116101a257806348a0d7541161017157806348a0d754146104775780635aa6e6751461047f5780636ac5db191461048757806370a082311461048f5761020b565b8063313ce567146103de57806338d07436146103fc578063395093511461042157806345dc3dd81461045a5761020b565b80630ef14cbc116101de5780630ef14cbc1461034657806318160ddd1461034e57806323b872dd146103685780633028f63a146103ab5761020b565b8063018ee9b71461021057806306fdde031461024b578063095ea7b3146102c85780630c56ae3b14610315575b600080fd5b6102496004803603604081101561022657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610669565b005b6102536107a9565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028d578181015183820152602001610275565b50505050905090810190601f1680156102ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610301600480360360408110156102de57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561085d565b604080519115158252519081900360200190f35b61031d61087b565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b610249610897565b610356610945565b60408051918252519081900360200190f35b6103016004803603606081101561037e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135909116906040013561094b565b610249600480360360208110156103c157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166109ec565b6103e6610ab9565b6040805160ff9092168252519081900360200190f35b6102496004803603604081101561041257600080fd5b50803590602001351515610ac2565b6103016004803603604081101561043757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610e65565b6102496004803603602081101561047057600080fd5b5035610ec0565b610356610f4b565b61031d611019565b610356611035565b610356600480360360208110156104a557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661103b565b610356611063565b610249611084565b610249600480360360208110156104e857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611097565b610253611164565b6102496004803603604081101561052357600080fd5b508035906020013515156111e3565b6102496004803603602081101561054857600080fd5b503515156114f3565b6103016004803603604081101561056757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813516906020013561159f565b610301600480360360408110156105a057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611614565b610249600480360360208110156105d957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611628565b6102496116f5565b6103566117c0565b610249611912565b6103566004803603604081101561062457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166119ec565b61031d611a24565b610356611a40565b61031d611a46565b610249611a67565b60085473ffffffffffffffffffffffffffffffffffffffff1633146106ef57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21636f6e74726f6c6c6572000000000000000000000000000000000000000000604482015290519081900360640190fd5b60055473ffffffffffffffffffffffffffffffffffffffff83811661010090920416141561077e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600560248201527f746f6b656e000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b6008546107a59073ffffffffffffffffffffffffffffffffffffffff848116911683611b0c565b5050565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b600061087161086a611b9e565b8484611ba2565b5060015b92915050565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60075473ffffffffffffffffffffffffffffffffffffffff16331461091d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b60095461094390309073ffffffffffffffffffffffffffffffffffffffff166000611ba2565b565b60025490565b6000610958848484611ce9565b6109e284610964611b9e565b6109dd8560405180606001604052806028815260200161280e6028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600160205260408120906109af611b9e565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190611eb9565b611ba2565b5060019392505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610a7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055460ff1690565b8015610be457600954604080517f4e2e7ec500000000000000000000000000000000000000000000000000000000815260048101859052336024820152905173ffffffffffffffffffffffffffffffffffffffff90921691634e2e7ec59160448082019260009290919082900301818387803b158015610b4157600080fd5b505af1158015610b55573d6000803e3d6000fd5b5050600954604080517f055de275000000000000000000000000000000000000000000000000000000008152336004820152905173ffffffffffffffffffffffffffffffffffffffff909216935063055de275925060248082019260009290919082900301818387803b158015610bcb57600080fd5b505af1158015610bdf573d6000803e3d6000fd5b505050505b6000610c09610bf1610945565b610c0385610bfd6117c0565b90611f6a565b90611fe4565b9050610c153384612026565b600554604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015610c8b57600080fd5b505afa158015610c9f573d6000803e3d6000fd5b505050506040513d6020811015610cb557600080fd5b5051905081811015610e36576000610ccd8383612170565b600854600554604080517ff3fef3a300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff6101009093048316600482015260248101859052905193945091169163f3fef3a39160448082019260009290919082900301818387803b158015610d5257600080fd5b505af1158015610d66573d6000803e3d6000fd5b5050600554604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516000945061010090920473ffffffffffffffffffffffffffffffffffffffff1692506370a08231916024808301926020929190829003018186803b158015610de157600080fd5b505afa158015610df5573d6000803e3d6000fd5b505050506040513d6020811015610e0b57600080fd5b505190506000610e1b8285612170565b905082811015610e3257610e2f84826121b2565b94505b5050505b600554610e5f90610100900473ffffffffffffffffffffffffffffffffffffffff163384611b0c565b50505050565b6000610871610e72611b9e565b846109dd8560016000610e83611b9e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c1681529252902054906121b2565b60075473ffffffffffffffffffffffffffffffffffffffff163314610f4657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600655565b6000611014612710610c03600654600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610fe257600080fd5b505afa158015610ff6573d6000803e3d6000fd5b505050506040513d602081101561100c57600080fd5b505190611f6a565b905090565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b61271081565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6000611014611070610945565b610c03670de0b6b3a7640000610bfd6117c0565b6109436110903361103b565b6000610ac2565b60075473ffffffffffffffffffffffffffffffffffffffff16331461111d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108535780601f1061082857610100808354040283529160200191610853565b60006111ed6117c0565b90506000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561127a57600080fd5b505afa15801561128e573d6000803e3d6000fd5b505050506040513d60208110156112a457600080fd5b50516005549091506112d390610100900473ffffffffffffffffffffffffffffffffffffffff16333087612226565b600554604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600092610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561134957600080fd5b505afa15801561135d573d6000803e3d6000fd5b505050506040513d602081101561137357600080fd5b505190506113818183612170565b9450600061138d610945565b6113985750846113b1565b6113ae84610c036113a7610945565b8990611f6a565b90505b84156114e1576113c130826122bb565b600954604080517f51746bb200000000000000000000000000000000000000000000000000000000815260048101849052336024820152905173ffffffffffffffffffffffffffffffffffffffff909216916351746bb29160448082019260009290919082900301818387803b15801561143a57600080fd5b505af115801561144e573d6000803e3d6000fd5b5050600954604080517f055de275000000000000000000000000000000000000000000000000000000008152336004820152905173ffffffffffffffffffffffffffffffffffffffff909216935063055de275925060248082019260009290919082900301818387803b1580156114c457600080fd5b505af11580156114d8573d6000803e3d6000fd5b505050506114eb565b6114eb33826122bb565b505050505050565b600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152905161159c92610100900473ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561156a57600080fd5b505afa15801561157e573d6000803e3d6000fd5b505050506040513d602081101561159457600080fd5b5051826111e3565b50565b60006108716115ac611b9e565b846109dd856040518060600160405280602581526020016128ca60259139600160006115d6611b9e565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190611eb9565b6000610871611621611b9e565b8484611ce9565b60075473ffffffffffffffffffffffffffffffffffffffff1633146116ae57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60075473ffffffffffffffffffffffffffffffffffffffff16331461177b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f21676f7665726e616e6365000000000000000000000000000000000000000000604482015290519081900360640190fd5b60095461094390309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611ba2565b600854600554604080517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff6101009093048316600482015290516000936110149316916370a08231916024808301926020929190829003018186803b15801561183f57600080fd5b505afa158015611853573d6000803e3d6000fd5b505050506040513d602081101561186957600080fd5b5051600554604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905161010090920473ffffffffffffffffffffffffffffffffffffffff16916370a0823191602480820192602092909190829003018186803b1580156118e057600080fd5b505afa1580156118f4573d6000803e3d6000fd5b505050506040513d602081101561190a57600080fd5b5051906121b2565b600061191c610f4b565b60085460055491925061194e91610100900473ffffffffffffffffffffffffffffffffffffffff908116911683611b0c565b600854600554604080517fb02bf4b900000000000000000000000000000000000000000000000000000000815261010090920473ffffffffffffffffffffffffffffffffffffffff908116600484015260248301859052905192169163b02bf4b99160448082019260009290919082900301818387803b1580156119d157600080fd5b505af11580156119e5573d6000803e3d6000fd5b5050505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1681565b600954604080517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015290516109439273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b158015611ad957600080fd5b505afa158015611aed573d6000803e3d6000fd5b505050506040513d6020811015611b0357600080fd5b50516001610ac2565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611b999084906123ec565b505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316611c0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061287c6024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611c7a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806127a56022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316611d55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806128576025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611dc1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806127606023913960400191505060405180910390fd5b611dcc838383611b99565b611e16816040518060600160405280602681526020016127c76026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190611eb9565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054611e5290826121b2565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611f62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f27578181015183820152602001611f0f565b50505050905090810190601f168015611f545780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082611f7957506000610875565b82820282848281611f8657fe5b0414611fdd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806127ed6021913960400191505060405180910390fd5b9392505050565b6000611fdd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124c4565b73ffffffffffffffffffffffffffffffffffffffff8216612092576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806128366021913960400191505060405180910390fd5b61209e82600083611b99565b6120e8816040518060600160405280602281526020016127836022913973ffffffffffffffffffffffffffffffffffffffff85166000908152602081905260409020549190611eb9565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205560025461211b9082612170565b60025560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000611fdd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611eb9565b600082820183811015611fdd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd00000000000000000000000000000000000000000000000000000000179052610e5f9085906123ec565b73ffffffffffffffffffffffffffffffffffffffff821661233d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61234960008383611b99565b60025461235690826121b2565b60025573ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205461238990826121b2565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b606061244e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125439092919063ffffffff16565b805190915015611b995780806020019051602081101561246d57600080fd5b5051611b99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806128a0602a913960400191505060405180910390fd5b6000818361252d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315611f27578181015183820152602001611f0f565b50600083858161253957fe5b0495945050505050565b6060612552848460008561255a565b949350505050565b606061256585612726565b6125d057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061263a57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016125fd565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461269c576040519150601f19603f3d011682016040523d82523d6000602084013e6126a1565b606091505b509150915081156126b55791506125529050565b8051156126c55780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152865160248401528651879391928392604401919085019080838360008315611f27578181015183820152602001611f0f565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061255257505015159291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bc767b1b6c8b735a0b65ab36b883704f200125a56a5f32c0c14d68d8a3fe1bd164736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007ef1081ecc8b5b5b130656a41d4ce4f89dbbcc8c0000000000000000000000000b283b107f70d23250f882fbfe7216c38abbd7ca
-----Decoded View---------------
Arg [0] : _token (address): 0x7Ef1081Ecc8b5B5B130656a41d4cE4f89dBBCC8c
Arg [1] : _controller (address): 0x0b283B107F70d23250f882fbfe7216C38abBd7cA
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007ef1081ecc8b5b5b130656a41d4ce4f89dbbcc8c
Arg [1] : 0000000000000000000000000b283b107f70d23250f882fbfe7216c38abbd7ca
Deployed Bytecode Sourcemap
35497:183:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35123:236;;;;;;;;;;;;;;;;-1:-1:-1;35123:236:0;;;;;;;;;:::i;:::-;;20856:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22962:169;;;;;;;;;;;;;;;;-1:-1:-1;22962:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30689:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32172:167;;;:::i;21931:100::-;;;:::i;:::-;;;;;;;;;;;;;;;;23605:321;;;;;;;;;;;;;;;;-1:-1:-1;23605:321:0;;;;;;;;;;;;;;;;;;:::i;31830:157::-;;;;;;;;;;;;;;;;-1:-1:-1;31830:157:0;;;;:::i;21783:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34174:855;;;;;;;;;;;;;;;;-1:-1:-1;34174:855:0;;;;;;;;;:::i;24335:218::-;;;;;;;;;;;;;;;;-1:-1:-1;24335:218:0;;;;;;;;;:::i;31376:124::-;;;;;;;;;;;;;;;;-1:-1:-1;31376:124:0;;:::i;32491:122::-;;;:::i;30625:25::-;;;:::i;30584:32::-;;;:::i;22094:119::-;;;;;;;;;;;;;;;;-1:-1:-1;22094:119:0;;;;:::i;35367:123::-;;;:::i;33870:89::-;;;:::i;31669:153::-;;;;;;;;;;;;;;;;-1:-1:-1;31669:153:0;;;;:::i;21058:87::-;;;:::i;33011:851::-;;;;;;;;;;;;;;;;-1:-1:-1;33011:851:0;;;;;;;;;:::i;32864:139::-;;;;;;;;;;;;;;;;-1:-1:-1;32864:139:0;;;;:::i;25056:269::-;;;;;;;;;;;;;;;;-1:-1:-1;25056:269:0;;;;;;;;;:::i;22426:175::-;;;;;;;;;;;;;;;;-1:-1:-1;22426:175:0;;;;;;;;;:::i;31508:153::-;;;;;;;;;;;;;;;;-1:-1:-1;31508:153:0;;;;:::i;31995:169::-;;;:::i;31193:175::-;;;:::i;32683:173::-;;;:::i;22664:151::-;;;;;;;;;;;;;;;;-1:-1:-1;22664:151:0;;;;;;;;;;;:::i;30657:25::-;;;:::i;30555:22::-;;;:::i;30527:19::-;;;:::i;33967:131::-;;;:::i;35123:236::-;35212:10;;;;35198;:24;35190:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35276:5;;;35257:25;;;35276:5;;;;;35257:25;;35249:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35332:10;;35303:48;;35332:10;35303:28;;;;35332:10;35344:6;35303:28;:48::i;:::-;35123:236;;:::o;20856:83::-;20926:5;20919:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20893:13;;20919:12;;20926:5;;20919:12;;20926:5;20919:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20856:83;:::o;22962:169::-;23045:4;23062:39;23071:12;:10;:12::i;:::-;23085:7;23094:6;23062:8;:39::i;:::-;-1:-1:-1;23119:4:0;22962:169;;;;;:::o;30689:26::-;;;;;;:::o;32172:167::-;32249:10;;;;32235;:24;32227:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32310:11;;32286:45;;32303:4;;32310:11;;;32286:8;:45::i;:::-;32172:167::o;21931:100::-;22011:12;;21931:100;:::o;23605:321::-;23711:4;23728:36;23738:6;23746:9;23757:6;23728:9;:36::i;:::-;23775:121;23784:6;23792:12;:10;:12::i;:::-;23806:89;23844:6;23806:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;23826:12;:10;:12::i;:::-;23806:33;;;;;;;;;;;;;-1:-1:-1;23806:33:0;;;:89;:37;:89::i;:::-;23775:8;:121::i;:::-;-1:-1:-1;23914:4:0;23605:321;;;;;:::o;31830:157::-;31916:10;;;;31902;:24;31894:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31953:11;:26;;;;;;;;;;;;;;;31830:157::o;21783:83::-;21849:9;;;;21783:83;:::o;34174:855::-;34263:28;34259:202;;;34324:11;;34308:73;;;;;;;;;;;;34370:10;34308:73;;;;;;34324:11;;;;;34308:52;;:73;;;;;34324:11;;34308:73;;;;;;;;34324:11;;34308:73;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34412:11:0;;34396:53;;;;;;34438:10;34396:53;;;;;;34412:11;;;;;-1:-1:-1;34396:41:0;;-1:-1:-1;34396:53:0;;;;;34412:11;;34396:53;;;;;;;;34412:11;;34396:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34259:202;34473:6;34482:43;34511:13;:11;:13::i;:::-;34483:22;34497:7;34483:9;:7;:9::i;:::-;:13;;:22::i;:::-;34482:28;;:43::i;:::-;34473:52;;34536:26;34542:10;34554:7;34536:5;:26::i;:::-;34610:5;;:30;;;;;;34634:4;34610:30;;;;;;-1:-1:-1;;34610:5:0;;;;;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34610:30:0;;-1:-1:-1;34655:5:0;;;34651:325;;;34677:14;34694:8;:1;34700;34694:5;:8::i;:::-;34729:10;;34758:5;;34717:59;;;;;;34729:10;;34758:5;;;;;34717:59;;;;;;;;;;;;;;-1:-1:-1;34729:10:0;;;34717:32;;:59;;;;;-1:-1:-1;;34717:59:0;;;;;;;;-1:-1:-1;34729:10:0;34717:59;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34805:5:0;;:30;;;;;;34829:4;34805:30;;;;;;-1:-1:-1;;;34805:5:0;;;;;;;-1:-1:-1;34805:15:0;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34805:30:0;;-1:-1:-1;34850:10:0;34863:13;34805:30;34874:1;34863:10;:13::i;:::-;34850:26;;34903:9;34895:5;:17;34891:74;;;34937:12;:1;34943:5;34937;:12::i;:::-;34933:16;;34891:74;34651:325;;;;34988:5;;:33;;:5;;;;;35007:10;35019:1;34988:18;:33::i;:::-;34174:855;;;;:::o;24335:218::-;24423:4;24440:83;24449:12;:10;:12::i;:::-;24463:7;24472:50;24511:10;24472:11;:25;24484:12;:10;:12::i;:::-;24472:25;;;;;;;;;;;;;;;;;;-1:-1:-1;24472:25:0;;;:34;;;;;;;;;;;:38;:50::i;31376:124::-;31445:10;;;;31431;:24;31423:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31482:3;:10;31376:124::o;32491:122::-;32533:4;32557:48;30611:5;32557:39;32592:3;;32557:5;;;;;;;;;;;:15;;;32581:4;32557:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32557:30:0;;:34;:39::i;:48::-;32550:55;;32491:122;:::o;30625:25::-;;;;;;:::o;30584:32::-;30611:5;30584:32;:::o;22094:119::-;22187:18;;22160:7;22187:18;;;;;;;;;;;;22094:119::o;35367:123::-;35420:4;35444:38;35468:13;:11;:13::i;:::-;35444:19;35458:4;35444:9;:7;:9::i;33870:89::-;33913:38;33922:21;33932:10;33922:9;:21::i;:::-;33945:5;33913:8;:38::i;31669:153::-;31753:10;;;;31739;:24;31731:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31790:10;:24;;;;;;;;;;;;;;;31669:153::o;21058:87::-;21130:7;21123:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21097:13;;21123:14;;21130:7;;21123:14;;21130:7;21123:14;;;;;;;;;;;;;;;;;;;;;;;;33011:851;33090:10;33103:9;:7;:9::i;:::-;33090:22;;33123:12;33138:5;;;;;;;;;;;:15;;;33162:4;33138:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33138:30:0;33179:5;;33138:30;;-1:-1:-1;33179:58:0;;:5;;;;;33202:10;33222:4;33229:7;33179:22;:58::i;:::-;33262:5;;:30;;;;;;33286:4;33262:30;;;;;;-1:-1:-1;;33262:5:0;;;;;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33262:30:0;;-1:-1:-1;33313:19:0;33262:30;33324:7;33313:10;:19::i;:::-;33303:29;;33387:11;33417:13;:11;:13::i;:::-;33413:148;;-1:-1:-1;33461:7:0;33413:148;;;33510:39;33543:5;33511:26;33523:13;:11;:13::i;:::-;33511:7;;:11;:26::i;33510:39::-;33501:48;;33413:148;33577:23;33573:282;;;33617:28;33631:4;33638:6;33617:5;:28::i;:::-;33676:11;;33660:57;;;;;;;;;;;;33706:10;33660:57;;;;;;33676:11;;;;;33660:37;;:57;;;;;33676:11;;33660:57;;;;;;;;33676:11;;33660:57;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33748:11:0;;33732:53;;;;;;33774:10;33732:53;;;;;;33748:11;;;;;-1:-1:-1;33732:41:0;;-1:-1:-1;33732:53:0;;;;;33748:11;;33732:53;;;;;;;;33748:11;;33732:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33573:282;;;33818:25;33824:10;33836:6;33818:5;:25::i;:::-;33011:851;;;;;;:::o;32864:139::-;32942:5;;:27;;;;;;32958:10;32942:27;;;;;;32934:61;;32942:5;;;;;;:15;;:27;;;;;;;;;;;;;;:5;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32942:27:0;32971:23;32934:7;:61::i;:::-;32864:139;:::o;25056:269::-;25149:4;25166:129;25175:12;:10;:12::i;:::-;25189:7;25198:96;25237:15;25198:96;;;;;;;;;;;;;;;;;:11;:25;25210:12;:10;:12::i;:::-;25198:25;;;;;;;;;;;;;;;;;;-1:-1:-1;25198:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;22426:175::-;22512:4;22529:42;22539:12;:10;:12::i;:::-;22553:9;22564:6;22529:9;:42::i;31508:153::-;31592:10;;;;31578;:24;31570:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31629:10;:24;;;;;;;;;;;;;;;31508:153::o;31995:169::-;32073:10;;;;32059;:24;32051:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32134:11;;32110:46;;32127:4;;32134:11;;32152:2;32110:8;:46::i;31193:175::-;31322:10;;31352:5;;31310:49;;;;;;31322:10;;31352:5;;;;;31310:49;;;;;;-1:-1:-1;;31257:103:0;;31322:10;;31310:33;;:49;;;;;;;;;;;;;;31322:10;31310:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31310:49:0;31257:5;;:30;;;;;;31281:4;31257:30;;;;;;:5;;;;;;;:15;;:30;;;;;31310:49;;31257:30;;;;;;;;:5;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31257:30:0;;:52;:103::i;32683:173::-;32717:9;32729:11;:9;:11::i;:::-;32770:10;;32751:5;;32717:23;;-1:-1:-1;32751:36:0;;32770:10;32751:5;;32770:10;32751:5;;;;32770:10;32717:23;32751:18;:36::i;:::-;32810:10;;32835:5;;32798:50;;;;;;32810:10;32835:5;;;32810:10;32835:5;;;32798:50;;;;;;;;;;;;32810:10;;;32798:28;;:50;;;;;32810:10;;32798:50;;;;;;;;32810:10;;32798:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32683:173;:::o;22664:151::-;22780:18;;;;22753:7;22780:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22664:151::o;30657:25::-;;;;;;:::o;30555:22::-;;;;:::o;30527:19::-;;;;;;;;;:::o;33967:131::-;34049:11;;34033:50;;;;;;34072:10;34033:50;;;;;;34024:66;;34049:11;;;34033:38;;:50;;;;;;;;;;;;;;34049:11;34033:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34033:50:0;34085:4;34024:8;:66::i;14793:177::-;14903:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14926:23;14903:58;;;14876:86;;14896:5;;14876:19;:86::i;:::-;14793:177;;;:::o;18409:106::-;18497:10;18409:106;:::o;28203:346::-;28305:19;;;28297:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28384:21;;;28376:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28457:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28509:32;;;;;;;;;;;;;;;;;28203:346;;;:::o;25815:539::-;25921:20;;;25913:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26002:23;;;25994:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26078:47;26099:6;26107:9;26118:6;26078:20;:47::i;:::-;26158:71;26180:6;26158:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;26138:17;;;;:9;:17;;;;;;;;;;;:91;;;;26263:20;;;;;;;:32;;26288:6;26263:24;:32::i;:::-;26240:20;;;;:9;:20;;;;;;;;;;;;:55;;;;26311:35;;;;;;;26240:20;;26311:35;;;;;;;;;;;;;25815:539;;;:::o;4518:192::-;4604:7;4640:12;4632:6;;;;4624:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4676:5:0;;;4518:192::o;4969:471::-;5027:7;5272:6;5268:47;;-1:-1:-1;5302:1:0;5295:8;;5268:47;5339:5;;;5343:1;5339;:5;:1;5363:5;;;;;:10;5355:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5431:1;4969:471;-1:-1:-1;;;4969:471:0:o;5916:132::-;5974:7;6001:39;6005:1;6008;6001:39;;;;;;;;;;;;;;;;;:3;:39::i;27345:418::-;27429:21;;;27421:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27501:49;27522:7;27539:1;27543:6;27501:20;:49::i;:::-;27584:68;27607:6;27584:68;;;;;;;;;;;;;;;;;:18;;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;27563:18;;;:9;:18;;;;;;;;;;:89;27678:12;;:24;;27695:6;27678:16;:24::i;:::-;27663:12;:39;27718:37;;;;;;;;27744:1;;27718:37;;;;;;;;;;;;;27345:418;;:::o;4079:136::-;4137:7;4164:43;4168:1;4171;4164:43;;;;;;;;;;;;;;;;;:3;:43::i;3615:181::-;3673:7;3705:5;;;3729:6;;;;3721:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14978:205;15106:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15129:27;15106:68;;;15079:96;;15099:5;;15079:19;:96::i;26635:378::-;26719:21;;;26711:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26789:49;26818:1;26822:7;26831:6;26789:20;:49::i;:::-;26866:12;;:24;;26883:6;26866:16;:24::i;:::-;26851:12;:39;26922:18;;;:9;:18;;;;;;;;;;;:30;;26945:6;26922:22;:30::i;:::-;26901:18;;;:9;:18;;;;;;;;;;;:51;;;;26968:37;;;;;;;26901:18;;:9;;26968:37;;;;;;;;;;26635:378;;:::o;17098:761::-;17522:23;17548:69;17576:4;17548:69;;;;;;;;;;;;;;;;;17556:5;17548:27;;;;:69;;;;;:::i;:::-;17632:17;;17522:95;;-1:-1:-1;17632:21:0;17628:224;;17774:10;17763:30;;;;;;;;;;;;;;;-1:-1:-1;17763:30:0;17755:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6544:278;6630:7;6665:12;6658:5;6650:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6689:9;6705:1;6701;:5;;;;;;;6544:278;-1:-1:-1;;;;;6544:278:0:o;11871:196::-;11974:12;12006:53;12029:6;12037:4;12043:1;12046:12;12006:22;:53::i;:::-;11999:60;11871:196;-1:-1:-1;;;;11871:196:0:o;13248:979::-;13378:12;13411:18;13422:6;13411:10;:18::i;:::-;13403:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13537:12;13551:23;13578:6;:11;;13598:8;13609:4;13578:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13536:78;;;;13629:7;13625:595;;;13660:10;-1:-1:-1;13653:17:0;;-1:-1:-1;13653:17:0;13625:595;13774:17;;:21;13770:439;;14037:10;14031:17;14098:15;14085:10;14081:2;14077:19;14070:44;13985:148;14173:20;;;;;;;;;;;;;;;;;;;;14180:12;;14173:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8756:619;8816:4;9284:20;;9127:66;9324:23;;;;;;:42;;-1:-1:-1;;9351:15:0;;;9316:51;-1:-1:-1;;8756:619:0:o
Swarm Source
ipfs://bc767b1b6c8b735a0b65ab36b883704f200125a56a5f32c0c14d68d8a3fe1bd1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.126744 | 30.4372 | $3.86 |
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.