More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 7,915 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 17235208 | 619 days ago | IN | 0 ETH | 0.02429238 | ||||
Claim | 17228111 | 620 days ago | IN | 0 ETH | 0.01563145 | ||||
Claim | 17220989 | 621 days ago | IN | 0 ETH | 0.01790231 | ||||
Claim | 17213872 | 622 days ago | IN | 0 ETH | 0.02227003 | ||||
Claim | 17206750 | 623 days ago | IN | 0 ETH | 0.02333965 | ||||
Claim | 17199646 | 624 days ago | IN | 0 ETH | 0.03085748 | ||||
Claim | 17192525 | 625 days ago | IN | 0 ETH | 0.02386427 | ||||
Claim | 17185408 | 626 days ago | IN | 0 ETH | 0.0156926 | ||||
Claim | 17178302 | 627 days ago | IN | 0 ETH | 0.01695205 | ||||
Claim | 17171192 | 628 days ago | IN | 0 ETH | 0.01838312 | ||||
Claim | 17164076 | 629 days ago | IN | 0 ETH | 0.0155174 | ||||
Claim | 17156960 | 630 days ago | IN | 0 ETH | 0.01042071 | ||||
Claim | 17149850 | 631 days ago | IN | 0 ETH | 0.01008642 | ||||
Claim | 17142721 | 632 days ago | IN | 0 ETH | 0.01027259 | ||||
Claim | 17135614 | 633 days ago | IN | 0 ETH | 0.00924649 | ||||
Claim | 17128500 | 634 days ago | IN | 0 ETH | 0.01091412 | ||||
Claim | 17121378 | 635 days ago | IN | 0 ETH | 0.01166257 | ||||
Claim | 17114242 | 636 days ago | IN | 0 ETH | 0.01026159 | ||||
Claim | 17107092 | 637 days ago | IN | 0 ETH | 0.01072006 | ||||
Claim | 17099962 | 638 days ago | IN | 0 ETH | 0.00913515 | ||||
Claim | 17092852 | 639 days ago | IN | 0 ETH | 0.01214254 | ||||
Claim | 17085830 | 640 days ago | IN | 0 ETH | 0.02286371 | ||||
Claim | 17078758 | 641 days ago | IN | 0 ETH | 0.01634607 | ||||
Claim | 17071676 | 642 days ago | IN | 0 ETH | 0.01126352 | ||||
Claim | 17064605 | 643 days ago | IN | 0 ETH | 0.00786219 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
CompoundRewardToken
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-03-26 */ // SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.6.12; // /** * @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 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 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 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); } } } } // /** * @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 { } } // /** * @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"); } } } // interface ICToken { /// @notice Contract which oversees inter-cToken operations function comptroller() external view returns (IComptroller); /** * @notice Sender supplies assets into the market and receives cTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param mintAmount The amount of the underlying asset to supply * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function mint(uint mintAmount) external returns (uint); /** * @notice Sender redeems cTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to redeem * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlying(uint redeemAmount) external returns (uint); /** * @notice Get the underlying balance of the `owner` * @dev This also accrues interest in a transaction * @param owner The address of the account to query * @return The amount of underlying owned by `owner` */ function balanceOfUnderlying(address owner) external returns (uint); /** * @notice Get the token balance of the `owner` * @param owner The address of the account to query * @return The number of tokens owned by `owner` */ function balanceOf(address owner) external view returns (uint); /** * @notice Returns the current per-block borrow interest rate for this cToken * @return The borrow interest rate per block, scaled by 1e18 */ function borrowRatePerBlock() external view returns (uint); /** * @notice Returns the current per-block supply interest rate for this cToken * @return The supply interest rate per block, scaled by 1e18 */ function supplyRatePerBlock() external view returns (uint); /** * @notice Calculates the exchange rate from the underlying to the CToken * @dev This function does not accrue interest before calculating the exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateStored() external view returns (uint256); /** * @notice Get the total number of tokens in circulation * @return The supply of tokens */ function totalSupply() external view returns (uint256); /// @notice Underlying asset for this CToken function underlying() external view returns (address); } interface IComptroller { /// @notice The COMP accrued but not yet transferred to each user function compAccrued(address holder) external view returns (uint256); /** * @notice Claim all the comp accrued by holder in all markets * @param holder The address to claim COMP for */ function claimComp(address holder) external; /** * @notice Claim all the comp accrued by holder in the specified markets * @param holder The address to claim COMP for * @param cTokens The list of markets to claim COMP in */ function claimComp(address holder, ICToken[] memory cTokens) external; /** * @notice Claim all comp accrued by the holders * @param holders The addresses to claim COMP for * @param cTokens The list of markets to claim COMP in * @param borrowers Whether or not to claim COMP earned by borrowing * @param suppliers Whether or not to claim COMP earned by supplying */ function claimComp(address[] memory holders, ICToken[] memory cTokens, bool borrowers, bool suppliers) external; /// @notice The portion of compRate that each market currently receives function compSpeeds(address cToken) external view returns (uint256); /** * @notice Return the address of the COMP token * @return The address of COMP */ function getCompAddress() external view returns (address); } // interface IContinuousRewardToken { /// @notice Emitted when a user supplies underlying token event Supply(address indexed sender, address indexed receiver, uint256 amount); /// @notice Emitted when a CRT token holder redeems balance event Redeem(address indexed sender, address indexed receiver, uint256 amount); /// @notice Emitted when current or previous reward owners claim their rewards event Claim(address indexed sender, address indexed receiver, address indexed rewardToken, uint256 amount); /// @notice Emitted when an admin changes current reward owner event DelegateUpdated(address indexed oldDelegate, address indexed newDelegate); /// @notice Emitted when an admin role is transferred by current admin event AdminTransferred(address indexed oldAdmin, address indexed newAdmin); /** * @notice The address of underlying token * @return underlying token */ function underlying() external view returns (address); /** * @notice Reward tokens that may be accrued as rewards * @return Exhaustive list of all reward token addresses */ function rewardTokens() external view returns (address[] memory); /** * @notice Balance of accrued reward token for account * @param rewardToken Reward token address * @return Balance of accrued reward token for account */ function balanceOfReward(address rewardToken, address account) external view returns (uint256); /** * @notice Annual Percentage Reward for the specific reward token. Measured in relation to the base units of the underlying asset vs base units of the accrued reward token. * @param rewardToken Reward token address * @return APY times 10^18 */ function rate(address rewardToken) external view returns (uint256); /** * @notice Supply a specified amount of underlying tokens and receive back an equivalent quantity of CB-CR-XX-XX tokens * @param receiver Account to credit CB-CR-XX-XX tokens to * @param amount Amount of underlying token to supply */ function supply( address receiver, uint256 amount ) external; /** * @notice Redeem a specified amount of underlying tokens by burning an equivalent quantity of CB-CR-XX-XX tokens. Does not redeem reward tokens * @param receiver Account to credit underlying tokens to * @param amount Amount of underlying token to redeem */ function redeem( address receiver, uint256 amount ) external; /** * @notice Claim accrued reward in one or reward tokens * @dev All params must have the same array length * @param receivers List of accounts to credit claimed tokens to * @param tokens Reward token addresses * @param amounts Amounts of each reward token to claim */ function claim( address[] memory receivers, address[] memory tokens, uint256[] memory amounts ) external; /** * @notice Atomic redeem and claim in a single transaction * @dev receivers.length[0] corresponds to the address that the underlying token is redeemed to. receivers.length[1:n-1] hold the to addresses for the reward tokens respectively. * @param receivers List of accounts to credit tokens to * @param amounts List of amounts to credit * @param claimTokens Reward token addresses */ function redeemAndClaim( address[] calldata receivers, uint256[] calldata amounts, address[] calldata claimTokens ) external; /** * @notice Snapshots reward owner balance and update reward owner address * @dev Only callable by admin * @param newDelegate New reward owner address */ function updateDelegate(address newDelegate) external; /** * @notice Get the current delegate (receiver of rewards) * @return the address of the current delegate */ function delegate() external view returns (address); /** * @notice Get the current admin * @return the address of the current admin */ function admin() external view returns (address); /** * @notice Updates the admin address * @dev Only callable by admin * @param newAdmin New admin address */ function transferAdmin(address newAdmin) external; } // /** * @title ContinuousRewardToken contract * @notice ERC20 token which wraps underlying protocol rewards * @author */ abstract contract ContinuousRewardToken is ERC20, IContinuousRewardToken { using SafeMath for uint256; using SafeERC20 for IERC20; /// @notice The address of underlying token address public override underlying; /// @notice The admin of reward token address public override admin; /// @notice The current owner of all rewards address public override delegate; /// @notice Unclaimed rewards of all previous owners: reward token => (owner => amount) mapping(address => mapping(address => uint256)) public unclaimedRewards; /// @notice Total amount of unclaimed rewards: (reward token => amount) mapping(address => uint256) public totalUnclaimedRewards; /** * @notice Construct a new Continuous reward token * @param _underlying The address of underlying token * @param _delegate The address of reward owner */ constructor(address _underlying, address _delegate) public { admin = msg.sender; require(_underlying != address(0), "ContinuousRewardToken: invalid underlying address"); require(_delegate != address(0), "ContinuousRewardToken: invalid delegate address"); delegate = _delegate; underlying = _underlying; } /** * @notice Supply a specified amount of underlying tokens and receive back an equivalent quantity of CB-CR-XX-XX tokens * @param receiver Account to credit CB-CR-XX-XX tokens to * @param amount Amount of underlying token to supply */ function supply(address receiver, uint256 amount) override external { IERC20(underlying).safeTransferFrom(msg.sender, address(this), amount); _mint(receiver, amount); _supply(amount); emit Supply(msg.sender, receiver, amount); } function _supply(uint256 amount) virtual internal; /** * @notice Reward tokens that may be accrued as rewards * @return Exhaustive list of all reward token addresses */ function rewardTokens() override external view returns (address[] memory) { return _rewardTokens(); } function _rewardTokens() virtual internal view returns (address[] memory); /** * @notice Amount of reward for the given reward token * @param rewardToken The address of reward token * @param account The account for which reward balance is checked * @return reward balance of token the specified account has */ function balanceOfReward(address rewardToken, address account) override public view returns (uint256) { if (account == delegate) { return _balanceOfReward(rewardToken).sub(totalUnclaimedRewards[rewardToken]); } return unclaimedRewards[rewardToken][account]; } function _balanceOfReward(address rewardToken) virtual internal view returns (uint256); /** * @notice Redeem a specified amount of underlying tokens by burning an equivalent quantity of CB-CR-XX-XX tokens. Does not redeem reward tokens * @param receiver Account to credit underlying tokens to * @param amount Amount of underlying token to redeem */ function redeem( address receiver, uint256 amount ) override public { _burn(msg.sender, amount); _redeem(amount); IERC20(underlying).safeTransfer(receiver, amount); emit Redeem(msg.sender, receiver, amount); } function _redeem(uint256 amount) virtual internal; /** * @notice Claim accrued reward in one or more reward tokens * @dev All params must have the same array length * @param receivers List of accounts to credit claimed tokens to * @param tokens Reward token addresses * @param amounts Amounts of each reward token to claim */ function claim( address[] calldata receivers, address[] calldata tokens, uint256[] calldata amounts ) override public { require(receivers.length == tokens.length && receivers.length == amounts.length, "ContinuousRewardToken: lengths dont match"); for (uint256 i = 0; i < receivers.length; i++) { address receiver = receivers[i]; address claimToken = tokens[i]; uint256 amount = amounts[i]; uint256 rewardBalance = balanceOfReward(claimToken, msg.sender); uint256 claimAmount = amount == uint256(-1) ? rewardBalance : amount; require(rewardBalance >= claimAmount, "ContinuousRewardToken: insufficient claimable"); // If caller is one of previous owners, update unclaimed rewards data if (msg.sender != delegate) { unclaimedRewards[claimToken][msg.sender] = rewardBalance.sub(claimAmount); totalUnclaimedRewards[claimToken] = totalUnclaimedRewards[claimToken].sub(claimAmount); } _claim(claimToken, claimAmount); IERC20(claimToken).safeTransfer(receiver, claimAmount); emit Claim(msg.sender, receiver, claimToken, claimAmount); } } function _claim(address claimToken, uint256 amount) virtual internal; /** * @notice Atomic redeem and claim in a single transaction * @dev receivers[0] corresponds to the address that the underlying token is redeemed to. receivers[1:n-1] hold the to addresses for the reward tokens respectively. * @param receivers List of accounts to credit tokens to * @param amounts List of amounts to credit * @param claimTokens Reward token addresses */ function redeemAndClaim( address[] calldata receivers, uint256[] calldata amounts, address[] calldata claimTokens ) override external { redeem(receivers[0], amounts[0]); claim(receivers[1:], claimTokens, amounts[1:]); } /** * @notice Updates reward owner address * @dev Only callable by admin * @param newDelegate New reward owner address */ function updateDelegate(address newDelegate) override external onlyAdmin { require(newDelegate != delegate, "ContinuousRewardToken: new reward owner is the same as old one"); require(newDelegate != address(0), "ContinuousRewardToken: invalid new delegate address"); address oldDelegate = delegate; address[] memory allRewardTokens = _rewardTokens(); for (uint256 i = 0; i < allRewardTokens.length; i++) { address rewardToken = allRewardTokens[i]; uint256 rewardBalance = balanceOfReward(rewardToken, oldDelegate); unclaimedRewards[rewardToken][oldDelegate] = rewardBalance; totalUnclaimedRewards[rewardToken] = totalUnclaimedRewards[rewardToken].add(rewardBalance); // If new owner used to be reward owner in the past, transfer back his unclaimed rewards to himself uint256 prevBalance = unclaimedRewards[rewardToken][newDelegate]; if (prevBalance > 0) { unclaimedRewards[rewardToken][newDelegate] = 0; totalUnclaimedRewards[rewardToken] = totalUnclaimedRewards[rewardToken].sub(prevBalance); } } delegate = newDelegate; emit DelegateUpdated(oldDelegate, newDelegate); } /** * @notice Updates the admin address * @dev Only callable by admin * @param newAdmin New admin address */ function transferAdmin(address newAdmin) override external onlyAdmin { require(newAdmin != admin, "ContinuousRewardToken: new admin is the same as old one"); address previousAdmin = admin; admin = newAdmin; emit AdminTransferred(previousAdmin, newAdmin); } modifier onlyAdmin { require(msg.sender == admin, "ContinuousRewardToken: not an admin"); _; } } // /** * @title CompoundRewardToken contract * @notice ERC20 token which wraps Compound underlying and COMP rewards * @author */ contract CompoundRewardToken is ContinuousRewardToken { using SafeMath for uint256; using SafeERC20 for IERC20; uint256 constant private BASE = 1e18; uint256 constant private DAYS_PER_YEAR = 365; uint256 constant private BLOCKS_PER_DAY = 5760;// at a rate of 15 seconds per block, https://github.com/compound-finance/compound-protocol/blob/23eac9425accafb82551777c93896ee7678a85a3/contracts/JumpRateModel.sol#L18 uint256 constant private BLOCKS_PER_YEAR = BLOCKS_PER_DAY * DAYS_PER_YEAR; /// @notice The address of cToken contract ICToken public cToken; /// @notice The address of COMP token address public comp; /** * @notice Construct a new Compound reward token * @param name ERC-20 name of this token * @param symbol ERC-20 symbol of this token * @param _cToken The address of cToken contract * @param delegate The address of reward owner */ constructor( string memory name, string memory symbol, ICToken _cToken, address delegate ) ERC20(name, symbol) ContinuousRewardToken(_cToken.underlying(), delegate) public { cToken = _cToken; comp = cToken.comptroller().getCompAddress(); // This contract doesn't support cComp or cEther, use special case contract for them require(underlying != comp, "CompoundRewardToken: does not support cComp usecase"); IERC20(underlying).approve(address(cToken), uint256(-1)); } function _rewardTokens() override internal view returns (address[] memory) { address[] memory tokens = new address[](2); (tokens[0], tokens[1]) = (underlying, comp); return tokens; } function _balanceOfReward(address rewardToken) override internal view returns (uint256) { require(rewardToken == underlying || rewardToken == comp, "CompoundRewardToken: not reward token"); if (rewardToken == underlying) { // get the value of this contract's cTokens in the underlying, and subtract total CRT mint amount to get interest uint256 underlyingBalance = balanceOfCTokenUnderlying(address(this)); uint256 totalSupply = totalSupply(); // Due to rounding errors, it is possible the total supply is greater than the underlying balance by 1 wei, return 0 in this case // This is a transient case which will resolve itself once rewards are earned return totalSupply > underlyingBalance ? 0 : underlyingBalance.sub(totalSupply); } else { return getCompRewards(); } } /** * @notice Annual Percentage Reward for the specific reward token. Measured in relation to the base units of the underlying asset vs base units of the accrued reward token. * @param rewardToken Reward token address * @dev Underlying asset rate is an APY, Comp rate is an APR * @return APY times 10^18 */ function rate(address rewardToken) override external view returns (uint256) { require(rewardToken == underlying || rewardToken == comp, "CompoundRewardToken: not reward token"); if (rewardToken == underlying) { return getUnderlyingRate(); } else { return getCompRate(); } } function _supply(uint256 amount) override internal { require(cToken.mint(amount) == 0, "CompoundRewardToken: minting cToken failed"); } function _redeem(uint256 amount) override internal { require(cToken.redeemUnderlying(amount) == 0, "CompoundRewardToken: redeeming cToken failed"); } function _claim(address claimToken, uint256 amount) override internal { require(claimToken == underlying || claimToken == comp, "CompoundRewardToken: not reward token"); if (claimToken == underlying) { require(cToken.redeemUnderlying(amount) == 0, "CompoundRewardToken: redeemUnderlying failed"); } else { claimComp(); } } /*** Compound Interface ***/ //@dev Only shows the COMP accrued up until the last interaction with the cToken. function getCompRewards() internal view returns (uint256) { uint256 compAccrued = cToken.comptroller().compAccrued(address(this)); return IERC20(comp).balanceOf(address(this)).add(compAccrued); } function claimComp() internal { ICToken[] memory cTokens = new ICToken[](1); cTokens[0] = cToken; cToken.comptroller().claimComp(address(this), cTokens); } function getUnderlyingRate() internal view returns (uint256) { uint256 supplyRatePerBlock = cToken.supplyRatePerBlock(); return rateToAPY(supplyRatePerBlock); } // @dev APY = (1 + rate) ^ 365 - 1 function rateToAPY(uint apr) internal pure returns (uint256) { uint256 ratePerDay = apr.mul(BLOCKS_PER_DAY).add(BASE); uint256 acc = ratePerDay; for (uint256 i = 1; i < DAYS_PER_YEAR; i++) { acc = acc.mul(ratePerDay).div(BASE); } return acc.sub(BASE); } function getCompRate() internal view returns (uint256) { IComptroller comptroller = cToken.comptroller(); uint256 compForMarketPerYear = comptroller.compSpeeds(address(cToken)).mul(BLOCKS_PER_YEAR); uint256 exchangeRate = cToken.exchangeRateStored(); uint256 totalSupply = cToken.totalSupply(); uint256 totalUnderlying = totalSupply.mul(exchangeRate).div(BASE); return compForMarketPerYear.mul(BASE).div(totalUnderlying); } // @dev returns the amount of underlying that this contract's cTokens can be redeemed for function balanceOfCTokenUnderlying(address owner) internal view returns (uint256) { uint256 exchangeRate = cToken.exchangeRateStored(); uint256 scaledMantissa = exchangeRate.mul(cToken.balanceOf(owner)); // Note: We are not using careful math here as we're performing a division that cannot fail return scaledMantissa / BASE; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"contract ICToken","name":"_cToken","type":"address"},{"internalType":"address","name":"delegate","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminTransferred","type":"event"},{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"rewardToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"newDelegate","type":"address"}],"name":"DelegateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Supply","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":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardToken","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"balanceOfReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cToken","outputs":[{"internalType":"contract ICToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"address[]","name":"tokens","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"comp","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":[],"name":"delegate","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardToken","type":"address"}],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"address[]","name":"claimTokens","type":"address[]"}],"name":"redeemAndClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalUnclaimedRewards","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":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"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":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"unclaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDelegate","type":"address"}],"name":"updateDelegate","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620051b5380380620051b5833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291905050508173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021357600080fd5b505afa15801562000228573d6000803e3d6000fd5b505050506040513d60208110156200023f57600080fd5b810190808051906020019092919050505081858581600390805190602001906200026b9291906200080b565b508060049080519060200190620002849291906200080b565b506012600560006101000a81548160ff021916908360ff160217905550505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200036c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180620051516031913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620003f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f81526020018062005122602f913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156200052257600080fd5b505afa15801562000537573d6000803e3d6000fd5b505050506040513d60208110156200054e57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff16639d1b5a0a6040518163ffffffff1660e01b815260040160206040518083038186803b158015620005a557600080fd5b505afa158015620005ba573d6000803e3d6000fd5b505050506040513d6020811015620005d157600080fd5b8101908080519060200190929190505050600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415620006ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180620051826033913960400191505060405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015620007c357600080fd5b505af1158015620007d8573d6000803e3d6000fd5b505050506040513d6020811015620007ef57600080fd5b81019080805190602001909291905050505050505050620008b1565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200084e57805160ff19168380011785556200087f565b828001600101855582156200087f579182015b828111156200087e57825182559160200191906001019062000861565b5b5090506200088e919062000892565b5090565b5b80821115620008ad57600081600090555060010162000893565b5090565b61486180620008c16000396000f3fe608060405234801561001057600080fd5b50600436106101a85760003560e01c80636f307dc3116100f9578063c2b18aa011610097578063e94631d211610071578063e94631d214610b25578063f2b9fdb814610b7d578063f851a44014610bcb578063fe3f9b0e14610bff576101a8565b8063c2b18aa014610a1a578063c89e436114610a79578063dd62ed3e14610aad576101a8565b80637b20a90f116100d35780637b20a90f146107ac57806395d89b41146108cf578063a457c2d714610952578063a9059cbb146109b6576101a8565b80636f307dc3146106dc57806370a082311461071057806375829def14610768576101a8565b80631439ac801161016657806323b872dd1161014057806323b872dd1461059f578063313ce56714610623578063395093511461064457806369e527da146106a8576101a8565b80631439ac80146104bb57806318160ddd146105335780631e9a695014610551576101a8565b8062c9d2d0146101ad57806306fdde03146102d057806307b1452414610353578063095ea7b3146103cb5780630ba9d8ca1461042f578063109d0af814610487575b600080fd5b6102ce600480360360608110156101c357600080fd5b81019080803590602001906401000000008111156101e057600080fd5b8201836020820111156101f257600080fd5b8035906020019184602083028401116401000000008311171561021457600080fd5b90919293919293908035906020019064010000000081111561023557600080fd5b82018360208201111561024757600080fd5b8035906020019184602083028401116401000000008311171561026957600080fd5b90919293919293908035906020019064010000000081111561028a57600080fd5b82018360208201111561029c57600080fd5b803590602001918460208302840111640100000000831117156102be57600080fd5b9091929391929390505050610c43565b005b6102d8611015565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103185780820151818401526020810190506102fd565b50505050905090810190601f1680156103455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103b56004803603604081101561036957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110b7565b6040518082815260200191505060405180910390f35b610417600480360360408110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110dc565b60405180821515815260200191505060405180910390f35b6104716004803603602081101561044557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110fa565b6040518082815260200191505060405180910390f35b61048f61126f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61051d600480360360408110156104d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611295565b6040518082815260200191505060405180910390f35b61053b6113d4565b6040518082815260200191505060405180910390f35b61059d6004803603604081101561056757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113de565b005b61060b600480360360608110156105b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114a7565b60405180821515815260200191505060405180910390f35b61062b611580565b604051808260ff16815260200191505060405180910390f35b6106906004803603604081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611597565b60405180821515815260200191505060405180910390f35b6106b061164a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106e4611670565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107526004803603602081101561072657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611696565b6040518082815260200191505060405180910390f35b6107aa6004803603602081101561077e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116de565b005b6108cd600480360360608110156107c257600080fd5b81019080803590602001906401000000008111156107df57600080fd5b8201836020820111156107f157600080fd5b8035906020019184602083028401116401000000008311171561081357600080fd5b90919293919293908035906020019064010000000081111561083457600080fd5b82018360208201111561084657600080fd5b8035906020019184602083028401116401000000008311171561086857600080fd5b90919293919293908035906020019064010000000081111561088957600080fd5b82018360208201111561089b57600080fd5b803590602001918460208302840111640100000000831117156108bd57600080fd5b90919293919293905050506118f1565b005b6108d761196f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109175780820151818401526020810190506108fc565b50505050905090810190601f1680156109445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61099e6004803603604081101561096857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a11565b60405180821515815260200191505060405180910390f35b610a02600480360360408110156109cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ade565b60405180821515815260200191505060405180910390f35b610a22611afc565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a65578082015181840152602081019050610a4a565b505050509050019250505060405180910390f35b610a81611b0b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b0f60048036036040811015610ac357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b31565b6040518082815260200191505060405180910390f35b610b6760048036036020811015610b3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bb8565b6040518082815260200191505060405180910390f35b610bc960048036036040811015610b9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bd0565b005b610bd3611c9b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c4160048036036020811015610c1557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc1565b005b8383905086869050148015610c5d57508181905086869050145b610cb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806147de6029913960400191505060405180910390fd5b60005b8686905081101561100c576000878783818110610cce57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1690506000868684818110610cfb57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1690506000858585818110610d2857fe5b9050602002013590506000610d3d8333611295565b905060007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314610d6e5782610d70565b815b905080821015610dcb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806146e8602d913960400191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f4957610e33818361226290919063ffffffff16565b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f0581600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226290919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610f5384826122ac565b610f7e85828673ffffffffffffffffffffffffffffffffffffffff1661251a9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc1405953cccdad6b442e266c84d66ad671e2534c6584f8e6ef92802f7ad294d5846040518082815260200191505060405180910390a450505050508080600101915050610cb5565b50505050505050565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b5050505050905090565b6008602052816000526040600020602052806000526040600020600091509150505481565b60006110f06110e96125bc565b84846125c4565b6001905092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806111a55750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6111fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061461b6025913960400191505060405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125f576112586127bb565b905061126a565b611267612872565b90505b919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134e57611347600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133985612bb0565b61226290919063ffffffff16565b90506113ce565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b92915050565b6000600254905090565b6113e83382612d5a565b6113f181612f1e565b61143e8282600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661251a9092919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd12200efa34901b99367694174c3b0d32c99585fdf37c7c26892136ddd0836d9836040518082815260200191505060405180910390a35050565b60006114b4848484613029565b611575846114c06125bc565b6115708560405180606001604052806028815260200161466160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006115266125bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6125c4565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006116406115a46125bc565b8461163b85600160006115b56125bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b6125c4565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144f86023913960400191505060405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806145706037913960400191505060405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec660405160405180910390a35050565b6119378686600081811061190157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168585600081811061192b57fe5b905060200201356113de565b6119678686600190809261194d9392919061446e565b848488886001908092611962939291906144a1565b610c43565b505050505050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a075780601f106119dc57610100808354040283529160200191611a07565b820191906000526020600020905b8154815290600101906020018083116119ea57829003601f168201915b5050505050905090565b6000611ad4611a1e6125bc565b84611acf856040518060600160405280602581526020016148076025913960016000611a486125bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6125c4565b6001905092915050565b6000611af2611aeb6125bc565b8484613029565b6001905092915050565b6060611b06613432565b905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60096020528060005260406000206000915090505481565b611c1f333083600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613556909392919063ffffffff16565b611c298282613617565b611c32816137de565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd1cf3d156d5f8f0d50f6c122ed609cec09d35c9b9fb3fff6ea0959134dae424e836040518082815260200191505060405180910390a35050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144f86023913960400191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180614689603e913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061453d6033913960400191505060405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506060611ec5613432565b905060005b81518110156121c1576000828281518110611ee157fe5b602002602001015190506000611ef78286611295565b905080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fcc81600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156121b1576000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061216d81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226290919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050508080600101915050611eca565b5082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f305bf06329ff886b42ab3ed2979092b17d3a7fc67e7de42ee393a24c8e39fee760405160405180910390a3505050565b60006122a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132ea565b905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806123555750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6123aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061461b6025913960400191505060405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250d576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663852a12e3836040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b15801561247757600080fd5b505af115801561248b573d6000803e3d6000fd5b505050506040513d60208110156124a157600080fd5b810190808051906020019092919050505014612508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806145c9602c913960400191505060405180910390fd5b612516565b6125156138e9565b5b5050565b6125b78363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613b0e565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561264a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145a76022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ae9d70b06040518163ffffffff1660e01b815260040160206040518083038186803b15801561282657600080fd5b505afa15801561283a573d6000803e3d6000fd5b505050506040513d602081101561285057600080fd5b8101908080519060200190929190505050905061286c81613bfd565b91505090565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156128dd57600080fd5b505afa1580156128f1573d6000803e3d6000fd5b505050506040513d602081101561290757600080fd5b8101908080519060200190929190505050905060006129f861016d611680028373ffffffffffffffffffffffffffffffffffffffff16631d7b33d7600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156129af57600080fd5b505afa1580156129c3573d6000803e3d6000fd5b505050506040513d60208110156129d957600080fd5b8101908080519060200190929190505050613ca890919063ffffffff16565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663182df0f56040518163ffffffff1660e01b815260040160206040518083038186803b158015612a6457600080fd5b505afa158015612a78573d6000803e3d6000fd5b505050506040513d6020811015612a8e57600080fd5b810190808051906020019092919050505090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b0b57600080fd5b505afa158015612b1f573d6000803e3d6000fd5b505050506040513d6020811015612b3557600080fd5b810190808051906020019092919050505090506000612b77670de0b6b3a7640000612b698585613ca890919063ffffffff16565b613d2e90919063ffffffff16565b9050612ba681612b98670de0b6b3a764000087613ca890919063ffffffff16565b613d2e90919063ffffffff16565b9550505050505090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480612c5b5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612cb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061461b6025913960400191505060405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4a576000612d1130613d78565b90506000612d1d6113d4565b9050818111612d3e57612d39818361226290919063ffffffff16565b612d41565b60005b92505050612d55565b612d52613f15565b90505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146c76021913960400191505060405180910390fd5b612dec8260008361413a565b612e578160405180606001604052806022815260200161451b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612eae8160025461226290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663852a12e3836040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b158015612f9557600080fd5b505af1158015612fa9573d6000803e3d6000fd5b505050506040513d6020811015612fbf57600080fd5b810190808051906020019092919050505014613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061473a602c913960400191505060405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147156025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144d56023913960400191505060405180910390fd5b61314083838361413a565b6131ab816040518060600160405280602681526020016145f5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061323e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561335c578082015181840152602081019050613341565b50505050905090810190601f1680156133895780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b606080600267ffffffffffffffff8111801561344d57600080fd5b5060405190808252806020026020018201604052801561347c5781602001602082028036833780820191505090505b509050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826000815181106134d257fe5b60200260200101836001815181106134e657fe5b602002602001018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152508273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050508091505090565b613611846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613b0e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6136c66000838361413a565b6136db816002546133aa90919063ffffffff16565b600281905550613732816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b15801561385557600080fd5b505af1158015613869573d6000803e3d6000fd5b505050506040513d602081101561387f57600080fd5b8101908080519060200190929190505050146138e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061478a602a913960400191505060405180910390fd5b50565b6060600167ffffffffffffffff8111801561390357600080fd5b506040519080825280602002602001820160405280156139325781602001602082028036833780820191505090505b509050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811061396557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b158015613a0757600080fd5b505afa158015613a1b573d6000803e3d6000fd5b505050506040513d6020811015613a3157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff16631c3db2e030836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019060200280838360005b83811015613acd578082015181840152602081019050613ab2565b505050509050019350505050600060405180830381600087803b158015613af357600080fd5b505af1158015613b07573d6000803e3d6000fd5b5050505050565b6060613b70826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661413f9092919063ffffffff16565b9050600081511115613bf857808060200190516020811015613b9157600080fd5b8101908080519060200190929190505050613bf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147b4602a913960400191505060405180910390fd5b5b505050565b600080613c2f670de0b6b3a7640000613c2161168086613ca890919063ffffffff16565b6133aa90919063ffffffff16565b905060008190506000600190505b61016d811015613c8357613c74670de0b6b3a7640000613c668585613ca890919063ffffffff16565b613d2e90919063ffffffff16565b91508080600101915050613c3d565b50613c9f670de0b6b3a76400008261226290919063ffffffff16565b92505050919050565b600080831415613cbb5760009050613d28565b6000828402905082848281613ccc57fe5b0414613d23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146406021913960400191505060405180910390fd5b809150505b92915050565b6000613d7083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614157565b905092915050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663182df0f56040518163ffffffff1660e01b815260040160206040518083038186803b158015613de357600080fd5b505afa158015613df7573d6000803e3d6000fd5b505050506040513d6020811015613e0d57600080fd5b810190808051906020019092919050505090506000613ef8600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613eae57600080fd5b505afa158015613ec2573d6000803e3d6000fd5b505050506040513d6020811015613ed857600080fd5b810190808051906020019092919050505083613ca890919063ffffffff16565b9050670de0b6b3a76400008181613f0b57fe5b0492505050919050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b158015613f8057600080fd5b505afa158015613f94573d6000803e3d6000fd5b505050506040513d6020811015613faa57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663cc7ebdc4306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561402157600080fd5b505afa158015614035573d6000803e3d6000fd5b505050506040513d602081101561404b57600080fd5b8101908080519060200190929190505050905061413481600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156140eb57600080fd5b505afa1580156140ff573d6000803e3d6000fd5b505050506040513d602081101561411557600080fd5b81019080805190602001909291905050506133aa90919063ffffffff16565b91505090565b505050565b606061414e848460008561421d565b90509392505050565b60008083118290614203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141c85780820151818401526020810190506141ad565b50505050905090810190601f1680156141f55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161420f57fe5b049050809150509392505050565b606061422885614423565b61429a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106142ea57805182526020820191506020810190506020830392506142c7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461434c576040519150601f19603f3d011682016040523d82523d6000602084013e614351565b606091505b5091509150811561436657809250505061441b565b6000815111156143795780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143e05780820151818401526020810190506143c5565b50505050905090810190601f16801561440d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561446557506000801b8214155b92505050919050565b6000808585111561447e57600080fd5b8386111561448b57600080fd5b6020850283019150848603905094509492505050565b600080858511156144b157600080fd5b838611156144be57600080fd5b602085028301915084860390509450949250505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f6e74696e756f7573526577617264546f6b656e3a206e6f7420616e2061646d696e45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365436f6e74696e756f7573526577617264546f6b656e3a20696e76616c6964206e65772064656c65676174652061646472657373436f6e74696e756f7573526577617264546f6b656e3a206e65772061646d696e206973207468652073616d65206173206f6c64206f6e6545524332303a20617070726f766520746f20746865207a65726f2061646472657373436f6d706f756e64526577617264546f6b656e3a2072656465656d556e6465726c79696e67206661696c656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6d706f756e64526577617264546f6b656e3a206e6f742072657761726420746f6b656e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e74696e756f7573526577617264546f6b656e3a206e657720726577617264206f776e6572206973207468652073616d65206173206f6c64206f6e6545524332303a206275726e2066726f6d20746865207a65726f2061646472657373436f6e74696e756f7573526577617264546f6b656e3a20696e73756666696369656e7420636c61696d61626c6545524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373436f6d706f756e64526577617264546f6b656e3a2072656465656d696e672063546f6b656e206661696c656445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6d706f756e64526577617264546f6b656e3a206d696e74696e672063546f6b656e206661696c65645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e74696e756f7573526577617264546f6b656e3a206c656e6774687320646f6e74206d6174636845524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220024f295384c5d37429cbdd8236ad0c30f54028cd4a6a3dcf341fef8faccd863f64736f6c634300060c0033436f6e74696e756f7573526577617264546f6b656e3a20696e76616c69642064656c65676174652061646472657373436f6e74696e756f7573526577617264546f6b656e3a20696e76616c696420756e6465726c79696e672061646472657373436f6d706f756e64526577617264546f6b656e3a20646f6573206e6f7420737570706f72742063436f6d702075736563617365000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643000000000000000000000000bf651b16343a1c3dee6f21386fc4b6b1f2f958760000000000000000000000000000000000000000000000000000000000000015436f696e6261736520436f6d706f756e64204461690000000000000000000000000000000000000000000000000000000000000000000000000000000000000e43422d43522d434f4d502d444149000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a85760003560e01c80636f307dc3116100f9578063c2b18aa011610097578063e94631d211610071578063e94631d214610b25578063f2b9fdb814610b7d578063f851a44014610bcb578063fe3f9b0e14610bff576101a8565b8063c2b18aa014610a1a578063c89e436114610a79578063dd62ed3e14610aad576101a8565b80637b20a90f116100d35780637b20a90f146107ac57806395d89b41146108cf578063a457c2d714610952578063a9059cbb146109b6576101a8565b80636f307dc3146106dc57806370a082311461071057806375829def14610768576101a8565b80631439ac801161016657806323b872dd1161014057806323b872dd1461059f578063313ce56714610623578063395093511461064457806369e527da146106a8576101a8565b80631439ac80146104bb57806318160ddd146105335780631e9a695014610551576101a8565b8062c9d2d0146101ad57806306fdde03146102d057806307b1452414610353578063095ea7b3146103cb5780630ba9d8ca1461042f578063109d0af814610487575b600080fd5b6102ce600480360360608110156101c357600080fd5b81019080803590602001906401000000008111156101e057600080fd5b8201836020820111156101f257600080fd5b8035906020019184602083028401116401000000008311171561021457600080fd5b90919293919293908035906020019064010000000081111561023557600080fd5b82018360208201111561024757600080fd5b8035906020019184602083028401116401000000008311171561026957600080fd5b90919293919293908035906020019064010000000081111561028a57600080fd5b82018360208201111561029c57600080fd5b803590602001918460208302840111640100000000831117156102be57600080fd5b9091929391929390505050610c43565b005b6102d8611015565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103185780820151818401526020810190506102fd565b50505050905090810190601f1680156103455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103b56004803603604081101561036957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110b7565b6040518082815260200191505060405180910390f35b610417600480360360408110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110dc565b60405180821515815260200191505060405180910390f35b6104716004803603602081101561044557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110fa565b6040518082815260200191505060405180910390f35b61048f61126f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61051d600480360360408110156104d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611295565b6040518082815260200191505060405180910390f35b61053b6113d4565b6040518082815260200191505060405180910390f35b61059d6004803603604081101561056757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113de565b005b61060b600480360360608110156105b557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114a7565b60405180821515815260200191505060405180910390f35b61062b611580565b604051808260ff16815260200191505060405180910390f35b6106906004803603604081101561065a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611597565b60405180821515815260200191505060405180910390f35b6106b061164a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106e4611670565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107526004803603602081101561072657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611696565b6040518082815260200191505060405180910390f35b6107aa6004803603602081101561077e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116de565b005b6108cd600480360360608110156107c257600080fd5b81019080803590602001906401000000008111156107df57600080fd5b8201836020820111156107f157600080fd5b8035906020019184602083028401116401000000008311171561081357600080fd5b90919293919293908035906020019064010000000081111561083457600080fd5b82018360208201111561084657600080fd5b8035906020019184602083028401116401000000008311171561086857600080fd5b90919293919293908035906020019064010000000081111561088957600080fd5b82018360208201111561089b57600080fd5b803590602001918460208302840111640100000000831117156108bd57600080fd5b90919293919293905050506118f1565b005b6108d761196f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109175780820151818401526020810190506108fc565b50505050905090810190601f1680156109445780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61099e6004803603604081101561096857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a11565b60405180821515815260200191505060405180910390f35b610a02600480360360408110156109cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ade565b60405180821515815260200191505060405180910390f35b610a22611afc565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610a65578082015181840152602081019050610a4a565b505050509050019250505060405180910390f35b610a81611b0b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b0f60048036036040811015610ac357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b31565b6040518082815260200191505060405180910390f35b610b6760048036036020811015610b3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bb8565b6040518082815260200191505060405180910390f35b610bc960048036036040811015610b9357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bd0565b005b610bd3611c9b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c4160048036036020811015610c1557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc1565b005b8383905086869050148015610c5d57508181905086869050145b610cb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806147de6029913960400191505060405180910390fd5b60005b8686905081101561100c576000878783818110610cce57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1690506000868684818110610cfb57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1690506000858585818110610d2857fe5b9050602002013590506000610d3d8333611295565b905060007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314610d6e5782610d70565b815b905080821015610dcb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806146e8602d913960400191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f4957610e33818361226290919063ffffffff16565b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f0581600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226290919063ffffffff16565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b610f5384826122ac565b610f7e85828673ffffffffffffffffffffffffffffffffffffffff1661251a9092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc1405953cccdad6b442e266c84d66ad671e2534c6584f8e6ef92802f7ad294d5846040518082815260200191505060405180910390a450505050508080600101915050610cb5565b50505050505050565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b5050505050905090565b6008602052816000526040600020602052806000526040600020600091509150505481565b60006110f06110e96125bc565b84846125c4565b6001905092915050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806111a55750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6111fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061461b6025913960400191505060405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125f576112586127bb565b905061126a565b611267612872565b90505b919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561134e57611347600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133985612bb0565b61226290919063ffffffff16565b90506113ce565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b92915050565b6000600254905090565b6113e83382612d5a565b6113f181612f1e565b61143e8282600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661251a9092919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd12200efa34901b99367694174c3b0d32c99585fdf37c7c26892136ddd0836d9836040518082815260200191505060405180910390a35050565b60006114b4848484613029565b611575846114c06125bc565b6115708560405180606001604052806028815260200161466160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006115266125bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6125c4565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006116406115a46125bc565b8461163b85600160006115b56125bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b6125c4565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611784576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144f86023913960400191505060405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806145706037913960400191505060405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec660405160405180910390a35050565b6119378686600081811061190157fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168585600081811061192b57fe5b905060200201356113de565b6119678686600190809261194d9392919061446e565b848488886001908092611962939291906144a1565b610c43565b505050505050565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611a075780601f106119dc57610100808354040283529160200191611a07565b820191906000526020600020905b8154815290600101906020018083116119ea57829003601f168201915b5050505050905090565b6000611ad4611a1e6125bc565b84611acf856040518060600160405280602581526020016148076025913960016000611a486125bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6125c4565b6001905092915050565b6000611af2611aeb6125bc565b8484613029565b6001905092915050565b6060611b06613432565b905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60096020528060005260406000206000915090505481565b611c1f333083600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613556909392919063ffffffff16565b611c298282613617565b611c32816137de565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd1cf3d156d5f8f0d50f6c122ed609cec09d35c9b9fb3fff6ea0959134dae424e836040518082815260200191505060405180910390a35050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d67576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144f86023913960400191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180614689603e913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061453d6033913960400191505060405180910390fd5b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506060611ec5613432565b905060005b81518110156121c1576000828281518110611ee157fe5b602002602001015190506000611ef78286611295565b905080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fcc81600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156121b1576000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061216d81600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461226290919063ffffffff16565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050508080600101915050611eca565b5082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f305bf06329ff886b42ab3ed2979092b17d3a7fc67e7de42ee393a24c8e39fee760405160405180910390a3505050565b60006122a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132ea565b905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806123555750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6123aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061461b6025913960400191505060405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250d576000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663852a12e3836040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b15801561247757600080fd5b505af115801561248b573d6000803e3d6000fd5b505050506040513d60208110156124a157600080fd5b810190808051906020019092919050505014612508576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806145c9602c913960400191505060405180910390fd5b612516565b6125156138e9565b5b5050565b6125b78363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613b0e565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561264a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806147666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145a76022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ae9d70b06040518163ffffffff1660e01b815260040160206040518083038186803b15801561282657600080fd5b505afa15801561283a573d6000803e3d6000fd5b505050506040513d602081101561285057600080fd5b8101908080519060200190929190505050905061286c81613bfd565b91505090565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156128dd57600080fd5b505afa1580156128f1573d6000803e3d6000fd5b505050506040513d602081101561290757600080fd5b8101908080519060200190929190505050905060006129f861016d611680028373ffffffffffffffffffffffffffffffffffffffff16631d7b33d7600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156129af57600080fd5b505afa1580156129c3573d6000803e3d6000fd5b505050506040513d60208110156129d957600080fd5b8101908080519060200190929190505050613ca890919063ffffffff16565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663182df0f56040518163ffffffff1660e01b815260040160206040518083038186803b158015612a6457600080fd5b505afa158015612a78573d6000803e3d6000fd5b505050506040513d6020811015612a8e57600080fd5b810190808051906020019092919050505090506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b0b57600080fd5b505afa158015612b1f573d6000803e3d6000fd5b505050506040513d6020811015612b3557600080fd5b810190808051906020019092919050505090506000612b77670de0b6b3a7640000612b698585613ca890919063ffffffff16565b613d2e90919063ffffffff16565b9050612ba681612b98670de0b6b3a764000087613ca890919063ffffffff16565b613d2e90919063ffffffff16565b9550505050505090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480612c5b5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612cb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061461b6025913960400191505060405180910390fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4a576000612d1130613d78565b90506000612d1d6113d4565b9050818111612d3e57612d39818361226290919063ffffffff16565b612d41565b60005b92505050612d55565b612d52613f15565b90505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146c76021913960400191505060405180910390fd5b612dec8260008361413a565b612e578160405180606001604052806022815260200161451b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612eae8160025461226290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663852a12e3836040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b158015612f9557600080fd5b505af1158015612fa9573d6000803e3d6000fd5b505050506040513d6020811015612fbf57600080fd5b810190808051906020019092919050505014613026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061473a602c913960400191505060405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806147156025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613135576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806144d56023913960400191505060405180910390fd5b61314083838361413a565b6131ab816040518060600160405280602681526020016145f5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132ea9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061323e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561335c578082015181840152602081019050613341565b50505050905090810190601f1680156133895780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015613428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b606080600267ffffffffffffffff8111801561344d57600080fd5b5060405190808252806020026020018201604052801561347c5781602001602082028036833780820191505090505b509050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826000815181106134d257fe5b60200260200101836001815181106134e657fe5b602002602001018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152508273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681525050508091505090565b613611846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613b0e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6136c66000838361413a565b6136db816002546133aa90919063ffffffff16565b600281905550613732816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133aa90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a0712d68836040518263ffffffff1660e01b815260040180828152602001915050602060405180830381600087803b15801561385557600080fd5b505af1158015613869573d6000803e3d6000fd5b505050506040513d602081101561387f57600080fd5b8101908080519060200190929190505050146138e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061478a602a913960400191505060405180910390fd5b50565b6060600167ffffffffffffffff8111801561390357600080fd5b506040519080825280602002602001820160405280156139325781602001602082028036833780820191505090505b509050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160008151811061396557fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b158015613a0757600080fd5b505afa158015613a1b573d6000803e3d6000fd5b505050506040513d6020811015613a3157600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff16631c3db2e030836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019060200280838360005b83811015613acd578082015181840152602081019050613ab2565b505050509050019350505050600060405180830381600087803b158015613af357600080fd5b505af1158015613b07573d6000803e3d6000fd5b5050505050565b6060613b70826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661413f9092919063ffffffff16565b9050600081511115613bf857808060200190516020811015613b9157600080fd5b8101908080519060200190929190505050613bf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806147b4602a913960400191505060405180910390fd5b5b505050565b600080613c2f670de0b6b3a7640000613c2161168086613ca890919063ffffffff16565b6133aa90919063ffffffff16565b905060008190506000600190505b61016d811015613c8357613c74670de0b6b3a7640000613c668585613ca890919063ffffffff16565b613d2e90919063ffffffff16565b91508080600101915050613c3d565b50613c9f670de0b6b3a76400008261226290919063ffffffff16565b92505050919050565b600080831415613cbb5760009050613d28565b6000828402905082848281613ccc57fe5b0414613d23576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806146406021913960400191505060405180910390fd5b809150505b92915050565b6000613d7083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614157565b905092915050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663182df0f56040518163ffffffff1660e01b815260040160206040518083038186803b158015613de357600080fd5b505afa158015613df7573d6000803e3d6000fd5b505050506040513d6020811015613e0d57600080fd5b810190808051906020019092919050505090506000613ef8600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613eae57600080fd5b505afa158015613ec2573d6000803e3d6000fd5b505050506040513d6020811015613ed857600080fd5b810190808051906020019092919050505083613ca890919063ffffffff16565b9050670de0b6b3a76400008181613f0b57fe5b0492505050919050565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635fe3b5676040518163ffffffff1660e01b815260040160206040518083038186803b158015613f8057600080fd5b505afa158015613f94573d6000803e3d6000fd5b505050506040513d6020811015613faa57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663cc7ebdc4306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561402157600080fd5b505afa158015614035573d6000803e3d6000fd5b505050506040513d602081101561404b57600080fd5b8101908080519060200190929190505050905061413481600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156140eb57600080fd5b505afa1580156140ff573d6000803e3d6000fd5b505050506040513d602081101561411557600080fd5b81019080805190602001909291905050506133aa90919063ffffffff16565b91505090565b505050565b606061414e848460008561421d565b90509392505050565b60008083118290614203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156141c85780820151818401526020810190506141ad565b50505050905090810190601f1680156141f55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161420f57fe5b049050809150509392505050565b606061422885614423565b61429a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106142ea57805182526020820191506020810190506020830392506142c7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461434c576040519150601f19603f3d011682016040523d82523d6000602084013e614351565b606091505b5091509150811561436657809250505061441b565b6000815111156143795780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156143e05780820151818401526020810190506143c5565b50505050905090810190601f16801561440d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561446557506000801b8214155b92505050919050565b6000808585111561447e57600080fd5b8386111561448b57600080fd5b6020850283019150848603905094509492505050565b600080858511156144b157600080fd5b838611156144be57600080fd5b602085028301915084860390509450949250505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f6e74696e756f7573526577617264546f6b656e3a206e6f7420616e2061646d696e45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365436f6e74696e756f7573526577617264546f6b656e3a20696e76616c6964206e65772064656c65676174652061646472657373436f6e74696e756f7573526577617264546f6b656e3a206e65772061646d696e206973207468652073616d65206173206f6c64206f6e6545524332303a20617070726f766520746f20746865207a65726f2061646472657373436f6d706f756e64526577617264546f6b656e3a2072656465656d556e6465726c79696e67206661696c656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6d706f756e64526577617264546f6b656e3a206e6f742072657761726420746f6b656e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365436f6e74696e756f7573526577617264546f6b656e3a206e657720726577617264206f776e6572206973207468652073616d65206173206f6c64206f6e6545524332303a206275726e2066726f6d20746865207a65726f2061646472657373436f6e74696e756f7573526577617264546f6b656e3a20696e73756666696369656e7420636c61696d61626c6545524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373436f6d706f756e64526577617264546f6b656e3a2072656465656d696e672063546f6b656e206661696c656445524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6d706f756e64526577617264546f6b656e3a206d696e74696e672063546f6b656e206661696c65645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e74696e756f7573526577617264546f6b656e3a206c656e6774687320646f6e74206d6174636845524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220024f295384c5d37429cbdd8236ad0c30f54028cd4a6a3dcf341fef8faccd863f64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643000000000000000000000000bf651b16343a1c3dee6f21386fc4b6b1f2f958760000000000000000000000000000000000000000000000000000000000000015436f696e6261736520436f6d706f756e64204461690000000000000000000000000000000000000000000000000000000000000000000000000000000000000e43422d43522d434f4d502d444149000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Coinbase Compound Dai
Arg [1] : symbol (string): CB-CR-COMP-DAI
Arg [2] : _cToken (address): 0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643
Arg [3] : delegate (address): 0xbF651B16343a1C3DEe6f21386fC4B6b1f2F95876
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000005d3a536e4d6dbd6114cc1ead35777bab948e3643
Arg [3] : 000000000000000000000000bf651b16343a1c3dee6f21386fc4b6b1f2f95876
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [5] : 436f696e6261736520436f6d706f756e64204461690000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 43422d43522d434f4d502d444149000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
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.