More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 3,856 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 21725008 | 9 days ago | IN | 0 ETH | 0.00073753 | ||||
Deposit | 21595568 | 27 days ago | IN | 0 ETH | 0.00114228 | ||||
Emergency Withdr... | 20556166 | 172 days ago | IN | 0 ETH | 0.00007609 | ||||
Deposit | 20347163 | 202 days ago | IN | 0 ETH | 0.00043955 | ||||
Deposit | 20346864 | 202 days ago | IN | 0 ETH | 0.00033816 | ||||
Emergency Withdr... | 20346775 | 202 days ago | IN | 0 ETH | 0.00018476 | ||||
Withdraw | 20346766 | 202 days ago | IN | 0 ETH | 0.00037727 | ||||
Withdraw | 20304895 | 208 days ago | IN | 0 ETH | 0.00024027 | ||||
Withdraw | 19946680 | 258 days ago | IN | 0 ETH | 0.00042344 | ||||
Withdraw | 19727371 | 288 days ago | IN | 0 ETH | 0.00093128 | ||||
Update Pool | 19727345 | 288 days ago | IN | 0 ETH | 0.00062339 | ||||
Emergency Withdr... | 19564432 | 311 days ago | IN | 0 ETH | 0.00115601 | ||||
Withdraw | 19564421 | 311 days ago | IN | 0 ETH | 0.00229161 | ||||
Withdraw | 19545544 | 314 days ago | IN | 0 ETH | 0.00183451 | ||||
Withdraw | 19503326 | 320 days ago | IN | 0 ETH | 0.00152749 | ||||
Withdraw | 19445391 | 328 days ago | IN | 0 ETH | 0.00297041 | ||||
Withdraw | 19445382 | 328 days ago | IN | 0 ETH | 0.00328361 | ||||
Deposit | 19352810 | 341 days ago | IN | 0 ETH | 0.0055964 | ||||
Withdraw | 19230685 | 358 days ago | IN | 0 ETH | 0.00176354 | ||||
Withdraw | 19039308 | 385 days ago | IN | 0 ETH | 0.00225375 | ||||
Emergency Withdr... | 18926804 | 401 days ago | IN | 0 ETH | 0.01172387 | ||||
Withdraw | 18843572 | 412 days ago | IN | 0 ETH | 0.00257516 | ||||
Withdraw | 18792099 | 420 days ago | IN | 0 ETH | 0.0077535 | ||||
Withdraw | 18792075 | 420 days ago | IN | 0 ETH | 0.00729433 | ||||
Withdraw | 18792059 | 420 days ago | IN | 0 ETH | 0.00652953 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
FarmV1
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-23 */ // Partial License: MIT pragma solidity ^0.6.0; /** * @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); } // Partial License: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // Partial License: MIT pragma solidity ^0.6.2; /** * @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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // Partial License: MIT pragma solidity ^0.6.0; /** * @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"); } } } // Partial License: MIT pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // Partial License: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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; } } // Partial License: MIT pragma solidity ^0.6.0; /** * @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; } } pragma solidity 0.6.6; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // ETHY Farms // Based on SushiSwaps MasterChef, big credit to the sushiswap dev, // we've left in some of their comments as they described some mechanics perfectly. // Here is a note from sushi dev that is still relevant to this ETHY contract: // - Note that it's ownable and the owner wields tremendous power. The ownership // will be transferred to a governance smart contract once ETHY is sufficiently // distributed and the community can show to govern itself. // // After initial deployment and setup of the base pools, we will look towards // transferring governance over this to a multisignture contract (with community trust // validators). After this the next step will be to "transfer to a governance contract // once the community can show to govern itself." pragma solidity 0.6.6; interface Strategy { function execute(uint256 LP) external; } // ETHY accountant will interface IAccountant { function onSpendLP(uint256 amount) external; function calculateStrategyBudget() external returns (uint256); } interface UpdatedFarms { function depositFor( address pool, address account, uint256 withdrawable, uint256 shares ) external; } // Have fun reading it. Hopefully it's bug-free. God bless. contract FarmV1 is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. uint256 lockedUntil; // The time when tokens can be unlocked. // // We do some fancy math here. Basically, any point in time, the amount of ETHYs // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accEthyPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accEthyPerShare` (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 LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. ETHYs to distribute per block. uint256 lastRewardBlock; // Last block number that ETHYs distribution occurs. uint256 accEthyPerShare; // Accumulated ETHYs per share, times 1e12. See below. uint256 minimumStay; // The minimum length of time a user must stay after depositing // The below variables are related to the ethy strategy: Strategy strat; // Executes a strategy using a given budget. IAccountant accountant; // set the budget strat for this pool. uint256 stratLastCalled; // When the strategy was last called;. uint256 shareTotals; // The sum of all active shares. } // The ETHY token IERC20 public ethy; // Block number when bonus ETHY period ends. uint256 public bonusEndBlock; // ETHY tokens created per block. uint256 public ethyPerBlock; // Bonus muliplier for early ethy makers. uint256 public constant BONUS_MULTIPLIER = 10; bool public canChangeAccountants = true; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; // depositeer mapping (address => bool) public depositeer; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when ETHY mining starts. uint256 public startBlock; // How often strategies can be called uint256 public stratCooldown = 23 hours; // Updated version of this contract, users must consentually // migrate themselves to the newer version. UpdatedFarms public updated; 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( address _ethy, // address _devaddr, uint256 _ethyPerBlock, uint256 _bonusEndBlock ) public { ethy = IERC20(_ethy); // devaddr = _devaddr; ethyPerBlock = _ethyPerBlock; bonusEndBlock = _bonusEndBlock; startBlock = block.number; } // update the ethy block reward, minimum viable block reward is // 210.24 ETHY a year (1e+14 units pre block). Ignoring any // multipliers function updateEthyPerBlock(uint256 _ethyPerBlock) public onlyOwner { require(_ethyPerBlock > 100000000000000, "rewards too Small"); ethyPerBlock = _ethyPerBlock; } function updateVersion(address _updated) public onlyOwner { // still requires users to consentually upgrade themselves updated = UpdatedFarms(_updated); } function disableChangingAccountants() public onlyOwner { canChangeAccountants = false; } function setDepositeer(address _depositeer, bool _enabled) public onlyOwner { depositeer[_depositeer] = _enabled; } function poolLength() external view returns (uint256) { return poolInfo.length; } // Add a new lp to the pool. Can only be called by the owner. // XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do. function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate, address _accountant, address _strat, uint256 _minimumStay ) public onlyOwner { // update all the pools if (_withUpdate) { massUpdatePools(); } // attach new pool uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accEthyPerShare: 0, minimumStay: _minimumStay, strat: Strategy(_strat), accountant: IAccountant(_accountant), // accountant cannot be changed stratLastCalled: 0, shareTotals: 0 })); } // Update the given pool's ETHY allocation point. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, bool _withUpdate) public onlyOwner { if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; } // set a new strategy function setStrat(uint256 _pid, address _strat) public onlyOwner { poolInfo[_pid].strat = Strategy(_strat); // Apply a double cooldown to give the accountant contract time to respond. // IAccountant can slash the strat if the calldown. poolInfo[_pid].stratLastCalled = block.timestamp.add(stratCooldown); } function setAccountant(uint256 _pid, address _accountant) public onlyOwner { require(canChangeAccountants, "can no longer change accountants"); poolInfo[_pid].accountant = IAccountant(_accountant); } // 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).mul(BONUS_MULTIPLIER); } else if (_from >= bonusEndBlock) { return _to.sub(_from); } else { return bonusEndBlock.sub(_from).mul(BONUS_MULTIPLIER).add( _to.sub(bonusEndBlock) ); } } // View function to see pending ETHYs on frontend. function pendingEthy(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accEthyPerShare = pool.accEthyPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 ethyReward = multiplier.mul(ethyPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accEthyPerShare = accEthyPerShare.add(ethyReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accEthyPerShare).div(1e12).sub(user.rewardDebt); } // Update reward variables 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 ethyReward = multiplier.mul(ethyPerBlock).mul(pool.allocPoint).div(totalAllocPoint); // Reserve claim ??? // sushi.mint(devaddr, sushiReward.div(10)); // sushi.mint(address(this), sushiReward); pool.accEthyPerShare = pool.accEthyPerShare.add(ethyReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } function depositFor(address _user, uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; require(msg.sender == _user || depositeer[msg.sender], "invalid depositeer"); updatePool(_pid); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accEthyPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeEthyTransfer(_user, pending); } } if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); pool.shareTotals = pool.shareTotals.add(_amount); user.lockedUntil = block.timestamp.add(pool.minimumStay); } user.rewardDebt = user.amount.mul(pool.accEthyPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } // Deposit LP tokens to MasterChef for ETHY allocation. function deposit(uint256 _pid, uint256 _amount) public { depositFor(msg.sender, _pid, _amount); } // Withdraw LP tokens from MasterChef. 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.accEthyPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeEthyTransfer(msg.sender, pending); } // do the withdraw if(_amount > 0) { // prevent users from withdrawing early require(block.timestamp >= user.lockedUntil, "cannot withdraw early"); user.amount = user.amount.sub(_amount); // calculate withdrawable amount uint256 withdrawable = calculateWithdrawable(_pid, _amount); pool.shareTotals = pool.shareTotals.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), withdrawable); } user.rewardDebt = user.amount.mul(pool.accEthyPerShare).div(1e12); 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]; // prevent users from withdrawing early require(block.timestamp >= user.lockedUntil, "cannot withdraw early"); uint256 amount = user.amount; user.amount = 0; // goodbye shares user.rewardDebt = 0; // goodbye debt // calculate withdrawable balance uint256 withdrawable = calculateWithdrawable(_pid, amount); pool.shareTotals = pool.shareTotals.sub(amount); // transfer users their LP pool.lpToken.safeTransfer(address(msg.sender), withdrawable); emit EmergencyWithdraw(msg.sender, _pid, amount); } // Safe ethy transfer function, just in case if rounding error causes pool to not have enough EHTY. function safeEthyTransfer(address _to, uint256 _amount) internal { uint256 ethyBal = ethy.balanceOf(address(this)); if (_amount > ethyBal) { ethy.transfer(_to, ethyBal); } else { ethy.transfer(_to, _amount); } } // Calculates the LP value of shares (user.amount). // As LP tokens are spent by the strategy, total shares // will diverge from the total LP function calculateWithdrawable(uint256 _pid, uint256 _amount) public view returns(uint256) { PoolInfo storage pool = poolInfo[_pid]; return _amount.mul(pool.lpToken.balanceOf(address(this))).div(pool.shareTotals); } // strategy execution has a cooldown, if strategy is changed the // cooldown is doubled, giving the accountant smart contract time to // adjust balance. // // Even still strategy execution is limited by a maximum budget of // 10% of the liquidity. function executeStrategy(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; require(address(pool.strat) != address(0), "no strategy set"); require(block.timestamp > pool.stratLastCalled.add(stratCooldown) , "this strategy is on cooldown"); pool.stratLastCalled = block.timestamp; // calculate the maximum budget that the strategy can uses uint256 totalLP = pool.lpToken.balanceOf(address(this)); uint256 maxBudget = totalLP.mul(10).div(100); // 10% // use budget set by the accountant uint256 budget = pool.accountant.calculateStrategyBudget(); if (budget > maxBudget) { budget = maxBudget;} // spend the budget on strategy pool.accountant.onSpendLP(budget); // tell accountant budget has been spent pool.lpToken.safeTransfer(address(pool.strat), budget); pool.strat.execute(budget); // execute the budget } // consentually update yourself to a new version of this pool function upgradeSelf(uint256 _pid) public { require(address(updated) != address(0), "no updated farm to move too..."); PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; // amount uint256 amount = user.amount; require(amount > 0, "nothing to upgrade"); // claim your rewards before you upgrade otherwise // they are lost forever. user.amount = 0; user.rewardDebt = 0; // withdrawable uint256 withdrawable = calculateWithdrawable(_pid, amount); // allow the pool to move your LP tokens pool.lpToken.safeIncreaseAllowance(address(updated), withdrawable); // update yourself updated.depositFor( address(pool.lpToken), msg.sender, withdrawable, amount ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_ethy","type":"address"},{"internalType":"uint256","name":"_ethyPerBlock","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":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"},{"internalType":"address","name":"_accountant","type":"address"},{"internalType":"address","name":"_strat","type":"address"},{"internalType":"uint256","name":"_minimumStay","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"calculateWithdrawable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canChangeAccountants","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"depositeer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableChangingAccountants","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethy","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethyPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"executeStrategy","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":"pendingEthy","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":"accEthyPerShare","type":"uint256"},{"internalType":"uint256","name":"minimumStay","type":"uint256"},{"internalType":"contract Strategy","name":"strat","type":"address"},{"internalType":"contract IAccountant","name":"accountant","type":"address"},{"internalType":"uint256","name":"stratLastCalled","type":"uint256"},{"internalType":"uint256","name":"shareTotals","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":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_accountant","type":"address"}],"name":"setAccountant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_depositeer","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDepositeer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_strat","type":"address"}],"name":"setStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stratCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_ethyPerBlock","type":"uint256"}],"name":"updateEthyPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_updated","type":"address"}],"name":"updateVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updated","outputs":[{"internalType":"contract UpdatedFarms","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"upgradeSelf","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"},{"internalType":"uint256","name":"lockedUntil","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600460006101000a81548160ff021916908315150217905550600060085562014370600a553480156200003857600080fd5b506040516200412638038062004126833981810160405260608110156200005e57600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050506000620000956200019260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35082600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160038190555080600281905550436009819055505050506200019a565b600033905090565b613f7c80620001aa6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c80636fb6075a11610125578063a833a1c9116100ad578063e2bbb1581161007c578063e2bbb15814610952578063ec3b7b781461098a578063f21230c8146109ce578063f2fde38b146109ec578063fe21def414610a3057610211565b8063a833a1c914610826578063ce3dcec714610876578063d371f8fa146108d8578063de2a2176146108f657610211565b80638aa28550116100f45780638aa28550146106b65780638da5cb5b146106d45780638dbb1e3a1461071e57806393f1a40b1461076a578063950dc487146107da57610211565b80636fb6075a146105ea578063715018a6146106345780637b2aab031461063e578063887a2f721461068857610211565b8063441a3e70116101a857806351eb05a61161017757806351eb05a6146105365780635312ea8e14610564578063628b1a5314610592578063630b5ba11461059c57806364482f79146105a657610211565b8063441a3e701461045a57806348cd4cb1146104925780634b2ac3a8146104b05780634cf5fbf5146104de57610211565b80631aed6553116101e45780631aed6553146103725780632275c2471461039057806328754c59146103de57806339f3ce261461040c57610211565b8063081e3eda146102165780630dd1e679146102345780631526fe271461025657806317caf6f114610354575b600080fd5b61021e610ad4565b6040518082815260200191505060405180910390f35b61023c610ae1565b604051808215151515815260200191505060405180910390f35b6102826004803603602081101561026c57600080fd5b8101908080359060200190929190505050610af4565b604051808a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018981526020018881526020018781526020018681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001995050505050505050505060405180910390f35b61035c610baf565b6040518082815260200191505060405180910390f35b61037a610bb5565b6040518082815260200191505060405180910390f35b6103dc600480360360408110156103a657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bbb565b005b61040a600480360360208110156103f457600080fd5b8101908080359060200190929190505050610d1c565b005b6104586004803603604081101561042257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e6a565b005b6104906004803603604081101561047057600080fd5b810190808035906020019092919080359060200190929190505050611016565b005b61049a61131c565b6040518082815260200191505060405180910390f35b6104dc600480360360208110156104c657600080fd5b8101908080359060200190929190505050611322565b005b610534600480360360608110156104f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611694565b005b6105626004803603602081101561054c57600080fd5b81019080803590602001909291905050506119bc565b005b6105906004803603602081101561057a57600080fd5b8101908080359060200190929190505050611b93565b005b61059a611d6f565b005b6105a4611e55565b005b6105e8600480360360608110156105bc57600080fd5b810190808035906020019092919080359060200190929190803515159060200190929190505050611e85565b005b6105f2611fd0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61063c611ff6565b005b61064661217e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106b46004803603602081101561069e57600080fd5b81019080803590602001909291905050506121a4565b005b6106be61267a565b6040518082815260200191505060405180910390f35b6106dc61267f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107546004803603604081101561073457600080fd5b8101908080359060200190929190803590602001909291905050506126a8565b6040518082815260200191505060405180910390f35b6107b66004803603604081101561078057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061275a565b60405180848152602001838152602001828152602001935050505060405180910390f35b610810600480360360408110156107f057600080fd5b810190808035906020019092919080359060200190929190505050612791565b6040518082815260200191505060405180910390f35b6108746004803603604081101561083c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506128be565b005b6108c26004803603604081101561088c57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129e2565b6040518082815260200191505060405180910390f35b6108e0612c3e565b6040518082815260200191505060405180910390f35b6109386004803603602081101561090c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c44565b604051808215151515815260200191505060405180910390f35b6109886004803603604081101561096857600080fd5b810190808035906020019092919080359060200190929190505050612c64565b005b6109cc600480360360208110156109a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c73565b005b6109d6612d80565b6040518082815260200191505060405180910390f35b610a2e60048036036020811015610a0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d86565b005b610ad2600480360360c0811015610a4657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612f93565b005b6000600580549050905090565b600460009054906101000a900460ff1681565b60058181548110610b0157fe5b90600052602060002090600902016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060070154908060080154905089565b60085481565b60025481565b610bc361326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060058381548110610c9257fe5b906000526020600020906009020160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610cf6600a544261327290919063ffffffff16565b60058381548110610d0357fe5b9060005260206000209060090201600701819055505050565b610d2461326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b655af3107a40008111610e60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f7265776172647320746f6f20536d616c6c00000000000000000000000000000081525060200191505060405180910390fd5b8060038190555050565b610e7261326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460009054906101000a900460ff16610fb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f63616e206e6f206c6f6e676572206368616e6765206163636f756e74616e747381525060200191505060405180910390fd5b8060058381548110610fc357fe5b906000526020600020906009020160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006005838154811061102557fe5b9060005260206000209060090201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b61110c846119bc565b6000611156826001015461114864e8d4a5100061113a876003015487600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b6133ca90919063ffffffff16565b9050600081111561116c5761116b3382613414565b5b600084111561128c5781600201544210156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f63616e6e6f74207769746864726177206561726c79000000000000000000000081525060200191505060405180910390fd5b6112068483600001546133ca90919063ffffffff16565b8260000181905550600061121a8686612791565b90506112338585600801546133ca90919063ffffffff16565b846008018190555061128a33828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136cf9092919063ffffffff16565b505b6112be64e8d4a510006112b0856003015485600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b60095481565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f6e6f2075706461746564206661726d20746f206d6f766520746f6f2e2e2e000081525060200191505060405180910390fd5b6000600582815481106113f657fe5b9060005260206000209060090201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600081116114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6e6f7468696e6720746f2075706772616465000000000000000000000000000081525060200191505060405180910390fd5b600082600001819055506000826001018190555060006114f98583612791565b905061156c600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166137879092919063ffffffff16565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf4a0c5e8560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163384866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001945050505050600060405180830381600087803b15801561167557600080fd5b505af1158015611689573d6000803e3d6000fd5b505050505050505050565b6000600583815481106116a357fe5b9060005260206000209060090201905060006006600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061178a5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f696e76616c6964206465706f736974656572000000000000000000000000000081525060200191505060405180910390fd5b611805846119bc565b60008160000154111561187457600061185c826001015461184e64e8d4a51000611840876003015487600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b6133ca90919063ffffffff16565b90506000811115611872576118718682613414565b5b505b600083111561192c576118ce3330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613942909392919063ffffffff16565b6118e583826000015461327290919063ffffffff16565b816000018190555061190483836008015461327290919063ffffffff16565b826008018190555061192382600401544261327290919063ffffffff16565b81600201819055505b61195e64e8d4a51000611950846003015484600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050505050565b6000600582815481106119cb57fe5b90600052602060002090600902019050806002015443116119ec5750611b90565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a8f57600080fd5b505afa158015611aa3573d6000803e3d6000fd5b505050506040513d6020811015611ab957600080fd5b810190808051906020019092919050505090506000811415611ae5574382600201819055505050611b90565b6000611af58360020154436126a8565b90506000611b38600854611b2a8660010154611b1c600354876132fa90919063ffffffff16565b6132fa90919063ffffffff16565b61338090919063ffffffff16565b9050611b7a611b6784611b5964e8d4a51000856132fa90919063ffffffff16565b61338090919063ffffffff16565b856003015461327290919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600060058281548110611ba257fe5b9060005260206000209060090201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508060020154421015611c80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f63616e6e6f74207769746864726177206561726c79000000000000000000000081525060200191505060405180910390fd5b60008160000154905060008260000181905550600082600101819055506000611ca98583612791565b9050611cc28285600801546133ca90919063ffffffff16565b8460080181905550611d1933828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136cf9092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595846040518082815260200191505060405180910390a35050505050565b611d7761326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460006101000a81548160ff021916908315150217905550565b6000600580549050905060008090505b81811015611e8157611e76816119bc565b806001019050611e65565b5050565b611e8d61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8015611f5d57611f5c611e55565b5b611fa282611f9460058681548110611f7157fe5b9060005260206000209060090201600101546008546133ca90919063ffffffff16565b61327290919063ffffffff16565b6008819055508160058481548110611fb657fe5b906000526020600020906009020160010181905550505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ffe61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600582815481106121b357fe5b90600052602060002090600902019050600073ffffffffffffffffffffffffffffffffffffffff168160050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f6e6f20737472617465677920736574000000000000000000000000000000000081525060200191505060405180910390fd5b6122a3600a54826007015461327290919063ffffffff16565b4211612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f74686973207374726174656779206973206f6e20636f6f6c646f776e0000000081525060200191505060405180910390fd5b42816007018190555060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156123c357600080fd5b505afa1580156123d7573d6000803e3d6000fd5b505050506040513d60208110156123ed57600080fd5b810190808051906020019092919050505090506000612429606461241b600a856132fa90919063ffffffff16565b61338090919063ffffffff16565b905060008360060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635daab7476040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561249957600080fd5b505af11580156124ad573d6000803e3d6000fd5b505050506040513d60208110156124c357600080fd5b81019080805190602001909291905050509050818111156124e2578190505b8360060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663398a4899826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561255957600080fd5b505af115801561256d573d6000803e3d6000fd5b505050506125e48460050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136cf9092919063ffffffff16565b8360050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe0d94c1826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561265b57600080fd5b505af115801561266f573d6000803e3d6000fd5b505050505050505050565b600a81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060025482116126e0576126d9600a6126cb85856133ca90919063ffffffff16565b6132fa90919063ffffffff16565b9050612754565b6002548310612703576126fc83836133ca90919063ffffffff16565b9050612754565b61275161271b600254846133ca90919063ffffffff16565b612743600a612735876002546133ca90919063ffffffff16565b6132fa90919063ffffffff16565b61327290919063ffffffff16565b90505b92915050565b6006602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154905083565b600080600584815481106127a157fe5b906000526020600020906009020190506128b581600801546128a78360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561285d57600080fd5b505afa158015612871573d6000803e3d6000fd5b505050506040513d602081101561288757600080fd5b8101908080519060200190929190505050866132fa90919063ffffffff16565b61338090919063ffffffff16565b91505092915050565b6128c661326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612987576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080600584815481106129f257fe5b9060005260206000209060090201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612b0257600080fd5b505afa158015612b16573d6000803e3d6000fd5b505050506040513d6020811015612b2c57600080fd5b81019080805190602001909291905050509050836002015443118015612b53575060008114155b15612bee576000612b688560020154436126a8565b90506000612bab600854612b9d8860010154612b8f600354876132fa90919063ffffffff16565b6132fa90919063ffffffff16565b61338090919063ffffffff16565b9050612be9612bda84612bcc64e8d4a51000856132fa90919063ffffffff16565b61338090919063ffffffff16565b8561327290919063ffffffff16565b935050505b612c328360010154612c2464e8d4a51000612c168688600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b6133ca90919063ffffffff16565b94505050505092915050565b600a5481565b60076020528060005260406000206000915054906101000a900460ff1681565b612c6f338383611694565b5050565b612c7b61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b612d8e61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613ed66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f9b61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461305c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b831561306b5761306a611e55565b5b6000600954431161307e57600954613080565b435b90506130978760085461327290919063ffffffff16565b60088190555060056040518061012001604052808873ffffffffffffffffffffffffffffffffffffffff168152602001898152602001838152602001600081526020018481526020018573ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815250908060018154018082558091505060019003906000526020600020906009020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c08201518160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060e082015181600701556101008201518160080155505050505050505050565b600033905090565b6000808284019050838110156132f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561330d576000905061337a565b600082840290508284828161331e57fe5b0414613375576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613efc6021913960400191505060405180910390fd5b809150505b92915050565b60006133c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a2f565b905092915050565b600061340c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613af5565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156134b557600080fd5b505afa1580156134c9573d6000803e3d6000fd5b505050506040513d60208110156134df57600080fd5b81019080805190602001909291905050509050808211156135e457600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156135a357600080fd5b505af11580156135b7573d6000803e3d6000fd5b505050506040513d60208110156135cd57600080fd5b8101908080519060200190929190505050506136ca565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561368d57600080fd5b505af11580156136a1573d6000803e3d6000fd5b505050506040513d60208110156136b757600080fd5b8101908080519060200190929190505050505b505050565b6137828363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bb5565b505050565b6000613887828573ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30876040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561383e57600080fd5b505afa158015613852573d6000803e3d6000fd5b505050506040513d602081101561386857600080fd5b810190808051906020019092919050505061327290919063ffffffff16565b905061393c8463095ea7b360e01b8584604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bb5565b50505050565b613a29846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bb5565b50505050565b60008083118290613adb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613aa0578082015181840152602081019050613a85565b50505050905090810190601f168015613acd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613ae757fe5b049050809150509392505050565b6000838311158290613ba2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b67578082015181840152602081019050613b4c565b50505050905090810190601f168015613b945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060613c17826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613ca49092919063ffffffff16565b9050600081511115613c9f57808060200190516020811015613c3857600080fd5b8101908080519060200190929190505050613c9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613f1d602a913960400191505060405180910390fd5b5b505050565b6060613cb38484600085613cbc565b90509392505050565b6060613cc785613ec2565b613d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613d895780518252602082019150602081019050602083039250613d66565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613deb576040519150601f19603f3d011682016040523d82523d6000602084013e613df0565b606091505b50915091508115613e05578092505050613eba565b600081511115613e185780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613e7f578082015181840152602081019050613e64565b50505050905090810190601f168015613eac5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212202a5c0cfcf848501cfae8e1045d841c5e2da962ad57493291dfdd0d0cd33b70bb64736f6c63430006060033000000000000000000000000d1afbccc9a2c2187ea544363b986ea0ab6ef08b500000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000ad0163
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c80636fb6075a11610125578063a833a1c9116100ad578063e2bbb1581161007c578063e2bbb15814610952578063ec3b7b781461098a578063f21230c8146109ce578063f2fde38b146109ec578063fe21def414610a3057610211565b8063a833a1c914610826578063ce3dcec714610876578063d371f8fa146108d8578063de2a2176146108f657610211565b80638aa28550116100f45780638aa28550146106b65780638da5cb5b146106d45780638dbb1e3a1461071e57806393f1a40b1461076a578063950dc487146107da57610211565b80636fb6075a146105ea578063715018a6146106345780637b2aab031461063e578063887a2f721461068857610211565b8063441a3e70116101a857806351eb05a61161017757806351eb05a6146105365780635312ea8e14610564578063628b1a5314610592578063630b5ba11461059c57806364482f79146105a657610211565b8063441a3e701461045a57806348cd4cb1146104925780634b2ac3a8146104b05780634cf5fbf5146104de57610211565b80631aed6553116101e45780631aed6553146103725780632275c2471461039057806328754c59146103de57806339f3ce261461040c57610211565b8063081e3eda146102165780630dd1e679146102345780631526fe271461025657806317caf6f114610354575b600080fd5b61021e610ad4565b6040518082815260200191505060405180910390f35b61023c610ae1565b604051808215151515815260200191505060405180910390f35b6102826004803603602081101561026c57600080fd5b8101908080359060200190929190505050610af4565b604051808a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018981526020018881526020018781526020018681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001995050505050505050505060405180910390f35b61035c610baf565b6040518082815260200191505060405180910390f35b61037a610bb5565b6040518082815260200191505060405180910390f35b6103dc600480360360408110156103a657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bbb565b005b61040a600480360360208110156103f457600080fd5b8101908080359060200190929190505050610d1c565b005b6104586004803603604081101561042257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e6a565b005b6104906004803603604081101561047057600080fd5b810190808035906020019092919080359060200190929190505050611016565b005b61049a61131c565b6040518082815260200191505060405180910390f35b6104dc600480360360208110156104c657600080fd5b8101908080359060200190929190505050611322565b005b610534600480360360608110156104f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611694565b005b6105626004803603602081101561054c57600080fd5b81019080803590602001909291905050506119bc565b005b6105906004803603602081101561057a57600080fd5b8101908080359060200190929190505050611b93565b005b61059a611d6f565b005b6105a4611e55565b005b6105e8600480360360608110156105bc57600080fd5b810190808035906020019092919080359060200190929190803515159060200190929190505050611e85565b005b6105f2611fd0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61063c611ff6565b005b61064661217e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106b46004803603602081101561069e57600080fd5b81019080803590602001909291905050506121a4565b005b6106be61267a565b6040518082815260200191505060405180910390f35b6106dc61267f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107546004803603604081101561073457600080fd5b8101908080359060200190929190803590602001909291905050506126a8565b6040518082815260200191505060405180910390f35b6107b66004803603604081101561078057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061275a565b60405180848152602001838152602001828152602001935050505060405180910390f35b610810600480360360408110156107f057600080fd5b810190808035906020019092919080359060200190929190505050612791565b6040518082815260200191505060405180910390f35b6108746004803603604081101561083c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506128be565b005b6108c26004803603604081101561088c57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129e2565b6040518082815260200191505060405180910390f35b6108e0612c3e565b6040518082815260200191505060405180910390f35b6109386004803603602081101561090c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c44565b604051808215151515815260200191505060405180910390f35b6109886004803603604081101561096857600080fd5b810190808035906020019092919080359060200190929190505050612c64565b005b6109cc600480360360208110156109a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c73565b005b6109d6612d80565b6040518082815260200191505060405180910390f35b610a2e60048036036020811015610a0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d86565b005b610ad2600480360360c0811015610a4657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612f93565b005b6000600580549050905090565b600460009054906101000a900460ff1681565b60058181548110610b0157fe5b90600052602060002090600902016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154908060050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060070154908060080154905089565b60085481565b60025481565b610bc361326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060058381548110610c9257fe5b906000526020600020906009020160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610cf6600a544261327290919063ffffffff16565b60058381548110610d0357fe5b9060005260206000209060090201600701819055505050565b610d2461326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b655af3107a40008111610e60576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f7265776172647320746f6f20536d616c6c00000000000000000000000000000081525060200191505060405180910390fd5b8060038190555050565b610e7261326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460009054906101000a900460ff16610fb5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f63616e206e6f206c6f6e676572206368616e6765206163636f756e74616e747381525060200191505060405180910390fd5b8060058381548110610fc357fe5b906000526020600020906009020160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006005838154811061102557fe5b9060005260206000209060090201905060006006600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b61110c846119bc565b6000611156826001015461114864e8d4a5100061113a876003015487600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b6133ca90919063ffffffff16565b9050600081111561116c5761116b3382613414565b5b600084111561128c5781600201544210156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f63616e6e6f74207769746864726177206561726c79000000000000000000000081525060200191505060405180910390fd5b6112068483600001546133ca90919063ffffffff16565b8260000181905550600061121a8686612791565b90506112338585600801546133ca90919063ffffffff16565b846008018190555061128a33828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136cf9092919063ffffffff16565b505b6112be64e8d4a510006112b0856003015485600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b60095481565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f6e6f2075706461746564206661726d20746f206d6f766520746f6f2e2e2e000081525060200191505060405180910390fd5b6000600582815481106113f657fe5b9060005260206000209060090201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600081116114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6e6f7468696e6720746f2075706772616465000000000000000000000000000081525060200191505060405180910390fd5b600082600001819055506000826001018190555060006114f98583612791565b905061156c600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166137879092919063ffffffff16565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cf4a0c5e8560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163384866040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001945050505050600060405180830381600087803b15801561167557600080fd5b505af1158015611689573d6000803e3d6000fd5b505050505050505050565b6000600583815481106116a357fe5b9060005260206000209060090201905060006006600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061178a5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f696e76616c6964206465706f736974656572000000000000000000000000000081525060200191505060405180910390fd5b611805846119bc565b60008160000154111561187457600061185c826001015461184e64e8d4a51000611840876003015487600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b6133ca90919063ffffffff16565b90506000811115611872576118718682613414565b5b505b600083111561192c576118ce3330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16613942909392919063ffffffff16565b6118e583826000015461327290919063ffffffff16565b816000018190555061190483836008015461327290919063ffffffff16565b826008018190555061192382600401544261327290919063ffffffff16565b81600201819055505b61195e64e8d4a51000611950846003015484600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050505050565b6000600582815481106119cb57fe5b90600052602060002090600902019050806002015443116119ec5750611b90565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611a8f57600080fd5b505afa158015611aa3573d6000803e3d6000fd5b505050506040513d6020811015611ab957600080fd5b810190808051906020019092919050505090506000811415611ae5574382600201819055505050611b90565b6000611af58360020154436126a8565b90506000611b38600854611b2a8660010154611b1c600354876132fa90919063ffffffff16565b6132fa90919063ffffffff16565b61338090919063ffffffff16565b9050611b7a611b6784611b5964e8d4a51000856132fa90919063ffffffff16565b61338090919063ffffffff16565b856003015461327290919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600060058281548110611ba257fe5b9060005260206000209060090201905060006006600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508060020154421015611c80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f63616e6e6f74207769746864726177206561726c79000000000000000000000081525060200191505060405180910390fd5b60008160000154905060008260000181905550600082600101819055506000611ca98583612791565b9050611cc28285600801546133ca90919063ffffffff16565b8460080181905550611d1933828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136cf9092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595846040518082815260200191505060405180910390a35050505050565b611d7761326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600460006101000a81548160ff021916908315150217905550565b6000600580549050905060008090505b81811015611e8157611e76816119bc565b806001019050611e65565b5050565b611e8d61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f4e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8015611f5d57611f5c611e55565b5b611fa282611f9460058681548110611f7157fe5b9060005260206000209060090201600101546008546133ca90919063ffffffff16565b61327290919063ffffffff16565b6008819055508160058481548110611fb657fe5b906000526020600020906009020160010181905550505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ffe61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600582815481106121b357fe5b90600052602060002090600902019050600073ffffffffffffffffffffffffffffffffffffffff168160050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561228a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f6e6f20737472617465677920736574000000000000000000000000000000000081525060200191505060405180910390fd5b6122a3600a54826007015461327290919063ffffffff16565b4211612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f74686973207374726174656779206973206f6e20636f6f6c646f776e0000000081525060200191505060405180910390fd5b42816007018190555060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156123c357600080fd5b505afa1580156123d7573d6000803e3d6000fd5b505050506040513d60208110156123ed57600080fd5b810190808051906020019092919050505090506000612429606461241b600a856132fa90919063ffffffff16565b61338090919063ffffffff16565b905060008360060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635daab7476040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561249957600080fd5b505af11580156124ad573d6000803e3d6000fd5b505050506040513d60208110156124c357600080fd5b81019080805190602001909291905050509050818111156124e2578190505b8360060160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663398a4899826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561255957600080fd5b505af115801561256d573d6000803e3d6000fd5b505050506125e48460050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828660000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166136cf9092919063ffffffff16565b8360050160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fe0d94c1826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561265b57600080fd5b505af115801561266f573d6000803e3d6000fd5b505050505050505050565b600a81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600060025482116126e0576126d9600a6126cb85856133ca90919063ffffffff16565b6132fa90919063ffffffff16565b9050612754565b6002548310612703576126fc83836133ca90919063ffffffff16565b9050612754565b61275161271b600254846133ca90919063ffffffff16565b612743600a612735876002546133ca90919063ffffffff16565b6132fa90919063ffffffff16565b61327290919063ffffffff16565b90505b92915050565b6006602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154905083565b600080600584815481106127a157fe5b906000526020600020906009020190506128b581600801546128a78360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561285d57600080fd5b505afa158015612871573d6000803e3d6000fd5b505050506040513d602081101561288757600080fd5b8101908080519060200190929190505050866132fa90919063ffffffff16565b61338090919063ffffffff16565b91505092915050565b6128c661326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612987576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080600584815481106129f257fe5b9060005260206000209060090201905060006006600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612b0257600080fd5b505afa158015612b16573d6000803e3d6000fd5b505050506040513d6020811015612b2c57600080fd5b81019080805190602001909291905050509050836002015443118015612b53575060008114155b15612bee576000612b688560020154436126a8565b90506000612bab600854612b9d8860010154612b8f600354876132fa90919063ffffffff16565b6132fa90919063ffffffff16565b61338090919063ffffffff16565b9050612be9612bda84612bcc64e8d4a51000856132fa90919063ffffffff16565b61338090919063ffffffff16565b8561327290919063ffffffff16565b935050505b612c328360010154612c2464e8d4a51000612c168688600001546132fa90919063ffffffff16565b61338090919063ffffffff16565b6133ca90919063ffffffff16565b94505050505092915050565b600a5481565b60076020528060005260406000206000915054906101000a900460ff1681565b612c6f338383611694565b5050565b612c7b61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b612d8e61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612e4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613ed66026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612f9b61326a565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461305c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b831561306b5761306a611e55565b5b6000600954431161307e57600954613080565b435b90506130978760085461327290919063ffffffff16565b60088190555060056040518061012001604052808873ffffffffffffffffffffffffffffffffffffffff168152602001898152602001838152602001600081526020018481526020018573ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815250908060018154018082558091505060019003906000526020600020906009020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015560a08201518160050160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c08201518160060160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060e082015181600701556101008201518160080155505050505050505050565b600033905090565b6000808284019050838110156132f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561330d576000905061337a565b600082840290508284828161331e57fe5b0414613375576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613efc6021913960400191505060405180910390fd5b809150505b92915050565b60006133c283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a2f565b905092915050565b600061340c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613af5565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156134b557600080fd5b505afa1580156134c9573d6000803e3d6000fd5b505050506040513d60208110156134df57600080fd5b81019080805190602001909291905050509050808211156135e457600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156135a357600080fd5b505af11580156135b7573d6000803e3d6000fd5b505050506040513d60208110156135cd57600080fd5b8101908080519060200190929190505050506136ca565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561368d57600080fd5b505af11580156136a1573d6000803e3d6000fd5b505050506040513d60208110156136b757600080fd5b8101908080519060200190929190505050505b505050565b6137828363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bb5565b505050565b6000613887828573ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30876040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561383e57600080fd5b505afa158015613852573d6000803e3d6000fd5b505050506040513d602081101561386857600080fd5b810190808051906020019092919050505061327290919063ffffffff16565b905061393c8463095ea7b360e01b8584604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bb5565b50505050565b613a29846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bb5565b50505050565b60008083118290613adb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613aa0578082015181840152602081019050613a85565b50505050905090810190601f168015613acd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613ae757fe5b049050809150509392505050565b6000838311158290613ba2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b67578082015181840152602081019050613b4c565b50505050905090810190601f168015613b945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6060613c17826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16613ca49092919063ffffffff16565b9050600081511115613c9f57808060200190516020811015613c3857600080fd5b8101908080519060200190929190505050613c9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613f1d602a913960400191505060405180910390fd5b5b505050565b6060613cb38484600085613cbc565b90509392505050565b6060613cc785613ec2565b613d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613d895780518252602082019150602081019050602083039250613d66565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613deb576040519150601f19603f3d011682016040523d82523d6000602084013e613df0565b606091505b50915091508115613e05578092505050613eba565b600081511115613e185780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613e7f578082015181840152602081019050613e64565b50505050905090810190601f168015613eac5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b90506000811191505091905056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212202a5c0cfcf848501cfae8e1045d841c5e2da962ad57493291dfdd0d0cd33b70bb64736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d1afbccc9a2c2187ea544363b986ea0ab6ef08b500000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000ad0163
-----Decoded View---------------
Arg [0] : _ethy (address): 0xd1AFBCCC9A2c2187ea544363B986EA0AB6EF08B5
Arg [1] : _ethyPerBlock (uint256): 1000000000000000
Arg [2] : _bonusEndBlock (uint256): 11338083
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000d1afbccc9a2c2187ea544363b986ea0ab6ef08b5
Arg [1] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000ad0163
Deployed Bytecode Sourcemap
35286:15231:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35286:15231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;39617:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37487:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37562:26;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;37562:26:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37874:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37278:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41246:348;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;41246:348:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38986:187;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;38986:187:0;;;;;;;;;;;;;;;;;:::i;:::-;;41602:222;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;41602:222:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45535:1099;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45535:1099:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37965:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49590:922;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;49590:922:0;;;;;;;;;;;;;;;;;:::i;:::-;;44314:989;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44314:989:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43485:821;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;43485:821:0;;;;;;;;;;;;;;;;;:::i;:::-;;46705:770;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;46705:770:0;;;;;;;;;;;;;;;;;:::i;:::-;;39366:102;;;:::i;:::-;;43229:180;;;:::i;:::-;;40907:304;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;40907:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37203:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28524:148;;;:::i;:::-;;38205:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48556:959;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48556:959:0;;;;;;;;;;;;;;;;;:::i;:::-;;37433:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27882:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41900:423;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;41900:423:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37644:66;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;37644:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48031:238;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48031:238:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39480:129;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;39480:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42387:759;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;42387:759:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38042:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37736:43;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;37736:43:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45372:111;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45372:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39181:177;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;39181:177:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;37352:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28827:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;28827:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;39881:930;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;39881:930:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39617:95;39662:7;39689:8;:15;;;;39682:22;;39617:95;:::o;37487:39::-;;;;;;;;;;;;;:::o;37562:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37874:34::-;;;;:::o;37278:28::-;;;;:::o;41246:348::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41355:6:::1;41323:8;41332:4;41323:14;;;;;;;;;;;;;;;;;;:20;;;:39;;;;;;;;;;;;;;;;;;41552:34;41572:13;;41552:15;:19;;:34;;;;:::i;:::-;41519:8;41528:4;41519:14;;;;;;;;;;;;;;;;;;:30;;:67;;;;41246:348:::0;;:::o;38986:187::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39089:15:::1;39073:13;:31;39065:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39152:13;39137:12;:28;;;;38986:187:::0;:::o;41602:222::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41696:20:::1;;;;;;;;;;;41688:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41804:11;41764:8;41773:4;41764:14;;;;;;;;;;;;;;;;;;:25;;;:52;;;;;;;;;;;;;;;;;;41602:222:::0;;:::o;45535:1099::-;45602:21;45626:8;45635:4;45626:14;;;;;;;;;;;;;;;;;;45602:38;;45651:21;45675:8;:14;45684:4;45675:14;;;;;;;;;;;:26;45690:10;45675:26;;;;;;;;;;;;;;;45651:50;;45735:7;45720:4;:11;;;:22;;45712:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45778:16;45789:4;45778:10;:16::i;:::-;45805:15;45823:68;45875:4;:15;;;45823:47;45865:4;45823:37;45839:4;:20;;;45823:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;45805:86;;45915:1;45905:7;:11;45902:80;;;45933:37;45950:10;45962:7;45933:16;:37::i;:::-;45902:80;46035:1;46025:7;:11;46022:476;;;46133:4;:16;;;46114:15;:35;;46106:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46204:24;46220:7;46204:4;:11;;;:15;;:24;;;;:::i;:::-;46190:4;:11;;:38;;;;46289:20;46312:36;46334:4;46340:7;46312:21;:36::i;:::-;46289:59;;46382:29;46403:7;46382:4;:16;;;:20;;:29;;;;:::i;:::-;46363:4;:16;;:48;;;;46426:60;46460:10;46473:12;46426:4;:12;;;;;;;;;;;;:25;;;;:60;;;;;:::i;:::-;46022:476;;46528:47;46570:4;46528:37;46544:4;:20;;;46528:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;46510:4;:15;;:65;;;;46612:4;46600:10;46591:35;;;46618:7;46591:35;;;;;;;;;;;;;;;;;;45535:1099;;;;;:::o;37965:25::-;;;;:::o;49590:922::-;49679:1;49651:30;;49659:7;;;;;;;;;;;49651:30;;;;49643:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49729:21;49753:8;49762:4;49753:14;;;;;;;;;;;;;;;;;;49729:38;;49778:21;49802:8;:14;49811:4;49802:14;;;;;;;;;;;:26;49817:10;49802:26;;;;;;;;;;;;;;;49778:50;;49860:14;49877:4;:11;;;49860:28;;49916:1;49907:6;:10;49899:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50070:1;50056:4;:11;;:15;;;;50100:1;50082:4;:15;;:19;;;;50139:20;50162:35;50184:4;50190:6;50162:21;:35::i;:::-;50139:58;;50260:66;50303:7;;;;;;;;;;;50313:12;50260:4;:12;;;;;;;;;;;;:34;;;;:66;;;;;:::i;:::-;50367:7;;;;;;;;;;;:18;;;50407:4;:12;;;;;;;;;;;;50435:10;50460:12;50487:6;50367:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;50367:137:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50367:137:0;;;;49590:922;;;;;:::o;44314:989::-;44398:21;44422:8;44431:4;44422:14;;;;;;;;;;;;;;;;;;44398:38;;44447:21;44471:8;:14;44480:4;44471:14;;;;;;;;;;;:21;44486:5;44471:21;;;;;;;;;;;;;;;44447:45;;44527:5;44513:19;;:10;:19;;;:45;;;;44536:10;:22;44547:10;44536:22;;;;;;;;;;;;;;;;;;;;;;;;;44513:45;44505:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44594:16;44605:4;44594:10;:16::i;:::-;44639:1;44625:4;:11;;;:15;44621:231;;;44657:15;44675:68;44727:4;:15;;;44675:47;44717:4;44675:37;44691:4;:20;;;44675:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;:51;;:68;;;;:::i;:::-;44657:86;;44771:1;44761:7;:11;44758:83;;;44793:32;44810:5;44817:7;44793:16;:32::i;:::-;44758:83;44621:231;;44877:1;44867:7;:11;44864:304;;;44895:74;44933:10;44954:4;44961:7;44895:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;44998:24;45014:7;44998:4;:11;;;:15;;:24;;;;:::i;:::-;44984:4;:11;;:38;;;;45056:29;45077:7;45056:4;:16;;;:20;;:29;;;;:::i;:::-;45037:4;:16;;:48;;;;45119:37;45139:4;:16;;;45119:15;:19;;:37;;;;:::i;:::-;45100:4;:16;;:56;;;;44864:304;45198:47;45240:4;45198:37;45214:4;:20;;;45198:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47;;;;:::i;:::-;45180:4;:15;;:65;;;;45281:4;45269:10;45261:34;;;45287:7;45261:34;;;;;;;;;;;;;;;;;;44314:989;;;;;:::o;43485:821::-;43537:21;43561:8;43570:4;43561:14;;;;;;;;;;;;;;;;;;43537:38;;43606:4;:20;;;43590:12;:36;43586:75;;43643:7;;;43586:75;43671:16;43690:4;:12;;;;;;;;;;;;:22;;;43721:4;43690:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43690:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43690:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;43690:37:0;;;;;;;;;;;;;;;;43671:56;;43754:1;43742:8;:13;43738:102;;;43795:12;43772:4;:20;;:35;;;;43822:7;;;;43738:102;43850:18;43871:49;43885:4;:20;;;43907:12;43871:13;:49::i;:::-;43850:70;;43931:18;43952:70;44006:15;;43952:49;43985:4;:15;;;43952:28;43967:12;;43952:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:70;;;;:::i;:::-;43931:91;;44192:60;44217:34;44242:8;44217:20;44232:4;44217:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;44192:4;:20;;;:24;;:60;;;;:::i;:::-;44169:4;:20;;:83;;;;44286:12;44263:4;:20;;:35;;;;43485:821;;;;;;:::o;46705:770::-;46764:21;46788:8;46797:4;46788:14;;;;;;;;;;;;;;;;;;46764:38;;46813:21;46837:8;:14;46846:4;46837:14;;;;;;;;;;;:26;46852:10;46837:26;;;;;;;;;;;;;;;46813:50;;46952:4;:16;;;46933:15;:35;;46925:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47007:14;47024:4;:11;;;47007:28;;47060:1;47046:4;:11;;:15;;;;47108:1;47090:4;:15;;:19;;;;47181:20;47204:35;47226:4;47232:6;47204:21;:35::i;:::-;47181:58;;47269:28;47290:6;47269:4;:16;;;:20;;:28;;;;:::i;:::-;47250:4;:16;;:47;;;;47346:60;47380:10;47393:12;47346:4;:12;;;;;;;;;;;;:25;;;;:60;;;;;:::i;:::-;47454:4;47442:10;47424:43;;;47460:6;47424:43;;;;;;;;;;;;;;;;;;46705:770;;;;;:::o;39366:102::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39455:5:::1;39432:20;;:28;;;;;;;;;;;;;;;;;;39366:102::o:0;43229:180::-;43274:14;43291:8;:15;;;;43274:32;;43322:11;43336:1;43322:15;;43317:85;43345:6;43339:3;:12;43317:85;;;43375:15;43386:3;43375:10;:15::i;:::-;43353:5;;;;;43317:85;;;;43229:180;:::o;40907:304::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41005:11:::1;41001:61;;;41033:17;:15;:17::i;:::-;41001:61;41090:63;41141:11;41090:46;41110:8;41119:4;41110:14;;;;;;;;;;;;;;;;;;:25;;;41090:15;;:19;;:46;;;;:::i;:::-;:50;;:63;;;;:::i;:::-;41072:15;:81;;;;41192:11;41164:8;41173:4;41164:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;40907:304:::0;;;:::o;37203:18::-;;;;;;;;;;;;;:::o;28524:148::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28631:1:::1;28594:40;;28615:6;::::0;::::1;;;;;;;;;28594:40;;;;;;;;;;;;28662:1;28645:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;28524:148::o:0;38205:27::-;;;;;;;;;;;;;:::o;48556:959::-;48614:21;48638:8;48647:4;48638:14;;;;;;;;;;;;;;;;;;48614:38;;48702:1;48671:33;;48679:4;:10;;;;;;;;;;;;48671:33;;;;48663:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48761:39;48786:13;;48761:4;:20;;;:24;;:39;;;;:::i;:::-;48743:15;:57;48735:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48868:15;48845:4;:20;;:38;;;;48964:15;48984:4;:12;;;;;;;;;;;;:22;;;49015:4;48984:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48984:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48984:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48984:37:0;;;;;;;;;;;;;;;;48964:57;;49032:17;49052:24;49072:3;49052:15;49064:2;49052:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;49032:44;;49141:14;49158:4;:15;;;;;;;;;;;;:39;;;:41;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49158:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49158:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;49158:41:0;;;;;;;;;;;;;;;;49141:58;;49223:9;49214:6;:18;49210:46;;;49245:9;49236:18;;49210:46;49309:4;:15;;;;;;;;;;;;:25;;;49335:6;49309:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49309:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49309:33:0;;;;49394:54;49428:4;:10;;;;;;;;;;;;49441:6;49394:4;:12;;;;;;;;;;;;:25;;;;:54;;;;;:::i;:::-;49459:4;:10;;;;;;;;;;;;:18;;;49478:6;49459:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;49459:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49459:26:0;;;;48556:959;;;;;:::o;37433:45::-;37476:2;37433:45;:::o;27882:79::-;27920:7;27947:6;;;;;;;;;;;27940:13;;27882:79;:::o;41900:423::-;41972:7;42003:13;;41996:3;:20;41992:324;;42040:36;37476:2;42040:14;42048:5;42040:3;:7;;:14;;;;:::i;:::-;:18;;:36;;;;:::i;:::-;42033:43;;;;41992:324;42107:13;;42098:5;:22;42094:222;;42144:14;42152:5;42144:3;:7;;:14;;;;:::i;:::-;42137:21;;;;42094:222;42198:106;42267:22;42275:13;;42267:3;:7;;:22;;;;:::i;:::-;42198:46;37476:2;42198:24;42216:5;42198:13;;:17;;:24;;;;:::i;:::-;:28;;:46;;;;:::i;:::-;:50;;:106;;;;:::i;:::-;42191:113;;41900:423;;;;;:::o;37644:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48031:238::-;48113:7;48133:21;48157:8;48166:4;48157:14;;;;;;;;;;;;;;;;;;48133:38;;48189:72;48244:4;:16;;;48189:50;48201:4;:12;;;;;;;;;;;;:22;;;48232:4;48201:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;48201:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48201:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;48201:37:0;;;;;;;;;;;;;;;;48189:7;:11;;:50;;;;:::i;:::-;:54;;:72;;;;:::i;:::-;48182:79;;;48031:238;;;;:::o;39480:129::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39593:8:::1;39567:10;:23;39578:11;39567:23;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;39480:129:::0;;:::o;42387:759::-;42460:7;42480:21;42504:8;42513:4;42504:14;;;;;;;;;;;;;;;;;;42480:38;;42529:21;42553:8;:14;42562:4;42553:14;;;;;;;;;;;:21;42568:5;42553:21;;;;;;;;;;;;;;;42529:45;;42585:23;42611:4;:20;;;42585:46;;42642:16;42661:4;:12;;;;;;;;;;;;:22;;;42692:4;42661:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42661:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42661:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;42661:37:0;;;;;;;;;;;;;;;;42642:56;;42728:4;:20;;;42713:12;:35;:52;;;;;42764:1;42752:8;:13;;42713:52;42709:349;;;42782:18;42803:49;42817:4;:20;;;42839:12;42803:13;:49::i;:::-;42782:70;;42867:18;42888:70;42942:15;;42888:49;42921:4;:15;;;42888:28;42903:12;;42888:10;:14;;:28;;;;:::i;:::-;:32;;:49;;;;:::i;:::-;:53;;:70;;;;:::i;:::-;42867:91;;42991:55;43011:34;43036:8;43011:20;43026:4;43011:10;:14;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;42991:15;:19;;:55;;;;:::i;:::-;42973:73;;42709:349;;;43075:63;43122:4;:15;;;43075:42;43112:4;43075:32;43091:15;43075:4;:11;;;:15;;:32;;;;:::i;:::-;:36;;:42;;;;:::i;:::-;:46;;:63;;;;:::i;:::-;43068:70;;;;;;42387:759;;;;:::o;38042:39::-;;;;:::o;37736:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;45372:111::-;45438:37;45449:10;45461:4;45467:7;45438:10;:37::i;:::-;45372:111;;:::o;39181:177::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39341:8:::1;39318:7;;:32;;;;;;;;;;;;;;;;;;39181:177:::0;:::o;37352:27::-;;;;:::o;28827:244::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28936:1:::1;28916:22;;:8;:22;;;;28908:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29026:8;28997:38;;29018:6;::::0;::::1;;;;;;;;;28997:38;;;;;;;;;;;;29055:8;29046:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;28827:244:::0;:::o;39881:930::-;28104:12;:10;:12::i;:::-;28094:22;;:6;;;;;;;;;;;:22;;;28086:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40144:11:::1;40140:61;;;40172:17;:15;:17::i;:::-;40140:61;40241:23;40282:10;;40267:12;:25;:53;;40310:10;;40267:53;;;40295:12;40267:53;40241:79;;40349:32;40369:11;40349:15;;:19;;:32;;;;:::i;:::-;40331:15;:50;;;;40394:8;40408:394;;;;;;;;40441:8;40408:394;;;;;;40476:11;40408:394;;;;40519:15;40408:394;;;;40566:1;40408:394;;;;40595:12;40408:394;;;;40638:6;40408:394;;;;;;40684:11;40408:394;;;;;;40760:1;40408:394;;;;40789:1;40408:394;;::::0;40394:409:::1;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;40394:409:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28164:1;39881:930:::0;;;;;;:::o;26462:106::-;26515:15;26550:10;26543:17;;26462:106;:::o;3663:181::-;3721:7;3741:9;3757:1;3753;:5;3741:17;;3782:1;3777;:6;;3769:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3835:1;3828:8;;;3663:181;;;;:::o;5017:471::-;5075:7;5325:1;5320;:6;5316:47;;;5350:1;5343:8;;;;5316:47;5375:9;5391:1;5387;:5;5375:17;;5420:1;5415;5411;:5;;;;;;:10;5403:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5479:1;5472:8;;;5017:471;;;;;:::o;5964:132::-;6022:7;6049:39;6053:1;6056;6049:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6042:46;;5964:132;;;;:::o;4127:136::-;4185:7;4212:43;4216:1;4219;4212:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4205:50;;4127:136;;;;:::o;47588:278::-;47664:15;47682:4;;;;;;;;;;;:14;;;47705:4;47682:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47682:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47682:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47682:29:0;;;;;;;;;;;;;;;;47664:47;;47736:7;47726;:17;47722:137;;;47760:4;;;;;;;;;;;:13;;;47774:3;47779:7;47760:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47760:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47760:27:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47760:27:0;;;;;;;;;;;;;;;;;47722:137;;;47820:4;;;;;;;;;;;:13;;;47834:3;47839:7;47820:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47820:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47820:27:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;47820:27:0;;;;;;;;;;;;;;;;;47722:137;47588:278;;;:::o;14764:177::-;14847:86;14867:5;14897:23;;;14922:2;14926:5;14874:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14874:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;14874:58:0;14847:19;:86::i;:::-;14764:177;;;:::o;16053:286::-;16150:20;16173:50;16217:5;16173;:15;;;16197:4;16204:7;16173:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16173:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16173:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16173:39:0;;;;;;;;;;;;;;;;:43;;:50;;;;:::i;:::-;16150:73;;16234:97;16254:5;16284:22;;;16308:7;16317:12;16261:69;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;16261:69:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;16261:69:0;16234:19;:97::i;:::-;16053:286;;;;:::o;14949:205::-;15050:96;15070:5;15100:27;;;15129:4;15135:2;15139:5;15077:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;15077:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;15077:68:0;15050:19;:96::i;:::-;14949:205;;;;:::o;6592:278::-;6678:7;6710:1;6706;:5;6713:12;6698:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6698:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:9;6753:1;6749;:5;;;;;;6737:17;;6861:1;6854:8;;;6592:278;;;;;:::o;4566:192::-;4652:7;4685:1;4680;:6;;4688:12;4672:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4672:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4712:9;4728:1;4724;:5;4712:17;;4749:1;4742:8;;;4566:192;;;;;:::o;17069:761::-;17493:23;17519:69;17547:4;17519:69;;;;;;;;;;;;;;;;;17527:5;17519:27;;;;:69;;;;;:::i;:::-;17493:95;;17623:1;17603:10;:17;:21;17599:224;;;17745:10;17734:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17734:30:0;;;;;;;;;;;;;;;;17726:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17599:224;17069:761;;;:::o;11778:196::-;11881:12;11913:53;11936:6;11944:4;11950:1;11953:12;11913:22;:53::i;:::-;11906:60;;11778:196;;;;;:::o;13155:979::-;13285:12;13318:18;13329:6;13318:10;:18::i;:::-;13310:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13444:12;13458:23;13485:6;:11;;13505:8;13516:4;13485:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;13485:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;13443:78:0;;;;13536:7;13532:595;;;13567:10;13560:17;;;;;;13532:595;13701:1;13681:10;:17;:21;13677:439;;;13944:10;13938:17;14005:15;13992:10;13988:2;13984:19;13977:44;13892:148;14087:12;14080:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;14080:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13155:979;;;;;;;:::o;8860:422::-;8920:4;9128:12;9239:7;9227:20;9219:28;;9273:1;9266:4;:8;9259:15;;;8860:422;;;:::o
Swarm Source
ipfs://2a5c0cfcf848501cfae8e1045d841c5e2da962ad57493291dfdd0d0cd33b70bb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $3.21 | 1.5131 | $4.85 |
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.