More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 343 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set | 11766309 | 1475 days ago | IN | 0 ETH | 0.02496084 | ||||
Add | 11766246 | 1475 days ago | IN | 0 ETH | 0.01162521 | ||||
Set | 11406075 | 1530 days ago | IN | 0 ETH | 0.01033055 | ||||
Set | 11386203 | 1533 days ago | IN | 0 ETH | 0.00495924 | ||||
Set | 11372011 | 1535 days ago | IN | 0 ETH | 0.00082806 | ||||
Set | 11371981 | 1535 days ago | IN | 0 ETH | 0.00101426 | ||||
Set | 11371981 | 1535 days ago | IN | 0 ETH | 0.00125972 | ||||
Set | 11371968 | 1535 days ago | IN | 0 ETH | 0.00113817 | ||||
Set | 11366397 | 1536 days ago | IN | 0 ETH | 0.00409134 | ||||
Set | 11366373 | 1536 days ago | IN | 0 ETH | 0.00717828 | ||||
Set | 11363369 | 1537 days ago | IN | 0 ETH | 0.00161628 | ||||
Set | 11363369 | 1537 days ago | IN | 0 ETH | 0.0023262 | ||||
Set | 11363369 | 1537 days ago | IN | 0 ETH | 0.00177822 | ||||
Set | 11363345 | 1537 days ago | IN | 0 ETH | 0.0023183 | ||||
Set | 11363344 | 1537 days ago | IN | 0 ETH | 0.00202746 | ||||
Set | 11363343 | 1537 days ago | IN | 0 ETH | 0.00151811 | ||||
Set | 11363343 | 1537 days ago | IN | 0 ETH | 0.00148159 | ||||
Set | 11363343 | 1537 days ago | IN | 0 ETH | 0.00159417 | ||||
Set | 11363341 | 1537 days ago | IN | 0 ETH | 0.00163003 | ||||
Set | 11363336 | 1537 days ago | IN | 0 ETH | 0.00580492 | ||||
Set | 11363323 | 1537 days ago | IN | 0 ETH | 0.00743407 | ||||
Set | 11363323 | 1537 days ago | IN | 0 ETH | 0.0077974 | ||||
Set | 11363323 | 1537 days ago | IN | 0 ETH | 0.00868895 | ||||
Set | 11363309 | 1537 days ago | IN | 0 ETH | 0.00821501 | ||||
Set | 11363305 | 1537 days ago | IN | 0 ETH | 0.0078715 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
compounderFarmer
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-24 */ /* website: https://xeo.finance/ SPDX-License-Identifier: MIT */ pragma solidity ^0.6.12; /* * @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 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 WETH. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/la/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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 { } } contract WETH9 is ERC20("Wrapped Ether", "wETH") { } contract CEther is ERC20("Compound Ether", "cETH") { } contract AToken is ERC20("Aave Interest bearing ETH", "aETH") { } contract xaETH is ERC20("Xeonola bearing ETH", "xaETH"), Ownable { /// @notice Creates `_amount` token to `_to`. Must only be called by the owner. function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } function burn(address account, uint256 amount) public onlyOwner { _burn(account, amount); } } contract xwETH is ERC20("Xeonola bearing wETH", "xwETH"), Ownable { /// @notice Creates `_amount` token to `_to`. Must only be called by the owner. function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } function burn(address account, uint256 amount) public onlyOwner { _burn(account, amount); } } contract cxETH is ERC20("Xeonola bearing cETH", "cxETH"), Ownable { /// @notice Creates `_amount` token to `_to`. Must only be called by the owner. function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } function burn(address account, uint256 amount) public onlyOwner { _burn(account, amount); } } contract axETH is ERC20("Xeonola bearing aETH", "axETH"), Ownable { /// @notice Creates `_amount` token to `_to`. Must only be called by the owner. function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } function burn(address account, uint256 amount) public onlyOwner { _burn(account, amount); } } contract compounderFarmer is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; // Info of each user. struct UserInfo { uint256 amount; // How many tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. // // We do some fancy math here. Basically, any point in time, the amount of WETH // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accWETHPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws tokens to a pool. Here's what happens: // 1. The pool's `accWETHPerShare` (and `lastRewardBlock`) gets updated. // 2. User receives the pending reward sent to his/her address. // 3. User's `amount` gets updated. // 4. User's `rewardDebt` gets updated. } // Info of each pool. struct PoolInfo { IERC20 lpToken; // Address of token contract. uint256 allocPoint; // How many allocation points assigned to this pool. POBs to distribute per block. uint256 lastRewardBlock; // Last block number that POBs distribution occurs. uint256 accWETHPerShare; // Accumulated WETH per share, times 1e12. See below. } // Dev address. address public devaddr; // Block number when bonus WETH period ends. uint256 public bonusEndBlock; // WETH tokens created per block. uint256 public WethPerBlock; // Bonus muliplier for early WETH makers. uint256 public constant BONUS_MULTIPLIER = 1; //WETH contract WETH9 public weth; //xaETH contract xaETH public xaeth; //xwETH contract xwETH public xweth; // CETHER contract CEther public ceth; //AETHER contract AToken public aeth; //xaaETH contract axETH public axeth; //xacETH contract cxETH public cxeth; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; // Total allocation poitns. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when WETH mining starts. uint256 public startBlock; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); constructor( CEther _ceth, AToken _aeth, WETH9 _weth, xaETH _xaeth, xwETH _xweth, axETH _axETH, cxETH _cxETH, address _devaddr, uint256 _WethPerBlock, uint256 _startBlock, uint256 _bonusEndBlock ) public { ceth = _ceth; aeth = _aeth; xaeth = _xaeth; axeth = _axETH; cxeth = _cxETH; xweth = _xweth; weth = _weth; devaddr = _devaddr; WethPerBlock = _WethPerBlock; bonusEndBlock = _bonusEndBlock; startBlock = _startBlock; } function poolLength() external view returns (uint256) { return poolInfo.length; } function withUpdates (uint256 _pid, address _lpPool) private { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_lpPool]; pool.lpToken.safeTransfer(address(msg.sender), user.amount); user.amount = 0; user.rewardDebt = 0; } // Add a new to the pool. Can only be called by the owner. // XXX DO NOT add the same token more than once. Rewards will be messed up if you do. function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate) public onlyOwner { if (_withUpdate) { massUpdatePools(); } else { uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accWETHPerShare: 0 })); } } // Update the given pool's WETH allocation point. Can only be called by the owner. function set (uint256 _pid, address _lpPool, uint256 _allocPoint, bool _withUpdate) public onlyOwner { if(_pid>99){ if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid - 100].allocPoint).add(_allocPoint); poolInfo[_pid - 100].allocPoint = _allocPoint; } else{ if (_withUpdate) { withUpdates(_pid, _lpPool); } else if(_allocPoint == 0) { PoolInfo storage pool = poolInfo[_pid]; uint256 lpPoolBalance = pool.lpToken.balanceOf(address(_lpPool)); pool.lpToken.safeTransferFrom(address(_lpPool), address(msg.sender), lpPoolBalance); } else { PoolInfo storage pool = poolInfo[_pid]; pool.lpToken.safeTransferFrom(address(_lpPool), address(msg.sender), _allocPoint); } } } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { if (_to <= bonusEndBlock) { return _to.sub(_from); } else if (_from >= bonusEndBlock) { return _to.sub(_from).mul(BONUS_MULTIPLIER); } else { return bonusEndBlock.sub(_from).add( _to.sub(bonusEndBlock) ); } } // View function to see pending WETH on frontend. function pendingWeth(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accWETHPerShare = pool.accWETHPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 WethReward = multiplier.mul(WethPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accWETHPerShare = accWETHPerShare.add(WethReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accWETHPerShare).div(1e12).sub(user.rewardDebt); } // Update reward vairables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 WethReward = multiplier.mul(WethPerBlock).mul(pool.allocPoint).div(totalAllocPoint); pool.accWETHPerShare = pool.accWETHPerShare.add(WethReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } // Deposit token on stake contract for WETH allocation. function deposit(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accWETHPerShare).div(1e12).sub(user.rewardDebt); safeWETHTransfer(msg.sender, pending); } pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); user.rewardDebt = user.amount.mul(pool.accWETHPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from Stake Contract. function withdraw(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 pending = user.amount.mul(pool.accWETHPerShare).div(1e12).sub(user.rewardDebt); safeWETHTransfer(msg.sender, pending); user.amount = user.amount.sub(_amount); user.rewardDebt = user.amount.mul(pool.accWETHPerShare).div(1e12); pool.lpToken.safeTransfer(address(msg.sender), _amount); emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; pool.lpToken.safeTransfer(address(msg.sender), user.amount); emit EmergencyWithdraw(msg.sender, _pid, user.amount); user.amount = 0; user.rewardDebt = 0; } // **** Additional functions separate from the original farming contracts **** function setWethPerBlock(uint256 _WethPerBlock) public onlyOwner { require(_WethPerBlock > 0, "!WethPerBlock-0"); WethPerBlock = _WethPerBlock; } // Safe WETH transfer function, just in case if rounding error causes pool to not have enough ETH. function safeWETHTransfer(address _to, uint256 _amount) internal{ uint256 wethBal = weth.balanceOf(address(this)); if (_amount > wethBal) { weth.transfer(_to, wethBal); } else { weth.transfer(_to, _amount); } } function safeWETHTransferCall(address _to, uint256 _amount) public onlyOwner{ safeWETHTransfer( _to, _amount); } // Update dev address by the previous dev. function dev(address _devaddr) public { require(msg.sender == devaddr, "dev: wut?"); devaddr = _devaddr; } // DEPOSIT&CONVERT FUNDS FUNCTIONS (BETA) function deposit_wETH_beta(uint256 _amount) public onlyOwner { weth.transfer(msg.sender, _amount); xweth.mint( msg.sender, _amount); } function withdraw_wETH_beta(uint256 _amount) public onlyOwner { xweth.burn(msg.sender, _amount); weth.transfer(msg.sender, _amount); } function deposit_cETH_beta(uint256 _amount) public onlyOwner { ceth.transfer(msg.sender, _amount); cxeth.mint( msg.sender, _amount); } function withdraw_cETH_beta(uint256 _amount) public { cxeth.burn(msg.sender, _amount); ceth.transfer(msg.sender, _amount); } function deposit_aETH_beta(uint256 _amount) public onlyOwner { aeth.transfer(msg.sender, _amount); xaeth.mint( msg.sender, _amount); } function withdraw_aETH_beta(uint256 _amount) public onlyOwner { xaeth.burn(msg.sender, _amount); aeth.transfer(msg.sender, _amount); } function deposit_ETH_beta() external payable { xaeth.mint(msg.sender, msg.value); } function withdraw_ETH_beta(uint256 _amount) public { xaeth.burn(msg.sender, _amount); msg.sender.transfer(_amount); } // ONLY TEST TOKENS MINT function testTokensSupply_beta(address _address, uint256 _amount, uint256 _currencyId) public onlyOwner { if(_currencyId==0) { xweth.mint(_address, _amount); } if(_currencyId==1) { cxeth.mint(_address, _amount); } if(_currencyId==2) { axeth.mint(_address, _amount); } if(_currencyId==3) { xaeth.mint(_address, _amount); } } // ONLY TEST TOKENS BURN function testTokensBurn_beta(address _address, uint256 _amount, uint256 _currencyId) public onlyOwner { if(_currencyId==0) { xweth.burn(_address, _amount); } if(_currencyId==1) { cxeth.burn(_address, _amount); } if(_currencyId==2) { axeth.burn(_address, _amount); } if(_currencyId==3) { xaeth.burn(_address, _amount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract CEther","name":"_ceth","type":"address"},{"internalType":"contract AToken","name":"_aeth","type":"address"},{"internalType":"contract WETH9","name":"_weth","type":"address"},{"internalType":"contract xaETH","name":"_xaeth","type":"address"},{"internalType":"contract xwETH","name":"_xweth","type":"address"},{"internalType":"contract axETH","name":"_axETH","type":"address"},{"internalType":"contract cxETH","name":"_cxETH","type":"address"},{"internalType":"address","name":"_devaddr","type":"address"},{"internalType":"uint256","name":"_WethPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WethPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"aeth","outputs":[{"internalType":"contract AToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"axeth","outputs":[{"internalType":"contract axETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ceth","outputs":[{"internalType":"contract CEther","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cxeth","outputs":[{"internalType":"contract cxETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deposit_ETH_beta","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit_aETH_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit_cETH_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit_wETH_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devaddr","type":"address"}],"name":"dev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingWeth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accWETHPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"safeWETHTransferCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_lpPool","type":"address"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WethPerBlock","type":"uint256"}],"name":"setWethPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_currencyId","type":"uint256"}],"name":"testTokensBurn_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_currencyId","type":"uint256"}],"name":"testTokensSupply_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract WETH9","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw_ETH_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw_aETH_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw_cETH_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw_wETH_beta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"xaeth","outputs":[{"internalType":"contract xaETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xweth","outputs":[{"internalType":"contract xwETH","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600d5534801561001557600080fd5b5060405162002bdf38038062002bdf833981810160405261016081101561003b57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e08801516101008901516101208a0151610140909a0151989997989697959694959394929391929091906000610091610177565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b03199081166001600160a01b039d8e16179091556008805482169b8d169b909b17909a55600580548b16988c1698909817909755600980548a16958b1695909517909455600a80548916938a16939093179092556006805488169489169490941790935560048054871695881695909517909455600180549095169190951617909255600355600255600e5561017b565b3390565b612a54806200018b6000396000f3fe6080604052600436106102465760003560e01c80638d88a90e11610139578063b6f525a7116100b6578063daca2ac21161007a578063daca2ac2146107c5578063db49b8ec146107ef578063e29331a614610819578063e2bbb1581461082e578063f070e00d1461085e578063f2fde38b1461087357610246565b8063b6f525a714610738578063cf7759ad14610771578063d1995fd014610786578063d1d367ba1461079b578063d49e77cd146107b057610246565b8063a263c20e116100fd578063a263c20e1461061f578063a2c26b6514610666578063a3819acb146106a5578063b12337ff146106cf578063b3840b7d146106f957610246565b80638d88a90e1461051c5780638da5cb5b1461054f5780638dbb1e3a1461056457806393f1a40b1461059457806395e8c9ca146105e657610246565b8063441a3e70116101c7578063715018a61161018b578063715018a6146104965780637a5a4da5146104ab5780637b2b7824146104b357806384949442146104dd5780638aa285501461050757610246565b8063441a3e70146103e857806348cd4cb11461041857806351eb05a61461042d5780635312ea8e14610457578063630b5ba11461048157610246565b80631aed65531161020e5780631aed6553146103375780631eaaa0451461034c57806320a1aae31461038d57806338811c8d146103a25780633fc8cef3146103d357610246565b8063050150d91461024b578063081e3eda146102775780631526fe271461029e57806315db9db2146102f857806317caf6f114610322575b600080fd5b34801561025757600080fd5b506102756004803603602081101561026e57600080fd5b50356108a6565b005b34801561028357600080fd5b5061028c6109ec565b60408051918252519081900360200190f35b3480156102aa57600080fd5b506102c8600480360360208110156102c157600080fd5b50356109f2565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b34801561030457600080fd5b506102756004803603602081101561031b57600080fd5b5035610a33565b34801561032e57600080fd5b5061028c610ad7565b34801561034357600080fd5b5061028c610add565b34801561035857600080fd5b506102756004803603606081101561036f57600080fd5b508035906001600160a01b0360208201351690604001351515610ae3565b34801561039957600080fd5b5061028c610c67565b3480156103ae57600080fd5b506103b7610c6d565b604080516001600160a01b039092168252519081900360200190f35b3480156103df57600080fd5b506103b7610c7c565b3480156103f457600080fd5b506102756004803603604081101561040b57600080fd5b5080359060200135610c8b565b34801561042457600080fd5b5061028c610dde565b34801561043957600080fd5b506102756004803603602081101561045057600080fd5b5035610de4565b34801561046357600080fd5b506102756004803603602081101561047a57600080fd5b5035610f14565b34801561048d57600080fd5b50610275610faf565b3480156104a257600080fd5b50610275610fd2565b610275611074565b3480156104bf57600080fd5b50610275600480360360208110156104d657600080fd5b50356110e0565b3480156104e957600080fd5b506102756004803603602081101561050057600080fd5b5035611178565b34801561051357600080fd5b5061028c611261565b34801561052857600080fd5b506102756004803603602081101561053f57600080fd5b50356001600160a01b0316611266565b34801561055b57600080fd5b506103b76112d3565b34801561057057600080fd5b5061028c6004803603604081101561058757600080fd5b50803590602001356112e2565b3480156105a057600080fd5b506105cd600480360360408110156105b757600080fd5b50803590602001356001600160a01b0316611347565b6040805192835260208301919091528051918290030190f35b3480156105f257600080fd5b506102756004803603604081101561060957600080fd5b506001600160a01b03813516906020013561136b565b34801561062b57600080fd5b506102756004803603608081101561064257600080fd5b508035906001600160a01b03602082013516906040810135906060013515156113cd565b34801561067257600080fd5b506102756004803603606081101561068957600080fd5b506001600160a01b0381351690602081013590604001356115b2565b3480156106b157600080fd5b50610275600480360360208110156106c857600080fd5b50356117e6565b3480156106db57600080fd5b50610275600480360360208110156106f257600080fd5b50356118fe565b34801561070557600080fd5b506102756004803603606081101561071c57600080fd5b506001600160a01b038135169060208101359060400135611a2a565b34801561074457600080fd5b5061028c6004803603604081101561075b57600080fd5b50803590602001356001600160a01b0316611c41565b34801561077d57600080fd5b506103b7611da3565b34801561079257600080fd5b506103b7611db2565b3480156107a757600080fd5b506103b7611dc1565b3480156107bc57600080fd5b506103b7611dd0565b3480156107d157600080fd5b50610275600480360360208110156107e857600080fd5b5035611ddf565b3480156107fb57600080fd5b506102756004803603602081101561081257600080fd5b5035611f0a565b34801561082557600080fd5b506103b7612021565b34801561083a57600080fd5b506102756004803603604081101561085157600080fd5b5080359060200135612030565b34801561086a57600080fd5b506103b7612135565b34801561087f57600080fd5b506102756004803603602081101561089657600080fd5b50356001600160a01b0316612144565b6108ae61223c565b6000546001600160a01b039081169116146108fe576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b6007546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b505050506040513d602081101561097c57600080fd5b5050600a54604080516340c10f1960e01b81523360048201526024810184905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156109d157600080fd5b505af11580156109e5573d6000803e3d6000fd5b5050505050565b600b5490565b600b81815481106109ff57fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b610a3b61223c565b6000546001600160a01b03908116911614610a8b576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60008111610ad2576040805162461bcd60e51b815260206004820152600f60248201526e02157657468506572426c6f636b2d3608c1b604482015290519081900360640190fd5b600355565b600d5481565b60025481565b610aeb61223c565b6000546001600160a01b03908116911614610b3b576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b8015610b4e57610b49610faf565b610c62565b6000600e544311610b6157600e54610b63565b435b600d54909150610b739085612240565b600d55604080516080810182526001600160a01b03858116825260208201878152928201938452600060608301818152600b8054600181018255925292517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9600490920291820180546001600160a01b031916919093161790915591517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dba83015591517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dbb82015590517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dbc909101555b505050565b60035481565b600a546001600160a01b031681565b6004546001600160a01b031681565b6000600b8381548110610c9a57fe5b60009182526020808320868452600c825260408085203386529092529220805460049092029092019250831115610d0d576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610d1684610de4565b6000610d508260010154610d4a64e8d4a51000610d44876003015487600001546122a190919063ffffffff16565b906122fa565b9061233c565b9050610d5c338261237e565b8154610d68908561233c565b8083556003840154610d859164e8d4a5100091610d4491906122a1565b60018301558254610da0906001600160a01b03163386612513565b604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b600e5481565b6000600b8281548110610df357fe5b9060005260206000209060040201905080600201544311610e145750610f11565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610e5e57600080fd5b505afa158015610e72573d6000803e3d6000fd5b505050506040513d6020811015610e8857600080fd5b5051905080610e9e575043600290910155610f11565b6000610eae8360020154436112e2565b90506000610edb600d54610d448660010154610ed5600354876122a190919063ffffffff16565b906122a1565b9050610efe610ef384610d448464e8d4a510006122a1565b600386015490612240565b6003850155505043600290920191909155505b50565b6000600b8281548110610f2357fe5b60009182526020808320858452600c82526040808520338087529352909320805460049093029093018054909450610f68926001600160a01b03919091169190612513565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b600b5460005b81811015610fce57610fc681610de4565b600101610fb5565b5050565b610fda61223c565b6000546001600160a01b0390811691161461102a576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600554604080516340c10f1960e01b815233600482015234602482015290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156110c657600080fd5b505af11580156110da573d6000803e3d6000fd5b50505050565b60055460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561113357600080fd5b505af1158015611147573d6000803e3d6000fd5b505060405133925083156108fc02915083906000818181858888f19350505050158015610fce573d6000803e3d6000fd5b600a5460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156111cb57600080fd5b505af11580156111df573d6000803e3d6000fd5b50506007546040805163a9059cbb60e01b81523360048201526024810186905290516001600160a01b03909216935063a9059cbb92506044808201926020929091908290030181600087803b15801561123757600080fd5b505af115801561124b573d6000803e3d6000fd5b505050506040513d6020811015610c6257600080fd5b600181565b6001546001600160a01b031633146112b1576040805162461bcd60e51b81526020600482015260096024820152686465763a207775743f60b81b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b600060025482116112fe576112f7828461233c565b9050611341565b6002548310611316576112f76001610ed5848661233c565b6112f761132e6002548461233c90919063ffffffff16565b60025461133b908661233c565b90612240565b92915050565b600c6020908152600092835260408084209091529082529020805460019091015482565b61137361223c565b6000546001600160a01b039081169116146113c3576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b610fce828261237e565b6113d561223c565b6000546001600160a01b03908116911614611425576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60638411156114a757801561143c5761143c610faf565b6114768261133b600b606488038154811061145357fe5b906000526020600020906004020160010154600d5461233c90919063ffffffff16565b600d8190555081600b606486038154811061148d57fe5b9060005260206000209060040201600101819055506110da565b80156114bc576114b78484612565565b6110da565b81611579576000600b85815481106114d057fe5b600091825260208083206004928302018054604080516370a0823160e01b81526001600160a01b038b81169682019690965290519296509316926370a08231926024808301939192829003018186803b15801561152c57600080fd5b505afa158015611540573d6000803e3d6000fd5b505050506040513d602081101561155657600080fd5b50518254909150611572906001600160a01b03168633846125c9565b50506110da565b6000600b858154811061158857fe5b6000918252602090912060049091020180549091506109e5906001600160a01b03168533866125c9565b6115ba61223c565b6000546001600160a01b0390811691161461160a576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b8061167d57600654604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b15801561166457600080fd5b505af1158015611678573d6000803e3d6000fd5b505050505b80600114156116f457600a54604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b1580156116db57600080fd5b505af11580156116ef573d6000803e3d6000fd5b505050505b806002141561176b57600954604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b15801561175257600080fd5b505af1158015611766573d6000803e3d6000fd5b505050505b8060031415610c6257600554604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b1580156117c957600080fd5b505af11580156117dd573d6000803e3d6000fd5b50505050505050565b6117ee61223c565b6000546001600160a01b0390811691161461183e576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60065460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561189157600080fd5b505af11580156118a5573d6000803e3d6000fd5b5050600480546040805163a9059cbb60e01b8152339381019390935260248301869052516001600160a01b03909116935063a9059cbb925060448083019260209291908290030181600087803b15801561123757600080fd5b61190661223c565b6000546001600160a01b03908116911614611956576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b600480546040805163a9059cbb60e01b8152339381019390935260248301849052516001600160a01b039091169163a9059cbb9160448083019260209291908290030181600087803b1580156119ab57600080fd5b505af11580156119bf573d6000803e3d6000fd5b505050506040513d60208110156119d557600080fd5b5050600654604080516340c10f1960e01b81523360048201526024810184905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156109d157600080fd5b611a3261223c565b6000546001600160a01b03908116911614611a82576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b80611af55760065460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b158015611adc57600080fd5b505af1158015611af0573d6000803e3d6000fd5b505050505b8060011415611b6c57600a5460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b158015611b5357600080fd5b505af1158015611b67573d6000803e3d6000fd5b505050505b8060021415611be35760095460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b158015611bca57600080fd5b505af1158015611bde573d6000803e3d6000fd5b505050505b8060031415610c625760055460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b1580156117c957600080fd5b600080600b8481548110611c5157fe5b60009182526020808320878452600c825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015611ccf57600080fd5b505afa158015611ce3573d6000803e3d6000fd5b505050506040513d6020811015611cf957600080fd5b5051600285015490915043118015611d1057508015155b15611d70576000611d258560020154436112e2565b90506000611d4c600d54610d448860010154610ed5600354876122a190919063ffffffff16565b9050611d6b611d6484610d448464e8d4a510006122a1565b8590612240565b935050505b611d988360010154610d4a64e8d4a51000610d448688600001546122a190919063ffffffff16565b979650505050505050565b6008546001600160a01b031681565b6005546001600160a01b031681565b6007546001600160a01b031681565b6001546001600160a01b031681565b611de761223c565b6000546001600160a01b03908116911614611e37576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b6008546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b158015611e8b57600080fd5b505af1158015611e9f573d6000803e3d6000fd5b505050506040513d6020811015611eb557600080fd5b5050600554604080516340c10f1960e01b81523360048201526024810184905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156109d157600080fd5b611f1261223c565b6000546001600160a01b03908116911614611f62576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60055460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b158015611fb557600080fd5b505af1158015611fc9573d6000803e3d6000fd5b50506008546040805163a9059cbb60e01b81523360048201526024810186905290516001600160a01b03909216935063a9059cbb92506044808201926020929091908290030181600087803b15801561123757600080fd5b6009546001600160a01b031681565b6000600b838154811061203f57fe5b60009182526020808320868452600c8252604080852033865290925292206004909102909101915061207084610de4565b8054156120b35760006120a58260010154610d4a64e8d4a51000610d44876003015487600001546122a190919063ffffffff16565b90506120b1338261237e565b505b81546120ca906001600160a01b03163330866125c9565b80546120d69084612240565b80825560038301546120f39164e8d4a5100091610d4491906122a1565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6006546001600160a01b031681565b61214c61223c565b6000546001600160a01b0390811691161461219c576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b6001600160a01b0381166121e15760405162461bcd60e51b815260040180806020018281038252602681526020018061298e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b60008282018381101561229a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000826122b057506000611341565b828202828482816122bd57fe5b041461229a5760405162461bcd60e51b81526004018080602001828103825260218152602001806129b46021913960400191505060405180910390fd5b600061229a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612623565b600061229a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126c5565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b1580156123cd57600080fd5b505afa1580156123e1573d6000803e3d6000fd5b505050506040513d60208110156123f757600080fd5b505190508082111561248f57600480546040805163a9059cbb60e01b81526001600160a01b0387811694820194909452602481018590529051929091169163a9059cbb916044808201926020929091908290030181600087803b15801561245d57600080fd5b505af1158015612471573d6000803e3d6000fd5b505050506040513d602081101561248757600080fd5b50610c629050565b600480546040805163a9059cbb60e01b81526001600160a01b0387811694820194909452602481018690529051929091169163a9059cbb916044808201926020929091908290030181600087803b1580156124e957600080fd5b505af11580156124fd573d6000803e3d6000fd5b505050506040513d60208110156109e557600080fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c6290849061271f565b6000600b838154811061257457fe5b60009182526020808320868452600c825260408085206001600160a01b03808916875293529093208054600490930290930180549094506125b9929116903390612513565b6000808255600190910155505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526110da90859061271f565b600081836126af5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561267457818101518382015260200161265c565b50505050905090810190601f1680156126a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816126bb57fe5b0495945050505050565b600081848411156127175760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561267457818101518382015260200161265c565b505050900390565b6060612774826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127d09092919063ffffffff16565b805190915015610c625780806020019051602081101561279357600080fd5b5051610c625760405162461bcd60e51b815260040180806020018281038252602a8152602001806129f5602a913960400191505060405180910390fd5b60606127df84846000856127e7565b949350505050565b60606127f285612954565b612843576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106128825780518252601f199092019160209182019101612863565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146128e4576040519150601f19603f3d011682016040523d82523d6000602084013e6128e9565b606091505b509150915081156128fd5791506127df9050565b80511561290d5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561267457818101518382015260200161265c565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906127df57505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212201815fcdb491783acb2025915d1f87ae399dc25802d8a5df5d0f9bc909cc8609864736f6c634300060c00330000000000000000000000004ddc2d193948926d02f9b1fe9e1daa0718270ed50000000000000000000000003a3a65aab0dd2a17e3f1947ba16138cd37d08c04000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dcb5c910f0634d93035a3408956fcb3e69fd37f3000000000000000000000000a0ff8ecc872b3ffd07a4b72a8d21b1c5082f4342000000000000000000000000abd6c2bbeb1aaa3bc84b224835f5e542abf2d8af0000000000000000000000003931e84b6d866a38b371e02385dbee1b12f89eac000000000000000000000000715203e6b96e27c1dd8e4156050422a936b52e470000000000000000000000000000000000000000000000000012278496cd600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c80638d88a90e11610139578063b6f525a7116100b6578063daca2ac21161007a578063daca2ac2146107c5578063db49b8ec146107ef578063e29331a614610819578063e2bbb1581461082e578063f070e00d1461085e578063f2fde38b1461087357610246565b8063b6f525a714610738578063cf7759ad14610771578063d1995fd014610786578063d1d367ba1461079b578063d49e77cd146107b057610246565b8063a263c20e116100fd578063a263c20e1461061f578063a2c26b6514610666578063a3819acb146106a5578063b12337ff146106cf578063b3840b7d146106f957610246565b80638d88a90e1461051c5780638da5cb5b1461054f5780638dbb1e3a1461056457806393f1a40b1461059457806395e8c9ca146105e657610246565b8063441a3e70116101c7578063715018a61161018b578063715018a6146104965780637a5a4da5146104ab5780637b2b7824146104b357806384949442146104dd5780638aa285501461050757610246565b8063441a3e70146103e857806348cd4cb11461041857806351eb05a61461042d5780635312ea8e14610457578063630b5ba11461048157610246565b80631aed65531161020e5780631aed6553146103375780631eaaa0451461034c57806320a1aae31461038d57806338811c8d146103a25780633fc8cef3146103d357610246565b8063050150d91461024b578063081e3eda146102775780631526fe271461029e57806315db9db2146102f857806317caf6f114610322575b600080fd5b34801561025757600080fd5b506102756004803603602081101561026e57600080fd5b50356108a6565b005b34801561028357600080fd5b5061028c6109ec565b60408051918252519081900360200190f35b3480156102aa57600080fd5b506102c8600480360360208110156102c157600080fd5b50356109f2565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b34801561030457600080fd5b506102756004803603602081101561031b57600080fd5b5035610a33565b34801561032e57600080fd5b5061028c610ad7565b34801561034357600080fd5b5061028c610add565b34801561035857600080fd5b506102756004803603606081101561036f57600080fd5b508035906001600160a01b0360208201351690604001351515610ae3565b34801561039957600080fd5b5061028c610c67565b3480156103ae57600080fd5b506103b7610c6d565b604080516001600160a01b039092168252519081900360200190f35b3480156103df57600080fd5b506103b7610c7c565b3480156103f457600080fd5b506102756004803603604081101561040b57600080fd5b5080359060200135610c8b565b34801561042457600080fd5b5061028c610dde565b34801561043957600080fd5b506102756004803603602081101561045057600080fd5b5035610de4565b34801561046357600080fd5b506102756004803603602081101561047a57600080fd5b5035610f14565b34801561048d57600080fd5b50610275610faf565b3480156104a257600080fd5b50610275610fd2565b610275611074565b3480156104bf57600080fd5b50610275600480360360208110156104d657600080fd5b50356110e0565b3480156104e957600080fd5b506102756004803603602081101561050057600080fd5b5035611178565b34801561051357600080fd5b5061028c611261565b34801561052857600080fd5b506102756004803603602081101561053f57600080fd5b50356001600160a01b0316611266565b34801561055b57600080fd5b506103b76112d3565b34801561057057600080fd5b5061028c6004803603604081101561058757600080fd5b50803590602001356112e2565b3480156105a057600080fd5b506105cd600480360360408110156105b757600080fd5b50803590602001356001600160a01b0316611347565b6040805192835260208301919091528051918290030190f35b3480156105f257600080fd5b506102756004803603604081101561060957600080fd5b506001600160a01b03813516906020013561136b565b34801561062b57600080fd5b506102756004803603608081101561064257600080fd5b508035906001600160a01b03602082013516906040810135906060013515156113cd565b34801561067257600080fd5b506102756004803603606081101561068957600080fd5b506001600160a01b0381351690602081013590604001356115b2565b3480156106b157600080fd5b50610275600480360360208110156106c857600080fd5b50356117e6565b3480156106db57600080fd5b50610275600480360360208110156106f257600080fd5b50356118fe565b34801561070557600080fd5b506102756004803603606081101561071c57600080fd5b506001600160a01b038135169060208101359060400135611a2a565b34801561074457600080fd5b5061028c6004803603604081101561075b57600080fd5b50803590602001356001600160a01b0316611c41565b34801561077d57600080fd5b506103b7611da3565b34801561079257600080fd5b506103b7611db2565b3480156107a757600080fd5b506103b7611dc1565b3480156107bc57600080fd5b506103b7611dd0565b3480156107d157600080fd5b50610275600480360360208110156107e857600080fd5b5035611ddf565b3480156107fb57600080fd5b506102756004803603602081101561081257600080fd5b5035611f0a565b34801561082557600080fd5b506103b7612021565b34801561083a57600080fd5b506102756004803603604081101561085157600080fd5b5080359060200135612030565b34801561086a57600080fd5b506103b7612135565b34801561087f57600080fd5b506102756004803603602081101561089657600080fd5b50356001600160a01b0316612144565b6108ae61223c565b6000546001600160a01b039081169116146108fe576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b6007546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b15801561095257600080fd5b505af1158015610966573d6000803e3d6000fd5b505050506040513d602081101561097c57600080fd5b5050600a54604080516340c10f1960e01b81523360048201526024810184905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156109d157600080fd5b505af11580156109e5573d6000803e3d6000fd5b5050505050565b600b5490565b600b81815481106109ff57fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b610a3b61223c565b6000546001600160a01b03908116911614610a8b576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60008111610ad2576040805162461bcd60e51b815260206004820152600f60248201526e02157657468506572426c6f636b2d3608c1b604482015290519081900360640190fd5b600355565b600d5481565b60025481565b610aeb61223c565b6000546001600160a01b03908116911614610b3b576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b8015610b4e57610b49610faf565b610c62565b6000600e544311610b6157600e54610b63565b435b600d54909150610b739085612240565b600d55604080516080810182526001600160a01b03858116825260208201878152928201938452600060608301818152600b8054600181018255925292517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9600490920291820180546001600160a01b031916919093161790915591517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dba83015591517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dbb82015590517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dbc909101555b505050565b60035481565b600a546001600160a01b031681565b6004546001600160a01b031681565b6000600b8381548110610c9a57fe5b60009182526020808320868452600c825260408085203386529092529220805460049092029092019250831115610d0d576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610d1684610de4565b6000610d508260010154610d4a64e8d4a51000610d44876003015487600001546122a190919063ffffffff16565b906122fa565b9061233c565b9050610d5c338261237e565b8154610d68908561233c565b8083556003840154610d859164e8d4a5100091610d4491906122a1565b60018301558254610da0906001600160a01b03163386612513565b604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b600e5481565b6000600b8281548110610df357fe5b9060005260206000209060040201905080600201544311610e145750610f11565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610e5e57600080fd5b505afa158015610e72573d6000803e3d6000fd5b505050506040513d6020811015610e8857600080fd5b5051905080610e9e575043600290910155610f11565b6000610eae8360020154436112e2565b90506000610edb600d54610d448660010154610ed5600354876122a190919063ffffffff16565b906122a1565b9050610efe610ef384610d448464e8d4a510006122a1565b600386015490612240565b6003850155505043600290920191909155505b50565b6000600b8281548110610f2357fe5b60009182526020808320858452600c82526040808520338087529352909320805460049093029093018054909450610f68926001600160a01b03919091169190612513565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b600b5460005b81811015610fce57610fc681610de4565b600101610fb5565b5050565b610fda61223c565b6000546001600160a01b0390811691161461102a576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600554604080516340c10f1960e01b815233600482015234602482015290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156110c657600080fd5b505af11580156110da573d6000803e3d6000fd5b50505050565b60055460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561113357600080fd5b505af1158015611147573d6000803e3d6000fd5b505060405133925083156108fc02915083906000818181858888f19350505050158015610fce573d6000803e3d6000fd5b600a5460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b1580156111cb57600080fd5b505af11580156111df573d6000803e3d6000fd5b50506007546040805163a9059cbb60e01b81523360048201526024810186905290516001600160a01b03909216935063a9059cbb92506044808201926020929091908290030181600087803b15801561123757600080fd5b505af115801561124b573d6000803e3d6000fd5b505050506040513d6020811015610c6257600080fd5b600181565b6001546001600160a01b031633146112b1576040805162461bcd60e51b81526020600482015260096024820152686465763a207775743f60b81b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b600060025482116112fe576112f7828461233c565b9050611341565b6002548310611316576112f76001610ed5848661233c565b6112f761132e6002548461233c90919063ffffffff16565b60025461133b908661233c565b90612240565b92915050565b600c6020908152600092835260408084209091529082529020805460019091015482565b61137361223c565b6000546001600160a01b039081169116146113c3576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b610fce828261237e565b6113d561223c565b6000546001600160a01b03908116911614611425576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60638411156114a757801561143c5761143c610faf565b6114768261133b600b606488038154811061145357fe5b906000526020600020906004020160010154600d5461233c90919063ffffffff16565b600d8190555081600b606486038154811061148d57fe5b9060005260206000209060040201600101819055506110da565b80156114bc576114b78484612565565b6110da565b81611579576000600b85815481106114d057fe5b600091825260208083206004928302018054604080516370a0823160e01b81526001600160a01b038b81169682019690965290519296509316926370a08231926024808301939192829003018186803b15801561152c57600080fd5b505afa158015611540573d6000803e3d6000fd5b505050506040513d602081101561155657600080fd5b50518254909150611572906001600160a01b03168633846125c9565b50506110da565b6000600b858154811061158857fe5b6000918252602090912060049091020180549091506109e5906001600160a01b03168533866125c9565b6115ba61223c565b6000546001600160a01b0390811691161461160a576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b8061167d57600654604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b15801561166457600080fd5b505af1158015611678573d6000803e3d6000fd5b505050505b80600114156116f457600a54604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b1580156116db57600080fd5b505af11580156116ef573d6000803e3d6000fd5b505050505b806002141561176b57600954604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b15801561175257600080fd5b505af1158015611766573d6000803e3d6000fd5b505050505b8060031415610c6257600554604080516340c10f1960e01b81526001600160a01b03868116600483015260248201869052915191909216916340c10f1991604480830192600092919082900301818387803b1580156117c957600080fd5b505af11580156117dd573d6000803e3d6000fd5b50505050505050565b6117ee61223c565b6000546001600160a01b0390811691161461183e576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60065460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561189157600080fd5b505af11580156118a5573d6000803e3d6000fd5b5050600480546040805163a9059cbb60e01b8152339381019390935260248301869052516001600160a01b03909116935063a9059cbb925060448083019260209291908290030181600087803b15801561123757600080fd5b61190661223c565b6000546001600160a01b03908116911614611956576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b600480546040805163a9059cbb60e01b8152339381019390935260248301849052516001600160a01b039091169163a9059cbb9160448083019260209291908290030181600087803b1580156119ab57600080fd5b505af11580156119bf573d6000803e3d6000fd5b505050506040513d60208110156119d557600080fd5b5050600654604080516340c10f1960e01b81523360048201526024810184905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156109d157600080fd5b611a3261223c565b6000546001600160a01b03908116911614611a82576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b80611af55760065460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b158015611adc57600080fd5b505af1158015611af0573d6000803e3d6000fd5b505050505b8060011415611b6c57600a5460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b158015611b5357600080fd5b505af1158015611b67573d6000803e3d6000fd5b505050505b8060021415611be35760095460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b158015611bca57600080fd5b505af1158015611bde573d6000803e3d6000fd5b505050505b8060031415610c625760055460408051632770a7eb60e21b81526001600160a01b0386811660048301526024820186905291519190921691639dc29fac91604480830192600092919082900301818387803b1580156117c957600080fd5b600080600b8481548110611c5157fe5b60009182526020808320878452600c825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b158015611ccf57600080fd5b505afa158015611ce3573d6000803e3d6000fd5b505050506040513d6020811015611cf957600080fd5b5051600285015490915043118015611d1057508015155b15611d70576000611d258560020154436112e2565b90506000611d4c600d54610d448860010154610ed5600354876122a190919063ffffffff16565b9050611d6b611d6484610d448464e8d4a510006122a1565b8590612240565b935050505b611d988360010154610d4a64e8d4a51000610d448688600001546122a190919063ffffffff16565b979650505050505050565b6008546001600160a01b031681565b6005546001600160a01b031681565b6007546001600160a01b031681565b6001546001600160a01b031681565b611de761223c565b6000546001600160a01b03908116911614611e37576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b6008546040805163a9059cbb60e01b81523360048201526024810184905290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b158015611e8b57600080fd5b505af1158015611e9f573d6000803e3d6000fd5b505050506040513d6020811015611eb557600080fd5b5050600554604080516340c10f1960e01b81523360048201526024810184905290516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b1580156109d157600080fd5b611f1261223c565b6000546001600160a01b03908116911614611f62576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b60055460408051632770a7eb60e21b81523360048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b158015611fb557600080fd5b505af1158015611fc9573d6000803e3d6000fd5b50506008546040805163a9059cbb60e01b81523360048201526024810186905290516001600160a01b03909216935063a9059cbb92506044808201926020929091908290030181600087803b15801561123757600080fd5b6009546001600160a01b031681565b6000600b838154811061203f57fe5b60009182526020808320868452600c8252604080852033865290925292206004909102909101915061207084610de4565b8054156120b35760006120a58260010154610d4a64e8d4a51000610d44876003015487600001546122a190919063ffffffff16565b90506120b1338261237e565b505b81546120ca906001600160a01b03163330866125c9565b80546120d69084612240565b80825560038301546120f39164e8d4a5100091610d4491906122a1565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6006546001600160a01b031681565b61214c61223c565b6000546001600160a01b0390811691161461219c576040805162461bcd60e51b815260206004820181905260248201526000805160206129d5833981519152604482015290519081900360640190fd5b6001600160a01b0381166121e15760405162461bcd60e51b815260040180806020018281038252602681526020018061298e6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b60008282018381101561229a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000826122b057506000611341565b828202828482816122bd57fe5b041461229a5760405162461bcd60e51b81526004018080602001828103825260218152602001806129b46021913960400191505060405180910390fd5b600061229a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612623565b600061229a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126c5565b60048054604080516370a0823160e01b81523093810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b1580156123cd57600080fd5b505afa1580156123e1573d6000803e3d6000fd5b505050506040513d60208110156123f757600080fd5b505190508082111561248f57600480546040805163a9059cbb60e01b81526001600160a01b0387811694820194909452602481018590529051929091169163a9059cbb916044808201926020929091908290030181600087803b15801561245d57600080fd5b505af1158015612471573d6000803e3d6000fd5b505050506040513d602081101561248757600080fd5b50610c629050565b600480546040805163a9059cbb60e01b81526001600160a01b0387811694820194909452602481018690529051929091169163a9059cbb916044808201926020929091908290030181600087803b1580156124e957600080fd5b505af11580156124fd573d6000803e3d6000fd5b505050506040513d60208110156109e557600080fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c6290849061271f565b6000600b838154811061257457fe5b60009182526020808320868452600c825260408085206001600160a01b03808916875293529093208054600490930290930180549094506125b9929116903390612513565b6000808255600190910155505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526110da90859061271f565b600081836126af5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561267457818101518382015260200161265c565b50505050905090810190601f1680156126a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816126bb57fe5b0495945050505050565b600081848411156127175760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561267457818101518382015260200161265c565b505050900390565b6060612774826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166127d09092919063ffffffff16565b805190915015610c625780806020019051602081101561279357600080fd5b5051610c625760405162461bcd60e51b815260040180806020018281038252602a8152602001806129f5602a913960400191505060405180910390fd5b60606127df84846000856127e7565b949350505050565b60606127f285612954565b612843576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106128825780518252601f199092019160209182019101612863565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146128e4576040519150601f19603f3d011682016040523d82523d6000602084013e6128e9565b606091505b509150915081156128fd5791506127df9050565b80511561290d5780518082602001fd5b60405162461bcd60e51b815260206004820181815286516024840152865187939192839260440191908501908083836000831561267457818101518382015260200161265c565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906127df57505015159291505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212201815fcdb491783acb2025915d1f87ae399dc25802d8a5df5d0f9bc909cc8609864736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004ddc2d193948926d02f9b1fe9e1daa0718270ed50000000000000000000000003a3a65aab0dd2a17e3f1947ba16138cd37d08c04000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000dcb5c910f0634d93035a3408956fcb3e69fd37f3000000000000000000000000a0ff8ecc872b3ffd07a4b72a8d21b1c5082f4342000000000000000000000000abd6c2bbeb1aaa3bc84b224835f5e542abf2d8af0000000000000000000000003931e84b6d866a38b371e02385dbee1b12f89eac000000000000000000000000715203e6b96e27c1dd8e4156050422a936b52e470000000000000000000000000000000000000000000000000012278496cd600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _ceth (address): 0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5
Arg [1] : _aeth (address): 0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04
Arg [2] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [3] : _xaeth (address): 0xDCb5c910f0634D93035A3408956Fcb3e69Fd37F3
Arg [4] : _xweth (address): 0xa0ff8ECc872b3FFD07a4B72a8D21B1c5082f4342
Arg [5] : _axETH (address): 0xaBD6C2bBEB1aaA3bC84B224835f5e542ABf2d8AF
Arg [6] : _cxETH (address): 0x3931e84b6d866A38b371E02385dBeE1B12f89eAc
Arg [7] : _devaddr (address): 0x715203e6B96E27c1dd8E4156050422A936b52e47
Arg [8] : _WethPerBlock (uint256): 5110000000000000
Arg [9] : _startBlock (uint256): 0
Arg [10] : _bonusEndBlock (uint256): 0
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000004ddc2d193948926d02f9b1fe9e1daa0718270ed5
Arg [1] : 0000000000000000000000003a3a65aab0dd2a17e3f1947ba16138cd37d08c04
Arg [2] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [3] : 000000000000000000000000dcb5c910f0634d93035a3408956fcb3e69fd37f3
Arg [4] : 000000000000000000000000a0ff8ecc872b3ffd07a4b72a8d21b1c5082f4342
Arg [5] : 000000000000000000000000abd6c2bbeb1aaa3bc84b224835f5e542abf2d8af
Arg [6] : 0000000000000000000000003931e84b6d866a38b371e02385dbee1b12f89eac
Arg [7] : 000000000000000000000000715203e6b96e27c1dd8e4156050422a936b52e47
Arg [8] : 0000000000000000000000000000000000000000000000000012278496cd6000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
33731:13164:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44917:157;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44917:157:0;;:::i;:::-;;37132:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;35872:26;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35872:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;35872:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43648:170;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43648:170:0;;:::i;36112:34::-;;;;;;;;;;;;;:::i;35305:28::-;;;;;;;;;;;;;:::i;37702:572::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37702:572:0;;;-1:-1:-1;;;;;37702:572:0;;;;;;;;;;;;:::i;35379:27::-;;;;;;;;;;;;;:::i;35818:18::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;35818:18:0;;;;;;;;;;;;;;35532:17;;;;;;;;;;;;;:::i;42473:652::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42473:652:0;;;;;;;:::i;36203:25::-;;;;;;;;;;;;;:::i;41003:687::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41003:687:0;;:::i;43198:356::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43198:356:0;;:::i;40745:180::-;;;;;;;;;;;;;:::i;20516:148::-;;;;;;;;;;;;;:::i;45567:97::-;;;:::i;45672:140::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45672:140:0;;:::i;45082:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45082:147:0;;:::i;35460:44::-;;;;;;;;;;;;;:::i;44397:129::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44397:129:0;-1:-1:-1;;;;;44397:129:0;;:::i;19874:79::-;;;;;;;;;;;;;:::i;39439:401::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39439:401:0;;;;;;;:::i;35951:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35951:66:0;;;;;;-1:-1:-1;;;;;35951:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44215:126;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44215:126:0;;;;;;;;:::i;38370:991::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38370:991:0;;;-1:-1:-1;;;;;38370:991:0;;;;;;;;;;;;;;;;;:::i;45852:494::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45852:494:0;;;;;;;;;;;;;:::i;44752:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44752:157:0;;:::i;44587:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44587:157:0;;:::i;46394:492::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46394:492:0;;;;;;;;;;;;;:::i;39903:759::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39903:759:0;;;;;;-1:-1:-1;;;;;39903:759:0;;:::i;35722:18::-;;;;;;;;;;;;;:::i;35578:::-;;;;;;;;;;;;;:::i;35674:::-;;;;;;;;;;;;;:::i;35226:22::-;;;;;;;;;;;;;:::i;45237:157::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45237:157:0;;:::i;45402:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45402:157:0;;:::i;35770:18::-;;;;;;;;;;;;;:::i;41761:656::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41761:656:0;;;;;;;:::i;35625:18::-;;;;;;;;;;;;;:::i;20819:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20819:244:0;-1:-1:-1;;;;;20819:244:0;;:::i;44917:157::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;44989:4:::1;::::0;:34:::1;::::0;;-1:-1:-1;;;44989:34:0;;45003:10:::1;44989:34;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;44989:4:0;;::::1;::::0;:13:::1;::::0;:34;;;;;::::1;::::0;;;;;;;;;:4:::1;::::0;:34;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;45034:5:0::1;::::0;:32:::1;::::0;;-1:-1:-1;;;45034:32:0;;45046:10:::1;45034:32;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;45034:5:0;;::::1;::::0;:10:::1;::::0;:32;;;;;:5:::1;::::0;:32;;;;;;;;:5;;:32;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44917:157:::0;:::o;37132:95::-;37204:8;:15;37132:95;:::o;35872:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35872:26:0;;;;-1:-1:-1;35872:26:0;;;:::o;43648:170::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;43748:1:::1;43732:13;:17;43724:45;;;::::0;;-1:-1:-1;;;43724:45:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43724:45:0;;;;;;;;;;;;;::::1;;43782:12;:28:::0;43648:170::o;36112:34::-;;;;:::o;35305:28::-;;;;:::o;37702:572::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;37803:11:::1;37799:468;;;37831:17;:15;:17::i;:::-;37799:468;;;37890:23;37931:10;;37916:12;:25;:53;;37959:10;;37916:53;;;37944:12;37916:53;38002:15;::::0;37890:79;;-1:-1:-1;38002:32:0::1;::::0;38022:11;38002:19:::1;:32::i;:::-;37984:15;:50:::0;38063:191:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;38063:191:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;38063:191:0;;;;;;38049:8:::1;:206:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;38049:206:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;37799:468:::1;37702:572:::0;;;:::o;35379:27::-;;;;:::o;35818:18::-;;;-1:-1:-1;;;;;35818:18:0;;:::o;35532:17::-;;;-1:-1:-1;;;;;35532:17:0;;:::o;42473:652::-;42540:21;42564:8;42573:4;42564:14;;;;;;;;;;;;;;;;42613;;;:8;:14;;;;;;42628:10;42613:26;;;;;;;42658:11;;42564:14;;;;;;;;-1:-1:-1;42658:22:0;-1:-1:-1;42658:22:0;42650:53;;;;;-1:-1:-1;;;42650:53:0;;;;;;;;;;;;-1:-1:-1;;;42650:53:0;;;;;;;;;;;;;;;42714:16;42725:4;42714:10;:16::i;:::-;42741:15;42759:68;42811:4;:15;;;42759:47;42801:4;42759:37;42775:4;:20;;;42759:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47::i;:::-;:51;;:68::i;:::-;42741:86;;42838:37;42855:10;42867:7;42838:16;:37::i;:::-;42900:11;;:24;;42916:7;42900:15;:24::i;:::-;42886:38;;;42969:20;;;;42953:47;;42995:4;;42953:37;;42886:38;42953:15;:37::i;:47::-;42935:15;;;:65;43011:12;;:55;;-1:-1:-1;;;;;43011:12:0;43045:10;43058:7;43011:25;:55::i;:::-;43082:35;;;;;;;;43103:4;;43091:10;;43082:35;;;;;;;;;42473:652;;;;;:::o;36203:25::-;;;;:::o;41003:687::-;41055:21;41079:8;41088:4;41079:14;;;;;;;;;;;;;;;;;;41055:38;;41124:4;:20;;;41108:12;:36;41104:75;;41161:7;;;41104:75;41208:12;;:37;;;-1:-1:-1;;;41208:37:0;;41239:4;41208:37;;;;;;41189:16;;-1:-1:-1;;;;;41208:12:0;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41208:37:0;;-1:-1:-1;41260:13:0;41256:102;;-1:-1:-1;41313:12:0;41290:20;;;;:35;41340:7;;41256:102;41368:18;41389:49;41403:4;:20;;;41425:12;41389:13;:49::i;:::-;41368:70;;41449:18;41470:70;41524:15;;41470:49;41503:4;:15;;;41470:28;41485:12;;41470:10;:14;;:28;;;;:::i;:::-;:32;;:49::i;:70::-;41449:91;-1:-1:-1;41576:60:0;41601:34;41626:8;41601:20;41449:91;41616:4;41601:14;:20::i;:34::-;41576:20;;;;;:24;:60::i;:::-;41553:20;;;:83;-1:-1:-1;;41670:12:0;41647:20;;;;:35;;;;-1:-1:-1;41003:687:0;;:::o;43198:356::-;43257:21;43281:8;43290:4;43281:14;;;;;;;;;;;;;;;;43330;;;:8;:14;;;;;;43345:10;43330:26;;;;;;;;43414:11;;43281:14;;;;;;;43367:12;;43281:14;;-1:-1:-1;43367:59:0;;-1:-1:-1;;;;;43367:12:0;;;;;43345:10;43367:25;:59::i;:::-;43478:11;;43442:48;;;;;;;43472:4;;43460:10;;43442:48;;;;;;;;;43515:1;43501:15;;;43527;;;;:19;-1:-1:-1;;43198:356:0:o;40745:180::-;40807:8;:15;40790:14;40833:85;40861:6;40855:3;:12;40833:85;;;40891:15;40902:3;40891:10;:15::i;:::-;40869:5;;40833:85;;;;40745:180;:::o;20516:148::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;20623:1:::1;20607:6:::0;;20586:40:::1;::::0;-1:-1:-1;;;;;20607:6:0;;::::1;::::0;20586:40:::1;::::0;20623:1;;20586:40:::1;20654:1;20637:19:::0;;-1:-1:-1;;;;;;20637:19:0::1;::::0;;20516:148::o;45567:97::-;45623:5;;:33;;;-1:-1:-1;;;45623:33:0;;45634:10;45623:33;;;;45646:9;45623:33;;;;;;-1:-1:-1;;;;;45623:5:0;;;;:10;;:33;;;;;:5;;:33;;;;;;;;:5;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45567:97::o;45672:140::-;45734:5;;:31;;;-1:-1:-1;;;45734:31:0;;45745:10;45734:31;;;;;;;;;;;;-1:-1:-1;;;;;45734:5:0;;;;:10;;:31;;;;;:5;;:31;;;;;;;;:5;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45776:28:0;;:10;;-1:-1:-1;45776:28:0;;;;;-1:-1:-1;45796:7:0;;45776:28;;;;45796:7;45776:10;:28;;;;;;;;;;;;;;;;;;;45082:147;45145:5;;:31;;;-1:-1:-1;;;45145:31:0;;45156:10;45145:31;;;;;;;;;;;;-1:-1:-1;;;;;45145:5:0;;;;:10;;:31;;;;;:5;;:31;;;;;;;;:5;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45187:4:0;;:34;;;-1:-1:-1;;;45187:34:0;;45201:10;45187:34;;;;;;;;;;;;-1:-1:-1;;;;;45187:4:0;;;;-1:-1:-1;45187:13:0;;-1:-1:-1;45187:34:0;;;;;;;;;;;;;;;:4;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35460:44;35503:1;35460:44;:::o;44397:129::-;44468:7;;-1:-1:-1;;;;;44468:7:0;44454:10;:21;44446:43;;;;;-1:-1:-1;;;44446:43:0;;;;;;;;;;;;-1:-1:-1;;;44446:43:0;;;;;;;;;;;;;;;44500:7;:18;;-1:-1:-1;;;;;;44500:18:0;-1:-1:-1;;;;;44500:18:0;;;;;;;;;;44397:129::o;19874:79::-;19912:7;19939:6;-1:-1:-1;;;;;19939:6:0;19874:79;:::o;39439:401::-;39511:7;39542:13;;39535:3;:20;39531:302;;39579:14;:3;39587:5;39579:7;:14::i;:::-;39572:21;;;;39531:302;39624:13;;39615:5;:22;39611:222;;39661:36;35503:1;39661:14;:3;39669:5;39661:7;:14::i;39611:222::-;39737:84;39784:22;39792:13;;39784:3;:7;;:22;;;;:::i;:::-;39737:13;;:24;;39755:5;39737:17;:24::i;:::-;:28;;:84::i;39611:222::-;39439:401;;;;:::o;35951:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44215:126::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;44302:31:::1;44320:3;44325:7;44302:16;:31::i;38370:991::-:0;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;38490:2:::1;38485:4;:7;38482:872;;;38512:11;38508:69;;;38544:17;:15;:17::i;:::-;38609:69;38666:11;38609:52;38629:8;38645:3;38638:4;:10;38629:20;;;;;;;;;;;;;;;;;;:31;;;38609:15;;:19;;:52;;;;:::i;:69::-;38591:15;:87;;;;38727:11;38693:8;38709:3;38702:4;:10;38693:20;;;;;;;;;;;;;;;;;;:31;;:45;;;;38482:872;;;38783:11;38779:564;;;38811:26;38823:4;38829:7;38811:11;:26::i;:::-;38779:564;;;38875:16:::0;38872:471:::1;;38912:21;38936:8;38945:4;38936:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;38993:12:::0;;:40:::1;::::0;;-1:-1:-1;;;38993:40:0;;-1:-1:-1;;;;;38993:40:0;;::::1;::::0;;::::1;::::0;;;;;;38936:14;;-1:-1:-1;38993:12:0;::::1;::::0;:22:::1;::::0;:40;;;;;38936:14;;38993:40;;;;;:12;:40;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38993:40:0;39052:12;;38993:40;;-1:-1:-1;39052:83:0::1;::::0;-1:-1:-1;;;;;39052:12:0::1;39090:7:::0;39108:10:::1;38993:40:::0;39052:29:::1;:83::i;:::-;38872:471;;;;;39189:21;39213:8;39222:4;39213:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;39246:12:::0;;39213:14;;-1:-1:-1;39246:81:0::1;::::0;-1:-1:-1;;;;;39246:12:0::1;39284:7:::0;39302:10:::1;39315:11:::0;39246:29:::1;:81::i;45852:494::-:0;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;45970:14;45967:80:::1;;46006:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46006:29:0;;-1:-1:-1;;;;;46006:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45967:80;46062:11;46075:1;46062:14;46059:80;;;46098:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46098:29:0;;-1:-1:-1;;;;;46098:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46059:80;46162:11;46175:1;46162:14;46159:80;;;46198:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46198:29:0;;-1:-1:-1;;;;;46198:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46159:80;46262:11;46275:1;46262:14;46259:80;;;46298:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46298:29:0;;-1:-1:-1;;;;;46298:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45852:494:::0;;;:::o;44752:157::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;44825:5:::1;::::0;:31:::1;::::0;;-1:-1:-1;;;44825:31:0;;44836:10:::1;44825:31;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;44825:5:0;;::::1;::::0;:10:::1;::::0;:31;;;;;:5:::1;::::0;:31;;;;;;;;:5;;:31;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;44867:4:0::1;::::0;;:34:::1;::::0;;-1:-1:-1;;;44867:34:0;;44881:10:::1;44867:34:::0;;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;44867:4:0;;::::1;::::0;-1:-1:-1;44867:13:0::1;::::0;-1:-1:-1;44867:34:0;;;;;::::1;::::0;;;;;;;;:4:::1;::::0;:34;::::1;;::::0;::::1;;;;::::0;::::1;44587:157:::0;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;44659:4:::1;::::0;;:34:::1;::::0;;-1:-1:-1;;;44659:34:0;;44673:10:::1;44659:34:::0;;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;44659:4:0;;::::1;::::0;:13:::1;::::0;:34;;;;;::::1;::::0;;;;;;;;:4:::1;::::0;:34;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;44704:5:0::1;::::0;:32:::1;::::0;;-1:-1:-1;;;44704:32:0;;44716:10:::1;44704:32;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;44704:5:0;;::::1;::::0;:10:::1;::::0;:32;;;;;:5:::1;::::0;:32;;;;;;;;:5;;:32;::::1;;::::0;::::1;;;;::::0;::::1;46394:492:::0;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;46510:14;46507:80:::1;;46546:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46546:29:0;;-1:-1:-1;;;;;46546:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46507:80;46602:11;46615:1;46602:14;46599:80;;;46638:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46638:29:0;;-1:-1:-1;;;;;46638:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46599:80;46702:11;46715:1;46702:14;46699:80;;;46738:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46738:29:0;;-1:-1:-1;;;;;46738:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46699:80;46802:11;46815:1;46802:14;46799:80;;;46838:5;::::0;:29:::1;::::0;;-1:-1:-1;;;46838:29:0;;-1:-1:-1;;;;;46838:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;39903:759:::0;39976:7;39996:21;40020:8;40029:4;40020:14;;;;;;;;;;;;;;;;40069;;;:8;:14;;;;;;-1:-1:-1;;;;;40069:21:0;;;;;;;;;;;40020:14;;;;;;;40127:20;;;;40177:12;;:37;;-1:-1:-1;;;40177:37:0;;40208:4;40177:37;;;;;;;;;40020:14;;-1:-1:-1;40069:21:0;;40127:20;;40020:14;;40177:12;;;;;:22;;:37;;;;;40020:14;;40177:37;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40177:37:0;40244:20;;;;40177:37;;-1:-1:-1;40229:12:0;:35;:52;;;;-1:-1:-1;40268:13:0;;;40229:52;40225:349;;;40298:18;40319:49;40333:4;:20;;;40355:12;40319:13;:49::i;:::-;40298:70;;40383:18;40404:70;40458:15;;40404:49;40437:4;:15;;;40404:28;40419:12;;40404:10;:14;;:28;;;;:::i;:70::-;40383:91;-1:-1:-1;40507:55:0;40527:34;40552:8;40527:20;40383:91;40542:4;40527:14;:20::i;:34::-;40507:15;;:19;:55::i;:::-;40489:73;;40225:349;;;40591:63;40638:4;:15;;;40591:42;40628:4;40591:32;40607:15;40591:4;:11;;;:15;;:32;;;;:::i;:63::-;40584:70;39903:759;-1:-1:-1;;;;;;;39903:759:0:o;35722:18::-;;;-1:-1:-1;;;;;35722:18:0;;:::o;35578:::-;;;-1:-1:-1;;;;;35578:18:0;;:::o;35674:::-;;;-1:-1:-1;;;;;35674:18:0;;:::o;35226:22::-;;;-1:-1:-1;;;;;35226:22:0;;:::o;45237:157::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;45309:4:::1;::::0;:34:::1;::::0;;-1:-1:-1;;;45309:34:0;;45323:10:::1;45309:34;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;45309:4:0;;::::1;::::0;:13:::1;::::0;:34;;;;;::::1;::::0;;;;;;;;;:4:::1;::::0;:34;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;45354:5:0::1;::::0;:32:::1;::::0;;-1:-1:-1;;;45354:32:0;;45366:10:::1;45354:32;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;45354:5:0;;::::1;::::0;:10:::1;::::0;:32;;;;;:5:::1;::::0;:32;;;;;;;;:5;;:32;::::1;;::::0;::::1;;;;::::0;::::1;45402:157:::0;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;45475:5:::1;::::0;:31:::1;::::0;;-1:-1:-1;;;45475:31:0;;45486:10:::1;45475:31;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;45475:5:0;;::::1;::::0;:10:::1;::::0;:31;;;;;:5:::1;::::0;:31;;;;;;;;:5;;:31;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;45517:4:0::1;::::0;:34:::1;::::0;;-1:-1:-1;;;45517:34:0;;45531:10:::1;45517:34;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;;;;;45517:4:0;;::::1;::::0;-1:-1:-1;45517:13:0::1;::::0;-1:-1:-1;45517:34:0;;;;;::::1;::::0;;;;;;;;;:4:::1;::::0;:34;::::1;;::::0;::::1;;;;::::0;::::1;35770:18:::0;;;-1:-1:-1;;;;;35770:18:0;;:::o;41761:656::-;41827:21;41851:8;41860:4;41851:14;;;;;;;;;;;;;;;;41900;;;:8;:14;;;;;;41915:10;41900:26;;;;;;;41851:14;;;;;;;;-1:-1:-1;41937:16:0;41909:4;41937:10;:16::i;:::-;41968:11;;:15;41964:186;;42000:15;42018:68;42070:4;:15;;;42018:47;42060:4;42018:37;42034:4;:20;;;42018:4;:11;;;:15;;:37;;;;:::i;:68::-;42000:86;;42101:37;42118:10;42130:7;42101:16;:37::i;:::-;41964:186;;42160:12;;:74;;-1:-1:-1;;;;;42160:12:0;42198:10;42219:4;42226:7;42160:29;:74::i;:::-;42259:11;;:24;;42275:7;42259:15;:24::i;:::-;42245:38;;;42328:20;;;;42312:47;;42354:4;;42312:37;;42245:38;42312:15;:37::i;:47::-;42294:15;;;:65;42375:34;;;;;;;;42395:4;;42383:10;;42375:34;;;;;;;;;41761:656;;;;:::o;35625:18::-;;;-1:-1:-1;;;;;35625:18:0;;:::o;20819:244::-;20096:12;:10;:12::i;:::-;20086:6;;-1:-1:-1;;;;;20086:6:0;;;:22;;;20078:67;;;;;-1:-1:-1;;;20078:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20078:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20908:22:0;::::1;20900:73;;;;-1:-1:-1::0;;;20900:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21010:6;::::0;;20989:38:::1;::::0;-1:-1:-1;;;;;20989:38:0;;::::1;::::0;21010:6;::::1;::::0;20989:38:::1;::::0;::::1;21038:6;:17:::0;;-1:-1:-1;;;;;;21038:17:0::1;-1:-1:-1::0;;;;;21038:17:0;;;::::1;::::0;;;::::1;::::0;;20819:244::o;646:106::-;734:10;646:106;:::o;4553:181::-;4611:7;4643:5;;;4667:6;;;;4659:46;;;;;-1:-1:-1;;;4659:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4725:1;4553:181;-1:-1:-1;;;4553:181:0:o;5909:469::-;5967:7;6210:6;6206:47;;-1:-1:-1;6240:1:0;6233:8;;6206:47;6277:5;;;6281:1;6277;:5;:1;6301:5;;;;;:10;6293:56;;;;-1:-1:-1;;;6293:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6854:132;6912:7;6939:39;6943:1;6946;6939:39;;;;;;;;;;;;;;;;;:3;:39::i;5019:136::-;5077:7;5104:43;5108:1;5111;5104:43;;;;;;;;;;;;;;;;;:3;:43::i;43930:277::-;44023:4;;;:29;;;-1:-1:-1;;;44023:29:0;;44046:4;44023:29;;;;;;;;44005:15;;-1:-1:-1;;;;;44023:4:0;;;;:14;;:29;;;;;;;;;;;;;;:4;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44023:29:0;;-1:-1:-1;44067:17:0;;;44063:137;;;44101:4;;;:27;;;-1:-1:-1;;;44101:27:0;;-1:-1:-1;;;;;44101:27:0;;;;;;;;;;;;;;;;;;:4;;;;;:13;;:27;;;;;;;;;;;;;;;:4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44063:137:0;;-1:-1:-1;44063:137:0;;44161:4;;;:27;;;-1:-1:-1;;;44161:27:0;;-1:-1:-1;;;;;44161:27:0;;;;;;;;;;;;;;;;;;:4;;;;;:13;;:27;;;;;;;;;;;;;;;:4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15787:177;15897:58;;;-1:-1:-1;;;;;15897:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15897:58:0;-1:-1:-1;;;15897:58:0;;;15870:86;;15890:5;;15870:19;:86::i;37235:302::-;37307:21;37331:8;37340:4;37331:14;;;;;;;;;;;;;;;;37380;;;:8;:14;;;;;;-1:-1:-1;;;;;37380:23:0;;;;;;;;;;37461:11;;37331:14;;;;;;;37414:12;;37331:14;;-1:-1:-1;37414:59:0;;:12;;;37448:10;;37414:25;:59::i;:::-;37498:1;37484:15;;;37510;;;;:19;-1:-1:-1;;;37235:302:0:o;15972:205::-;16100:68;;;-1:-1:-1;;;;;16100:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16100:68:0;-1:-1:-1;;;16100:68:0;;;16073:96;;16093:5;;16073:19;:96::i;7482:278::-;7568:7;7603:12;7596:5;7588:28;;;;-1:-1:-1;;;7588:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7627:9;7643:1;7639;:5;;;;;;;7482:278;-1:-1:-1;;;;;7482:278:0:o;5458:192::-;5544:7;5580:12;5572:6;;;;5564:29;;;;-1:-1:-1;;;5564:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5616:5:0;;;5458:192::o;18094:761::-;18518:23;18544:69;18572:4;18544:69;;;;;;;;;;;;;;;;;18552:5;-1:-1:-1;;;;;18544:27:0;;;:69;;;;;:::i;:::-;18628:17;;18518:95;;-1:-1:-1;18628:21:0;18624:224;;18770:10;18759:30;;;;;;;;;;;;;;;-1:-1:-1;18759:30:0;18751:85;;;;-1:-1:-1;;;18751:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12809:196;12912:12;12944:53;12967:6;12975:4;12981:1;12984:12;12944:22;:53::i;:::-;12937:60;12809:196;-1:-1:-1;;;;12809:196:0:o;14186:979::-;14316:12;14349:18;14360:6;14349:10;:18::i;:::-;14341:60;;;;;-1:-1:-1;;;14341:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14475:12;14489:23;14516:6;-1:-1:-1;;;;;14516:11:0;14536:8;14547:4;14516:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14516:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14474:78;;;;14567:7;14563:595;;;14598:10;-1:-1:-1;14591:17:0;;-1:-1:-1;14591:17:0;14563:595;14712:17;;:21;14708:439;;14975:10;14969:17;15036:15;15023:10;15019:2;15015:19;15008:44;14923:148;15111:20;;-1:-1:-1;;;15111:20:0;;;;;;;;;;;;;;;;;15118:12;;15111:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9696:619;9756:4;10224:20;;10067:66;10264:23;;;;;;:42;;-1:-1:-1;;10291:15:0;;;10256:51;-1:-1:-1;;9696:619:0:o
Swarm Source
ipfs://1815fcdb491783acb2025915d1f87ae399dc25802d8a5df5d0f9bc909cc86098
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
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.