Feature Tip: Add private address tag to any address under My Name Tag !
Warning! There are reports that this contract is stealing approved funds from multiple users. Please exercise caution when interacting with this address.
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,082 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 11447967 | 1485 days ago | IN | 0 ETH | 0.00401573 | ||||
Transfer Ownersh... | 11417200 | 1490 days ago | IN | 0 ETH | 0.00120443 | ||||
Withdraw | 11398410 | 1493 days ago | IN | 0 ETH | 0.002 | ||||
Deposit | 11396258 | 1493 days ago | IN | 0 ETH | 0.00295842 | ||||
Deposit | 11396255 | 1493 days ago | IN | 0 ETH | 0.00295842 | ||||
Deposit | 11396255 | 1493 days ago | IN | 0 ETH | 0.00342342 | ||||
Deposit | 11395533 | 1494 days ago | IN | 0 ETH | 0.00248125 | ||||
Deposit | 11395533 | 1494 days ago | IN | 0 ETH | 0.00248125 | ||||
Deposit | 11395533 | 1494 days ago | IN | 0 ETH | 0.00287125 | ||||
Execute Transact... | 11395099 | 1494 days ago | IN | 0 ETH | 0.00124653 | ||||
Migrate | 11395070 | 1494 days ago | IN | 0 ETH | 0.00484632 | ||||
Migrate | 11395067 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Migrate | 11395066 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Migrate | 11395065 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Migrate | 11395064 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Migrate | 11395062 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Withdraw | 11395059 | 1494 days ago | IN | 0 ETH | 0.00194391 | ||||
Migrate | 11395059 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Migrate | 11395052 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Migrate | 11395048 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Deposit | 11395047 | 1494 days ago | IN | 0 ETH | 0.00206509 | ||||
Migrate | 11395046 | 1494 days ago | IN | 0 ETH | 0.00479205 | ||||
Migrate | 11395036 | 1494 days ago | IN | 0 ETH | 0.00434169 | ||||
Set Migrator | 11395033 | 1494 days ago | IN | 0 ETH | 0.00082517 | ||||
Deposit | 11395013 | 1494 days ago | IN | 0 ETH | 0.0017636 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
11394791 | 1494 days ago | 0.05 ETH | ||||
11394179 | 1494 days ago | 3.2 ETH | ||||
11394167 | 1494 days ago | 2.7249547 ETH | ||||
11394167 | 1494 days ago | 2.7249547 ETH | ||||
11394054 | 1494 days ago | 3 ETH | ||||
11393748 | 1494 days ago | 4.29687142 ETH | ||||
11393748 | 1494 days ago | 4.29687142 ETH | ||||
11393072 | 1494 days ago | 0.15333196 ETH | ||||
11393072 | 1494 days ago | 0.15333196 ETH | ||||
11393036 | 1494 days ago | 7 ETH | ||||
11393005 | 1494 days ago | 0.25 ETH | ||||
11392150 | 1494 days ago | 1.69928365 ETH | ||||
11392150 | 1494 days ago | 1.69928365 ETH | ||||
11391918 | 1494 days ago | 1.95 ETH | ||||
11389102 | 1495 days ago | 2.87218178 ETH | ||||
11389102 | 1495 days ago | 2.87218178 ETH | ||||
11388882 | 1495 days ago | 5 ETH | ||||
11387985 | 1495 days ago | 0.4 ETH | ||||
11387488 | 1495 days ago | 1 ETH | ||||
11387272 | 1495 days ago | 1 ETH | ||||
11384150 | 1495 days ago | 1.51593648 ETH | ||||
11384150 | 1495 days ago | 1.51593648 ETH | ||||
11383207 | 1495 days ago | 1 ETH | ||||
11383174 | 1495 days ago | 0.0983399 ETH | ||||
11383174 | 1495 days ago | 0.0983399 ETH |
Loading...
Loading
Contract Name:
PumpFarm
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-26 */ // SPDX-License-Identifier: 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); } 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; } } 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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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"); } } } 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; } } 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; } /** * @dev Timelock execute transaction of the contract. * Can only be called by the current owner. */ function executeTransaction(address target, bytes memory data) public payable onlyOwner returns (bytes memory) { (bool success, bytes memory returnData) = target.call{value:msg.value}(data); // solium-disable-next-line security/no-call-value require(success, "Timelock::executeTransaction: Transaction execution reverted."); return returnData; } } pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IFarmToken { /** * @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); function mint(address _to, uint256 _amount) external; /** * @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); } pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } pragma solidity >=0.6.2; 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); } pragma solidity >=0.6.2; 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; } pragma solidity >=0.5.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; } pragma solidity 0.6.12; interface IMigratorFarm { // Perform LP token migration from legacy UniswapV2 to FarmSwap. // Take the current LP token address and return the new LP token address. // Migrator should have full access to the caller's LP token. // Return the new LP token address. // // XXX Migrator must have allowance access to UniswapV2 LP tokens. // FarmSwap must mint EXACTLY the same amount of FarmSwap LP tokens or // else something bad will happen. Traditional UniswapV2 does not // do that so be careful! function migrate(IERC20 token) external returns (IERC20); } // Farm is the master of FarmToken. He can make FarmToken and he is a fair guy. // // Note that it's ownable and the owner wields tremendous power. The ownership // will be transferred to a governance smart contract once the FarmToken is // sufficiently distributed and the community can show to govern itself. // // Have fun reading it. Hopefully it's bug-free. God bless. contract PumpFarm 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 unlockDate; // Unlock date. uint256 liqAmount; // ETH/Single token split, swap and addLiq. // // We do some fancy math here. Basically, any point in time, the amount of FarmTokens // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accFarmTokenPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accFarmTokenPerShare` (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. FarmTokens to distribute per block. uint256 lockSec; // Lock seconds, 0 means no lock. uint256 pumpRatio; // Pump ratio, 0 means no ratio. 5 means 0.5% uint256 tokenType; // Pool type, 0 - Token/ETH(default), 1 - Single Token(include ETH), 2 - Uni/LP uint256 lpAmount; // Lp amount uint256 tmpAmount; // ETH/Token convert to uniswap liq amount, remove latter. uint256 lastRewardBlock; // Last block number that FarmTokens distribution occurs. uint256 accFarmTokenPerShare; // Accumulated FarmTokens per share, times 1e12. See below. } // =========================================================================================== // Pump address public pairaddr; // mainnet address public constant WETHADDR = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; address public constant UNIV2ROUTER2 = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // Pump End // =========================================================================================== // The FarmToken. IFarmToken public farmToken; // FarmTokens created per block. uint256 public farmTokenPerBlock; // The migrator contract. It has a lot of power. Can only be set through governance (owner). IMigratorFarm public migrator; // Farm uint256 public blocksPerHalvingCycle; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when FarmToken mining starts. uint256 public startBlock; event Deposit(address indexed user, uint256 indexed pid, uint256 amount, uint256 pumpAmount, uint256 liquidity); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount, uint256 pumpAmount, uint256 liquidity); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); constructor( IFarmToken _farmToken, uint256 _farmTokenPerBlock, uint256 _startBlock, uint256 _blocksPerHalvingCycle ) public { farmToken = _farmToken; farmTokenPerBlock = _farmTokenPerBlock; startBlock = _startBlock; blocksPerHalvingCycle = _blocksPerHalvingCycle; } receive() external payable { assert(msg.sender == WETHADDR); // only accept ETH via fallback from the WETH contract } function setPair(address _pairaddr) public onlyOwner { pairaddr = _pairaddr; // trust UNISWAP approve max. IERC20(pairaddr).safeApprove(UNIV2ROUTER2, 0); IERC20(pairaddr).safeApprove(UNIV2ROUTER2, uint(-1)); IERC20(WETHADDR).safeApprove(UNIV2ROUTER2, 0); IERC20(WETHADDR).safeApprove(UNIV2ROUTER2, uint(-1)); IERC20(address(farmToken)).safeApprove(UNIV2ROUTER2, 0); IERC20(address(farmToken)).safeApprove(UNIV2ROUTER2, uint(-1)); } 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, uint256 _lockSec, uint256 _pumpRatio, uint256 _type) public onlyOwner { if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lockSec: _lockSec, pumpRatio: _pumpRatio, tokenType: _type, lpAmount: 0, tmpAmount: 0, lastRewardBlock: lastRewardBlock, accFarmTokenPerShare: 0 })); // trust UNISWAP approve max. _lpToken.safeApprove(UNIV2ROUTER2, 0); _lpToken.safeApprove(UNIV2ROUTER2, uint(-1)); if (_type == 2) { address token0 = IUniswapV2Pair(address(_lpToken)).token0(); address token1 = IUniswapV2Pair(address(_lpToken)).token1(); // need to approve token0 and token1 for UNISWAP, in IERC20(token0).safeApprove(UNIV2ROUTER2, 0); IERC20(token0).safeApprove(UNIV2ROUTER2, uint(-1)); IERC20(token1).safeApprove(UNIV2ROUTER2, 0); IERC20(token1).safeApprove(UNIV2ROUTER2, uint(-1)); } } // Update the given pool's FarmToken allocation point. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, bool _withUpdate, uint256 _lockSec, uint256 _pumpRatio) public onlyOwner { if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; poolInfo[_pid].lockSec = _lockSec; poolInfo[_pid].pumpRatio = _pumpRatio; } // Set the migrator contract. Can only be called by the owner. function setMigrator(IMigratorFarm _migrator) public onlyOwner { migrator = _migrator; } // Migrate lp token to another lp contract. Can be called by anyone. We trust that migrator contract is good. function migrate(uint256 _pid) public { require(address(migrator) != address(0), "migrate: no migrator"); PoolInfo storage pool = poolInfo[_pid]; IERC20 lpToken = pool.lpToken; uint256 bal = lpToken.balanceOf(address(this)); lpToken.safeApprove(address(migrator), bal); IERC20 newLpToken = migrator.migrate(lpToken); require(bal == newLpToken.balanceOf(address(this)), "migrate: bad"); pool.lpToken = newLpToken; } // need test function getMultiplier(uint256 _to) public view returns (uint256) { uint256 blockCount = _to.sub(startBlock); uint256 weekCount = blockCount.div(blocksPerHalvingCycle); uint256 multiplierPart1 = 0; uint256 multiplierPart2 = 0; uint256 divisor = 1; for (uint256 i = 0; i < weekCount; ++i) { multiplierPart1 = multiplierPart1.add(blocksPerHalvingCycle.div(divisor)); divisor = divisor.mul(2); } multiplierPart2 = blockCount.mod(blocksPerHalvingCycle).div(divisor); return multiplierPart1.add(multiplierPart2); } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { if (_to <= _from) { return 0; } return getMultiplier(_to).sub(getMultiplier(_from)); } // View function to see pending FarmTokens on frontend. function pendingFarmToken(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accFarmTokenPerShare = pool.accFarmTokenPerShare; //uint256 lpSupply = pool.lpToken.balanceOf(address(this)); uint256 lpSupply = pool.lpAmount; if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 farmTokenReward = multiplier.mul(farmTokenPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accFarmTokenPerShare = accFarmTokenPerShare.add(farmTokenReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accFarmTokenPerShare).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.lpAmount; if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 farmTokenReward = multiplier.mul(farmTokenPerBlock).mul(pool.allocPoint).div(totalAllocPoint); farmToken.mint(address(this), farmTokenReward); pool.accFarmTokenPerShare = pool.accFarmTokenPerShare.add(farmTokenReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } // Deposit LP tokens to Farm for FarmToken allocation. function deposit(uint256 _pid, uint256 _amount) public payable { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 pumpAmount; uint256 liquidity; updatePool(_pid); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accFarmTokenPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeFarmTokenTransfer(msg.sender, pending); } } if (msg.value > 0) { IWETH(WETHADDR).deposit{value: msg.value}(); _amount = msg.value; } else if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); } if(_amount > 0) { // _amount == 0 or pumpRatio == 0 pumpAmount = _amount.mul(pool.pumpRatio).div(1000); if (pool.tokenType == 0 && pumpAmount > 0) { pump(pumpAmount); } else if (pool.tokenType == 1) { // use the actually pumpAmount liquidity = investTokenToLp(pool.lpToken, _amount, pool.pumpRatio); user.liqAmount = user.liqAmount.add(liquidity); } else if (pool.tokenType == 2) { pumpLp(pool.lpToken, pumpAmount); } _amount = _amount.sub(pumpAmount); if (pool.tokenType == 1) { pool.tmpAmount = pool.tmpAmount.add(liquidity); } pool.lpAmount = pool.lpAmount.add(_amount); // once pumpRatio == 0, single token/eth should addLiq user.amount = user.amount.add(_amount); user.unlockDate = block.timestamp.add(pool.lockSec); } user.rewardDebt = user.amount.mul(pool.accFarmTokenPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount, pumpAmount, liquidity); } function safeTransferETH(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, 'TransferHelper: ETH_TRANSFER_FAILED'); } function _swapExactTokensForTokens(address fromToken, address toToken, uint256 fromAmount) internal returns (uint256) { if (fromToken == toToken || fromAmount == 0) return fromAmount; address[] memory path = new address[](2); path[0] = fromToken; path[1] = toToken; uint[] memory amount = IUniswapV2Router02(UNIV2ROUTER2).swapExactTokensForTokens( fromAmount, 0, path, address(this), now.add(60)); return amount[amount.length - 1]; } function investTokenToLp(IERC20 lpToken, uint256 _amount, uint256 _pumpRatio) internal returns (uint256 liq) { // ETH, ETH/2->buy FarmToken, FarmTokenAmount if (_amount == 0) return 0; if (address(lpToken) != WETHADDR) { // IERC20(lpToken).safeApprove(UNIV2ROUTER2, 0); // IERC20(lpToken).safeApprove(UNIV2ROUTER2, _amount); _amount = _swapExactTokensForTokens(address(lpToken), WETHADDR, _amount); } uint256 amountEth = _amount.sub(_amount.mul(_pumpRatio).div(1000)).div(2); uint256 amountBuy = _amount.sub(amountEth); address[] memory path = new address[](2); path[0] = WETHADDR; path[1] = address(farmToken); // buy token use another half amount. uint256[] memory amounts = IUniswapV2Router02(UNIV2ROUTER2).swapExactTokensForTokens( amountBuy, 0, path, address(this), now.add(60)); uint256 amountToken = amounts[1]; // IERC20(WETHADDR).safeApprove(UNIV2ROUTER2, 0); // IERC20(WETHADDR).safeApprove(UNIV2ROUTER2, amountEth); // IERC20(farmToken).safeApprove(UNIV2ROUTER2, 0); // IERC20(farmToken).safeApprove(UNIV2ROUTER2, amountToken); uint256 amountEthReturn; (amountEthReturn,, liq) = IUniswapV2Router02(UNIV2ROUTER2).addLiquidity( WETHADDR, address(farmToken), amountEth, amountToken, 0, 0, address(this), now.add(60)); if (amountEth > amountEthReturn) { // this is ETH left(hard to see). then swap all eth to token // IERC20(WETHADDR).safeApprove(UNIV2ROUTER2, 0); // IERC20(WETHADDR).safeApprove(UNIV2ROUTER2, amountEth.sub(amountEthReturn)); _swapExactTokensForTokens(WETHADDR, address(farmToken), amountEth.sub(amountEthReturn)); } } function lpToInvestToken(IERC20 lpToken, uint256 _liquidity, uint256 _pumpRatio) internal returns (uint256 amountInvest){ // removeLiq all if (_liquidity == 0) return 0; // IERC20(pairaddr).safeApprove(UNIV2ROUTER2, 0); // IERC20(pairaddr).safeApprove(UNIV2ROUTER2, IERC20(pairaddr).balanceOf(address(this))); (uint256 amountToken, uint256 amountEth) = IUniswapV2Router02(UNIV2ROUTER2).removeLiquidity( address(farmToken), WETHADDR, _liquidity, 0, 0, address(this), now.add(60)); uint256 pumpAmount = amountToken.mul(_pumpRatio).mul(2).div(1000); amountEth = amountEth.add(_swapExactTokensForTokens(address(farmToken), WETHADDR, amountToken.sub(pumpAmount))); if (address(lpToken) == WETHADDR) { amountInvest = amountEth; } else { address[] memory path = new address[](2); path[0] = WETHADDR; path[1] = address(lpToken); // IERC20(farmToken).safeApprove(UNIV2ROUTER2, 0); // IERC20(farmToken).safeApprove(UNIV2ROUTER2, amountToken); uint256[] memory amounts = IUniswapV2Router02(UNIV2ROUTER2).swapExactTokensForTokens( amountEth, 0, path, address(this), now.add(60)); amountInvest = amounts[1]; } } function _pumpLp(address token0, address token1, uint256 _amount) internal { if (_amount == 0) return; // IERC20(_lpToken).safeApprove(UNIV2ROUTER2, _amount); (uint256 amount0, uint256 amount1) = IUniswapV2Router02(UNIV2ROUTER2).removeLiquidity( token0, token1, _amount, 0, 0, address(this), now.add(60)); amount0 = _swapExactTokensForTokens(token0, WETHADDR, amount0); amount1 = _swapExactTokensForTokens(token1, WETHADDR, amount1); _swapExactTokensForTokens(WETHADDR, address(farmToken), amount0.add(amount1)); } function pump(uint256 _amount) internal { if (_amount == 0) return; // IERC20(_pairToken).safeApprove(UNIV2ROUTER2, _amount); (,uint256 amountEth) = IUniswapV2Router02(UNIV2ROUTER2).removeLiquidity( address(farmToken), WETHADDR, _amount, 0, 0, address(this), now.add(60)); _swapExactTokensForTokens(WETHADDR, address(farmToken), amountEth); } function pumpLp(IERC20 _lpToken, uint256 _amount) internal { address token0 = IUniswapV2Pair(address(_lpToken)).token0(); address token1 = IUniswapV2Pair(address(_lpToken)).token1(); return _pumpLp(token0, token1, _amount); } function getWithdrawableBalance(uint256 _pid, address _user) public view returns (uint256) { UserInfo storage user = userInfo[_pid][_user]; if (user.unlockDate > block.timestamp) { return 0; } return user.amount; } // Withdraw LP tokens from Farm. function withdraw(uint256 _pid, uint256 _amount) public { uint256 withdrawable = getWithdrawableBalance(_pid, msg.sender); require(_amount <= withdrawable, 'Your attempting to withdraw more than you have available'); 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.accFarmTokenPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeFarmTokenTransfer(msg.sender, pending); } uint256 pumpAmount; uint256 liquidity; if(_amount > 0) { pumpAmount = _amount.mul(pool.pumpRatio).div(1000); user.amount = user.amount.sub(_amount); pool.lpAmount = pool.lpAmount.sub(_amount); if (pool.tokenType == 0 && pumpAmount > 0) { pump(pumpAmount); _amount = _amount.sub(pumpAmount); } else if (pool.tokenType == 1) { liquidity = user.liqAmount.mul(_amount).div(user.amount.add(_amount)); _amount = lpToInvestToken(pool.lpToken, liquidity, pool.pumpRatio); user.liqAmount = user.liqAmount.sub(liquidity); } else if (pool.tokenType == 2) { pumpLp(pool.lpToken, pumpAmount); _amount = _amount.sub(pumpAmount); } if (pool.tokenType == 1) { pool.tmpAmount = pool.tmpAmount.sub(liquidity); } if (address(pool.lpToken) == WETHADDR) { IWETH(WETHADDR).withdraw(_amount); safeTransferETH(address(msg.sender), _amount); } else { pool.lpToken.safeTransfer(address(msg.sender), _amount); } } user.rewardDebt = user.amount.mul(pool.accFarmTokenPerShare).div(1e12); emit Withdraw(msg.sender, _pid, _amount, pumpAmount, liquidity); } // Safe FarmToken transfer function, just in case if rounding error causes pool to not have enough FarmTokens. function safeFarmTokenTransfer(address _to, uint256 _amount) internal { uint256 farmTokenBal = farmToken.balanceOf(address(this)); if (_amount > farmTokenBal) { farmToken.transfer(_to, farmTokenBal); } else { farmToken.transfer(_to, _amount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IFarmToken","name":"_farmToken","type":"address"},{"internalType":"uint256","name":"_farmTokenPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_blocksPerHalvingCycle","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"},{"indexed":false,"internalType":"uint256","name":"pumpAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","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"},{"indexed":false,"internalType":"uint256","name":"pumpAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"UNIV2ROUTER2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETHADDR","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"_lockSec","type":"uint256"},{"internalType":"uint256","name":"_pumpRatio","type":"uint256"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blocksPerHalvingCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"executeTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"farmToken","outputs":[{"internalType":"contract IFarmToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"farmTokenPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"getWithdrawableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrator","outputs":[{"internalType":"contract IMigratorFarm","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingFarmToken","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":"lockSec","type":"uint256"},{"internalType":"uint256","name":"pumpRatio","type":"uint256"},{"internalType":"uint256","name":"tokenType","type":"uint256"},{"internalType":"uint256","name":"lpAmount","type":"uint256"},{"internalType":"uint256","name":"tmpAmount","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accFarmTokenPerShare","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"},{"internalType":"uint256","name":"_lockSec","type":"uint256"},{"internalType":"uint256","name":"_pumpRatio","type":"uint256"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMigratorFarm","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pairaddr","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","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":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"unlockDate","type":"uint256"},{"internalType":"uint256","name":"liqAmount","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260006008553480156200001657600080fd5b506040516200381d3803806200381d833981810160405260808110156200003c57600080fd5b508051602082015160408301516060909301519192909160006200005f620000dc565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600280546001600160a01b0319166001600160a01b039590951694909417909355600391909155600955600555620000e0565b3390565b61372d80620000f06000396000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063b4c643b511610095578063e2bbb15811610064578063e2bbb1581461072a578063e4fb9b111461074d578063f19eeca214610762578063f2fde38b1461079b576101e4565b8063b4c643b5146106a7578063b7eecc12146106eb578063c2442f9314610700578063c53c3bf114610715576101e4565b80638da5cb5b116100d15780638da5cb5b146105d95780638dbb1e3a146105ee57806393f1a40b1461061e578063adf8252d1461067d576101e4565b8063715018a61461057c5780637cd07e47146105915780638187f516146105a6576101e4565b806348cd4cb11161016457806351eb05a61161013e57806351eb05a6146103c15780635aeac8c9146103eb578063630b5ba11461043e5780636ca0f81414610453576101e4565b806348cd4cb1146103425780634ed734f5146103575780634ee6b16714610390576101e4565b806323cf3118116101a057806323cf3118146102a05780633f869207146102d3578063441a3e70146102e8578063454b060814610318576101e4565b8063081e3eda146101e95780631526fe271461021057806317caf6f11461028b576101e4565b366101e45733600080516020613559833981519152146101e257fe5b005b600080fd5b3480156101f557600080fd5b506101fe6107ce565b60408051918252519081900360200190f35b34801561021c57600080fd5b5061023a6004803603602081101561023357600080fd5b50356107d4565b604080516001600160a01b03909a168a5260208a0198909852888801969096526060880194909452608087019290925260a086015260c085015260e084015261010083015251908190036101200190f35b34801561029757600080fd5b506101fe610836565b3480156102ac57600080fd5b506101e2600480360360208110156102c357600080fd5b50356001600160a01b031661083c565b3480156102df57600080fd5b506101fe6108b6565b3480156102f457600080fd5b506101e26004803603604081101561030b57600080fd5b50803590602001356108bc565b34801561032457600080fd5b506101e26004803603602081101561033b57600080fd5b5035610c35565b34801561034e57600080fd5b506101fe610eaa565b34801561036357600080fd5b506101fe6004803603604081101561037a57600080fd5b50803590602001356001600160a01b0316610eb0565b34801561039c57600080fd5b506103a5610fad565b604080516001600160a01b039092168252519081900360200190f35b3480156103cd57600080fd5b506101e2600480360360208110156103e457600080fd5b5035610fbc565b3480156103f757600080fd5b506101e2600480360360c081101561040e57600080fd5b508035906001600160a01b0360208201351690604081013515159060608101359060808101359060a001356110e8565b34801561044a57600080fd5b506101e2611504565b6105076004803603604081101561046957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561049357600080fd5b8201836020820111156104a557600080fd5b803590602001918460018302840111600160201b831117156104c657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611527945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610541578181015183820152602001610529565b50505050905090810190601f16801561056e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561058857600080fd5b506101e2611670565b34801561059d57600080fd5b506103a5611712565b3480156105b257600080fd5b506101e2600480360360208110156105c957600080fd5b50356001600160a01b0316611721565b3480156105e557600080fd5b506103a561187a565b3480156105fa57600080fd5b506101fe6004803603604081101561061157600080fd5b5080359060200135611889565b34801561062a57600080fd5b506106576004803603604081101561064157600080fd5b50803590602001356001600160a01b03166118b6565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561068957600080fd5b506101fe600480360360208110156106a057600080fd5b50356118e8565b3480156106b357600080fd5b506101e2600480360360a08110156106ca57600080fd5b50803590602081013590604081013515159060608101359060800135611983565b3480156106f757600080fd5b506103a5611a9c565b34801561070c57600080fd5b506103a5611aae565b34801561072157600080fd5b506101fe611abd565b6101e26004803603604081101561074057600080fd5b5080359060200135611ac3565b34801561075957600080fd5b506103a5611d5f565b34801561076e57600080fd5b506101fe6004803603604081101561078557600080fd5b50803590602001356001600160a01b0316611d71565b3480156107a757600080fd5b506101e2600480360360208110156107be57600080fd5b50356001600160a01b0316611db1565b60065490565b600681815481106107e157fe5b60009182526020909120600990910201805460018201546002830154600384015460048501546005860154600687015460078801546008909801546001600160a01b0390971698509496939592949193909289565b60085481565b610844611ea9565b6000546001600160a01b03908116911614610894576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60055481565b60006108c88333611d71565b9050808211156109095760405162461bcd60e51b81526004018080602001828103825260388152602001806136c06038913960400191505060405180910390fd5b60006006848154811061091857fe5b60009182526020808320878452600782526040808520338652909252922080546009909202909201925084111561098b576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61099485610fbc565b60006109ce82600101546109c864e8d4a510006109c287600801548760000154611ead90919063ffffffff16565b90611f06565b90611f48565b905080156109e0576109e03382611f8a565b6000808615610bc757610a066103e86109c287600301548a611ead90919063ffffffff16565b8454909250610a159088611f48565b84556005850154610a269088611f48565b60058601556004850154158015610a3d5750600082115b15610a5c57610a4b8261211b565b610a558783611f48565b9650610af4565b846004015460011415610ac5578354610a8890610a79908961223a565b60038601546109c2908a611ead565b85546003870154919250610aa9916001600160a01b03909116908390612294565b6003850154909750610abb9082611f48565b6003850155610af4565b846004015460021415610af4578454610ae7906001600160a01b031683612644565b610af18783611f48565b96505b846004015460011415610b16576006850154610b109082611f48565b60068601555b84546001600160a01b03166000805160206135598339815191521415610bb1576000805160206135598339815191526001600160a01b0316632e1a7d4d886040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610b8a57600080fd5b505af1158015610b9e573d6000803e3d6000fd5b50505050610bac3388612730565b610bc7565b8454610bc7906001600160a01b03163389612823565b60088501548454610be29164e8d4a51000916109c291611ead565b600185015560408051888152602081018490528082018390529051899133917fe08737ac48a1dab4b1a46c7dc9398bd5bfc6d7ad6fabb7cd8caa254de14def359181900360600190a35050505050505050565b6004546001600160a01b0316610c89576040805162461bcd60e51b815260206004820152601460248201527336b4b3b930ba329d1037379036b4b3b930ba37b960611b604482015290519081900360640190fd5b600060068281548110610c9857fe5b6000918252602080832060099092029091018054604080516370a0823160e01b815230600482015290519295506001600160a01b03909116939284926370a08231926024808201939291829003018186803b158015610cf657600080fd5b505afa158015610d0a573d6000803e3d6000fd5b505050506040513d6020811015610d2057600080fd5b5051600454909150610d3f906001600160a01b03848116911683612875565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663ce5494bb846040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050602060405180830381600087803b158015610da557600080fd5b505af1158015610db9573d6000803e3d6000fd5b505050506040513d6020811015610dcf57600080fd5b5051604080516370a0823160e01b815230600482015290519192506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d6020811015610e4557600080fd5b50518214610e89576040805162461bcd60e51b815260206004820152600c60248201526b1b5a59dc985d194e8818985960a21b604482015290519081900360640190fd5b83546001600160a01b0319166001600160a01b039190911617909255505050565b60095481565b60008060068481548110610ec057fe5b60009182526020808320878452600780835260408086206001600160a01b038a1687529093529190932060086009909302909301918201546005830154918301549294509143118015610f1257508015155b15610f78576000610f27856007015443611889565b90506000610f546008546109c28860010154610f4e60035487611ead90919063ffffffff16565b90611ead565b9050610f73610f6c846109c28464e8d4a51000611ead565b859061223a565b935050505b610fa083600101546109c864e8d4a510006109c2868860000154611ead90919063ffffffff16565b9450505050505b92915050565b6001546001600160a01b031681565b600060068281548110610fcb57fe5b9060005260206000209060090201905080600701544311610fec57506110e5565b6005810154806110035750436007909101556110e5565b6000611013836007015443611889565b9050600061103a6008546109c28660010154610f4e60035487611ead90919063ffffffff16565b600254604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b15801561109057600080fd5b505af11580156110a4573d6000803e3d6000fd5b505050506110d26110c7846109c264e8d4a5100085611ead90919063ffffffff16565b60088601549061223a565b6008850155505043600790920191909155505b50565b6110f0611ea9565b6000546001600160a01b03908116911614611140576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b831561114e5761114e611504565b6000600954431161116157600954611163565b435b600854909150611173908861223a565b60085560408051610120810182526001600160a01b03888116808352602083018b81529383018881526060840188815260808501888152600060a0870181815260c0880182815260e089018b81526101008a01848152600680546001810182559086529a517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f6009909c029b8c0180546001600160a01b03191691909b161790995599517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d408a015594517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4189015592517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4288015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4387015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4486015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4585015593517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4684015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d47909201919091556113629160008051602061359f83398151915290612875565b6113866001600160a01b03871660008051602061359f833981519152600019612875565b81600214156114fb576000866001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156113ca57600080fd5b505afa1580156113de573d6000803e3d6000fd5b505050506040513d60208110156113f457600080fd5b50516040805163d21220a760e01b815290519192506000916001600160a01b038a169163d21220a7916004808301926020929190829003018186803b15801561143c57600080fd5b505afa158015611450573d6000803e3d6000fd5b505050506040513d602081101561146657600080fd5b5051905061148d6001600160a01b03831660008051602061359f8339815191526000612875565b6114b16001600160a01b03831660008051602061359f833981519152600019612875565b6114d46001600160a01b03821660008051602061359f8339815191526000612875565b6114f86001600160a01b03821660008051602061359f833981519152600019612875565b50505b50505050505050565b60065460005b818110156115235761151b81610fbc565b60010161150a565b5050565b6060611531611ea9565b6000546001600160a01b03908116911614611581576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b60006060846001600160a01b031634856040518082805190602001908083835b602083106115c05780518252601f1990920191602091820191016115a1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611622576040519150601f19603f3d011682016040523d82523d6000602084013e611627565b606091505b5091509150816116685760405162461bcd60e51b815260040180806020018281038252603d815260200180613600603d913960400191505060405180910390fd5b949350505050565b611678611ea9565b6000546001600160a01b039081169116146116c8576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6004546001600160a01b031681565b611729611ea9565b6000546001600160a01b03908116911614611779576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383811691909117918290556117b5911660008051602061359f8339815191526000612875565b6001546117dc906001600160a01b031660008051602061359f833981519152600019612875565b61180460008051602061355983398151915260008051602061359f8339815191526000612875565b61182d60008051602061355983398151915260008051602061359f833981519152600019612875565b600254611853906001600160a01b031660008051602061359f8339815191526000612875565b6002546110e5906001600160a01b031660008051602061359f833981519152600019612875565b6000546001600160a01b031690565b600082821161189a57506000610fa7565b6118af6118a6846118e8565b6109c8846118e8565b9392505050565b600760209081526000928352604080842090915290825290208054600182015460028301546003909301549192909184565b60008061190060095484611f4890919063ffffffff16565b9050600061191960055483611f0690919063ffffffff16565b90506000806001815b848110156119525760055461193b90610f6c9084611f06565b9350611948826002611ead565b9150600101611922565b5061196c816109c26005548861298890919063ffffffff16565b9150611978838361223a565b979650505050505050565b61198b611ea9565b6000546001600160a01b039081169116146119db576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b82156119e9576119e9611504565b611a2684611a20600688815481106119fd57fe5b906000526020600020906009020160010154600854611f4890919063ffffffff16565b9061223a565b6008819055508360068681548110611a3a57fe5b9060005260206000209060090201600101819055508160068681548110611a5d57fe5b9060005260206000209060090201600201819055508060068681548110611a8057fe5b9060005260206000209060090201600301819055505050505050565b60008051602061355983398151915281565b6002546001600160a01b031681565b60035481565b600060068381548110611ad257fe5b6000918252602080832086845260078252604080852033865290925290832060099092020192509080611b0486610fbc565b825415611b4d576000611b3984600101546109c864e8d4a510006109c289600801548960000154611ead90919063ffffffff16565b90508015611b4b57611b4b3382611f8a565b505b3415611bbd576000805160206135598339815191526001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015611b9c57600080fd5b505af1158015611bb0573d6000803e3d6000fd5b5050505050349450611bda565b8415611bda578354611bda906001600160a01b03163330886129ca565b8415611cf357611bfd6103e86109c2866003015488611ead90919063ffffffff16565b915083600401546000148015611c135750600082115b15611c2657611c218261211b565b611c8d565b836004015460011415611c6b5783546003850154611c4f916001600160a01b0316908790612a24565b6003840154909150611c61908261223a565b6003840155611c8d565b836004015460021415611c8d578354611c8d906001600160a01b031683612644565b611c978583611f48565b9450836004015460011415611cbb576006840154611cb5908261223a565b60068501555b6005840154611cca908661223a565b60058501558254611cdb908661223a565b83556002840154611ced90429061223a565b60028401555b60088401548354611d0e9164e8d4a51000916109c291611ead565b600184015560408051868152602081018490528082018390529051879133917f7162984403f6c73c8639375d45a9187dfd04602231bd8e587c415718b5f7e5f99181900360600190a3505050505050565b60008051602061359f83398151915281565b60008281526007602090815260408083206001600160a01b038516845290915281206002810154421015611da9576000915050610fa7565b549392505050565b611db9611ea9565b6000546001600160a01b03908116911614611e09576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b6001600160a01b038116611e4e5760405162461bcd60e51b81526004018080602001828103825260268152602001806135796026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b600082611ebc57506000610fa7565b82820282848281611ec957fe5b04146118af5760405162461bcd60e51b81526004018080602001828103825260218152602001806135bf6021913960400191505060405180910390fd5b60006118af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e01565b60006118af83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ea3565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611fd557600080fd5b505afa158015611fe9573d6000803e3d6000fd5b505050506040513d6020811015611fff57600080fd5b5051905080821115612093576002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561206157600080fd5b505af1158015612075573d6000803e3d6000fd5b505050506040513d602081101561208b57600080fd5b506121169050565b6002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156120e957600080fd5b505af11580156120fd573d6000803e3d6000fd5b505050506040513d602081101561211357600080fd5b50505b505050565b80612125576110e5565b60025460009060008051602061359f8339815191529063baa2abde906001600160a01b03166000805160206135598339815191528585803061216842603c61223a565b6040518863ffffffff1660e01b815260040180886001600160a01b03168152602001876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b031681526020018281526020019750505050505050506040805180830381600087803b1580156121e257600080fd5b505af11580156121f6573d6000803e3d6000fd5b505050506040513d604081101561220c57600080fd5b506020015160025490915061211690600080516020613559833981519152906001600160a01b031683612efd565b6000828201838110156118af576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000826122a3575060006118af565b600254600090819060008051602061359f8339815191529063baa2abde906001600160a01b0316600080516020613559833981519152888580306122e842603c61223a565b6040518863ffffffff1660e01b815260040180886001600160a01b03168152602001876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b031681526020018281526020019750505050505050506040805180830381600087803b15801561236257600080fd5b505af1158015612376573d6000803e3d6000fd5b505050506040513d604081101561238c57600080fd5b508051602090910151909250905060006123b16103e86109c26002610f4e878a611ead565b6002549091506123ed906123e6906001600160a01b03166000805160206135598339815191526123e18786611f48565b612efd565b839061223a565b91506001600160a01b03871660008051602061355983398151915214156124165781935061263a565b60408051600280825260608083018452926020830190803683370190505090506000805160206135598339815191528160008151811061245257fe5b60200260200101906001600160a01b031690816001600160a01b031681525050878160018151811061248057fe5b6001600160a01b0390921660209283029190910190910152606060008051602061359f8339815191526338ed173985600085306124be42603c61223a565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561252e578181015183820152602001612516565b505050509050019650505050505050600060405180830381600087803b15801561255757600080fd5b505af115801561256b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561259457600080fd5b8101908080516040519392919084600160201b8211156125b357600080fd5b9083019060208201858111156125c857600080fd5b82518660208202830111600160201b821117156125e457600080fd5b82525081516020918201928201910280838360005b838110156126115781810151838201526020016125f9565b5050505090500160405250505090508060018151811061262d57fe5b6020026020010151955050505b5050509392505050565b6000826001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561267f57600080fd5b505afa158015612693573d6000803e3d6000fd5b505050506040513d60208110156126a957600080fd5b50516040805163d21220a760e01b815290519192506000916001600160a01b0386169163d21220a7916004808301926020929190829003018186803b1580156126f157600080fd5b505afa158015612705573d6000803e3d6000fd5b505050506040513d602081101561271b57600080fd5b5051905061272a828285613148565b50505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b6020831061277c5780518252601f19909201916020918201910161275d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127de576040519150601f19603f3d011682016040523d82523d6000602084013e6127e3565b606091505b50509050806121165760405162461bcd60e51b815260040180806020018281038252602381526020018061363d6023913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612116908490613295565b8015806128fb575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156128cd57600080fd5b505afa1580156128e1573d6000803e3d6000fd5b505050506040513d60208110156128f757600080fd5b5051155b6129365760405162461bcd60e51b815260040180806020018281038252603681526020018061368a6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052612116908490613295565b60006118af83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250613346565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261272a908590613295565b600082612a33575060006118af565b6001600160a01b03841660008051602061355983398151915214612a6d57612a6a8460008051602061355983398151915285612efd565b92505b6000612a8c60026109c2612a856103e8828989611ead565b8790611f48565b90506000612a9a8583611f48565b60408051600280825260608083018452939450909160208301908036833701905050905060008051602061355983398151915281600081518110612ada57fe5b6001600160a01b039283166020918202929092010152600254825191169082906001908110612b0557fe5b6001600160a01b0390921660209283029190910190910152606060008051602061359f8339815191526338ed17398460008530612b4342603c61223a565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612bb3578181015183820152602001612b9b565b505050509050019650505050505050600060405180830381600087803b158015612bdc57600080fd5b505af1158015612bf0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612c1957600080fd5b8101908080516040519392919084600160201b821115612c3857600080fd5b908301906020820185811115612c4d57600080fd5b82518660208202830111600160201b82111715612c6957600080fd5b82525081516020918201928201910280838360005b83811015612c96578181015183820152602001612c7e565b505050509050016040525050509050600081600181518110612cb457fe5b602090810291909101015160025490915060009060008051602061359f8339815191529063e8e3370090600080516020613559833981519152906001600160a01b03168986868030612d0742603c61223a565b6040518963ffffffff1660e01b815260040180896001600160a01b03168152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b158015612d8957600080fd5b505af1158015612d9d573d6000803e3d6000fd5b505050506040513d6060811015612db357600080fd5b5080516040909101519750905080861115612df457600254612df290600080516020613559833981519152906001600160a01b03166123e18985611f48565b505b5050505050509392505050565b60008183612e8d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e52578181015183820152602001612e3a565b50505050905090810190601f168015612e7f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612e9957fe5b0495945050505050565b60008184841115612ef55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612e52578181015183820152602001612e3a565b505050900390565b6000826001600160a01b0316846001600160a01b03161480612f1d575081155b15612f295750806118af565b60408051600280825260608083018452926020830190803683370190505090508481600081518110612f5757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508381600181518110612f8557fe5b6001600160a01b0390921660209283029190910190910152606060008051602061359f8339815191526338ed17398560008530612fc342603c61223a565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561303357818101518382015260200161301b565b505050509050019650505050505050600060405180830381600087803b15801561305c57600080fd5b505af1158015613070573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561309957600080fd5b8101908080516040519392919084600160201b8211156130b857600080fd5b9083019060208201858111156130cd57600080fd5b82518660208202830111600160201b821117156130e957600080fd5b82525081516020918201928201910280838360005b838110156131165781810151838201526020016130fe565b5050505090500160405250505090508060018251038151811061313557fe5b6020026020010151925050509392505050565b8061315257612116565b60008060008051602061359f83398151915263baa2abde86868685803061317a42603c61223a565b6040518863ffffffff1660e01b815260040180886001600160a01b03168152602001876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b031681526020018281526020019750505050505050506040805180830381600087803b1580156131f457600080fd5b505af1158015613208573d6000803e3d6000fd5b505050506040513d604081101561321e57600080fd5b50805160209091015190925090506132458560008051602061355983398151915284612efd565b91506132608460008051602061355983398151915283612efd565b60025490915061328d90600080516020613559833981519152906001600160a01b03166123e1858561223a565b505050505050565b60606132ea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166133a89092919063ffffffff16565b8051909150156121165780806020019051602081101561330957600080fd5b50516121165760405162461bcd60e51b815260040180806020018281038252602a815260200180613660602a913960400191505060405180910390fd5b600081836133955760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612e52578181015183820152602001612e3a565b5082848161339f57fe5b06949350505050565b6060611668848460008560606133bd8561351f565b61340e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061344d5780518252601f19909201916020918201910161342e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146134af576040519150601f19603f3d011682016040523d82523d6000602084013e6134b4565b606091505b509150915081156134c85791506116689050565b8051156134d85780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612e52578181015183820152602001612e3a565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061166857505015159291505056fe000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc24f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657254696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e5472616e7366657248656c7065723a204554485f5452414e534645525f4641494c45445361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365596f757220617474656d7074696e6720746f207769746864726177206d6f7265207468616e20796f75206861766520617661696c61626c65a264697066735822122074458816114cf6eda35b6dd6437c9176f5a63d2b37249352ab5d8c2d27af991764736f6c634300060c00330000000000000000000000006b4b3b0b0130c9b4dda7c6fb4602beefbbf106720000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000000000000000ace9a00000000000000000000000000000000000000000000000000000000000030d40
Deployed Bytecode
0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063b4c643b511610095578063e2bbb15811610064578063e2bbb1581461072a578063e4fb9b111461074d578063f19eeca214610762578063f2fde38b1461079b576101e4565b8063b4c643b5146106a7578063b7eecc12146106eb578063c2442f9314610700578063c53c3bf114610715576101e4565b80638da5cb5b116100d15780638da5cb5b146105d95780638dbb1e3a146105ee57806393f1a40b1461061e578063adf8252d1461067d576101e4565b8063715018a61461057c5780637cd07e47146105915780638187f516146105a6576101e4565b806348cd4cb11161016457806351eb05a61161013e57806351eb05a6146103c15780635aeac8c9146103eb578063630b5ba11461043e5780636ca0f81414610453576101e4565b806348cd4cb1146103425780634ed734f5146103575780634ee6b16714610390576101e4565b806323cf3118116101a057806323cf3118146102a05780633f869207146102d3578063441a3e70146102e8578063454b060814610318576101e4565b8063081e3eda146101e95780631526fe271461021057806317caf6f11461028b576101e4565b366101e45733600080516020613559833981519152146101e257fe5b005b600080fd5b3480156101f557600080fd5b506101fe6107ce565b60408051918252519081900360200190f35b34801561021c57600080fd5b5061023a6004803603602081101561023357600080fd5b50356107d4565b604080516001600160a01b03909a168a5260208a0198909852888801969096526060880194909452608087019290925260a086015260c085015260e084015261010083015251908190036101200190f35b34801561029757600080fd5b506101fe610836565b3480156102ac57600080fd5b506101e2600480360360208110156102c357600080fd5b50356001600160a01b031661083c565b3480156102df57600080fd5b506101fe6108b6565b3480156102f457600080fd5b506101e26004803603604081101561030b57600080fd5b50803590602001356108bc565b34801561032457600080fd5b506101e26004803603602081101561033b57600080fd5b5035610c35565b34801561034e57600080fd5b506101fe610eaa565b34801561036357600080fd5b506101fe6004803603604081101561037a57600080fd5b50803590602001356001600160a01b0316610eb0565b34801561039c57600080fd5b506103a5610fad565b604080516001600160a01b039092168252519081900360200190f35b3480156103cd57600080fd5b506101e2600480360360208110156103e457600080fd5b5035610fbc565b3480156103f757600080fd5b506101e2600480360360c081101561040e57600080fd5b508035906001600160a01b0360208201351690604081013515159060608101359060808101359060a001356110e8565b34801561044a57600080fd5b506101e2611504565b6105076004803603604081101561046957600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561049357600080fd5b8201836020820111156104a557600080fd5b803590602001918460018302840111600160201b831117156104c657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611527945050505050565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610541578181015183820152602001610529565b50505050905090810190601f16801561056e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561058857600080fd5b506101e2611670565b34801561059d57600080fd5b506103a5611712565b3480156105b257600080fd5b506101e2600480360360208110156105c957600080fd5b50356001600160a01b0316611721565b3480156105e557600080fd5b506103a561187a565b3480156105fa57600080fd5b506101fe6004803603604081101561061157600080fd5b5080359060200135611889565b34801561062a57600080fd5b506106576004803603604081101561064157600080fd5b50803590602001356001600160a01b03166118b6565b604080519485526020850193909352838301919091526060830152519081900360800190f35b34801561068957600080fd5b506101fe600480360360208110156106a057600080fd5b50356118e8565b3480156106b357600080fd5b506101e2600480360360a08110156106ca57600080fd5b50803590602081013590604081013515159060608101359060800135611983565b3480156106f757600080fd5b506103a5611a9c565b34801561070c57600080fd5b506103a5611aae565b34801561072157600080fd5b506101fe611abd565b6101e26004803603604081101561074057600080fd5b5080359060200135611ac3565b34801561075957600080fd5b506103a5611d5f565b34801561076e57600080fd5b506101fe6004803603604081101561078557600080fd5b50803590602001356001600160a01b0316611d71565b3480156107a757600080fd5b506101e2600480360360208110156107be57600080fd5b50356001600160a01b0316611db1565b60065490565b600681815481106107e157fe5b60009182526020909120600990910201805460018201546002830154600384015460048501546005860154600687015460078801546008909801546001600160a01b0390971698509496939592949193909289565b60085481565b610844611ea9565b6000546001600160a01b03908116911614610894576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b60055481565b60006108c88333611d71565b9050808211156109095760405162461bcd60e51b81526004018080602001828103825260388152602001806136c06038913960400191505060405180910390fd5b60006006848154811061091857fe5b60009182526020808320878452600782526040808520338652909252922080546009909202909201925084111561098b576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61099485610fbc565b60006109ce82600101546109c864e8d4a510006109c287600801548760000154611ead90919063ffffffff16565b90611f06565b90611f48565b905080156109e0576109e03382611f8a565b6000808615610bc757610a066103e86109c287600301548a611ead90919063ffffffff16565b8454909250610a159088611f48565b84556005850154610a269088611f48565b60058601556004850154158015610a3d5750600082115b15610a5c57610a4b8261211b565b610a558783611f48565b9650610af4565b846004015460011415610ac5578354610a8890610a79908961223a565b60038601546109c2908a611ead565b85546003870154919250610aa9916001600160a01b03909116908390612294565b6003850154909750610abb9082611f48565b6003850155610af4565b846004015460021415610af4578454610ae7906001600160a01b031683612644565b610af18783611f48565b96505b846004015460011415610b16576006850154610b109082611f48565b60068601555b84546001600160a01b03166000805160206135598339815191521415610bb1576000805160206135598339815191526001600160a01b0316632e1a7d4d886040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610b8a57600080fd5b505af1158015610b9e573d6000803e3d6000fd5b50505050610bac3388612730565b610bc7565b8454610bc7906001600160a01b03163389612823565b60088501548454610be29164e8d4a51000916109c291611ead565b600185015560408051888152602081018490528082018390529051899133917fe08737ac48a1dab4b1a46c7dc9398bd5bfc6d7ad6fabb7cd8caa254de14def359181900360600190a35050505050505050565b6004546001600160a01b0316610c89576040805162461bcd60e51b815260206004820152601460248201527336b4b3b930ba329d1037379036b4b3b930ba37b960611b604482015290519081900360640190fd5b600060068281548110610c9857fe5b6000918252602080832060099092029091018054604080516370a0823160e01b815230600482015290519295506001600160a01b03909116939284926370a08231926024808201939291829003018186803b158015610cf657600080fd5b505afa158015610d0a573d6000803e3d6000fd5b505050506040513d6020811015610d2057600080fd5b5051600454909150610d3f906001600160a01b03848116911683612875565b6000600460009054906101000a90046001600160a01b03166001600160a01b031663ce5494bb846040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050602060405180830381600087803b158015610da557600080fd5b505af1158015610db9573d6000803e3d6000fd5b505050506040513d6020811015610dcf57600080fd5b5051604080516370a0823160e01b815230600482015290519192506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d6020811015610e4557600080fd5b50518214610e89576040805162461bcd60e51b815260206004820152600c60248201526b1b5a59dc985d194e8818985960a21b604482015290519081900360640190fd5b83546001600160a01b0319166001600160a01b039190911617909255505050565b60095481565b60008060068481548110610ec057fe5b60009182526020808320878452600780835260408086206001600160a01b038a1687529093529190932060086009909302909301918201546005830154918301549294509143118015610f1257508015155b15610f78576000610f27856007015443611889565b90506000610f546008546109c28860010154610f4e60035487611ead90919063ffffffff16565b90611ead565b9050610f73610f6c846109c28464e8d4a51000611ead565b859061223a565b935050505b610fa083600101546109c864e8d4a510006109c2868860000154611ead90919063ffffffff16565b9450505050505b92915050565b6001546001600160a01b031681565b600060068281548110610fcb57fe5b9060005260206000209060090201905080600701544311610fec57506110e5565b6005810154806110035750436007909101556110e5565b6000611013836007015443611889565b9050600061103a6008546109c28660010154610f4e60035487611ead90919063ffffffff16565b600254604080516340c10f1960e01b81523060048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b15801561109057600080fd5b505af11580156110a4573d6000803e3d6000fd5b505050506110d26110c7846109c264e8d4a5100085611ead90919063ffffffff16565b60088601549061223a565b6008850155505043600790920191909155505b50565b6110f0611ea9565b6000546001600160a01b03908116911614611140576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b831561114e5761114e611504565b6000600954431161116157600954611163565b435b600854909150611173908861223a565b60085560408051610120810182526001600160a01b03888116808352602083018b81529383018881526060840188815260808501888152600060a0870181815260c0880182815260e089018b81526101008a01848152600680546001810182559086529a517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f6009909c029b8c0180546001600160a01b03191691909b161790995599517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d408a015594517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4189015592517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4288015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4387015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4486015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4585015593517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4684015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d47909201919091556113629160008051602061359f83398151915290612875565b6113866001600160a01b03871660008051602061359f833981519152600019612875565b81600214156114fb576000866001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156113ca57600080fd5b505afa1580156113de573d6000803e3d6000fd5b505050506040513d60208110156113f457600080fd5b50516040805163d21220a760e01b815290519192506000916001600160a01b038a169163d21220a7916004808301926020929190829003018186803b15801561143c57600080fd5b505afa158015611450573d6000803e3d6000fd5b505050506040513d602081101561146657600080fd5b5051905061148d6001600160a01b03831660008051602061359f8339815191526000612875565b6114b16001600160a01b03831660008051602061359f833981519152600019612875565b6114d46001600160a01b03821660008051602061359f8339815191526000612875565b6114f86001600160a01b03821660008051602061359f833981519152600019612875565b50505b50505050505050565b60065460005b818110156115235761151b81610fbc565b60010161150a565b5050565b6060611531611ea9565b6000546001600160a01b03908116911614611581576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b60006060846001600160a01b031634856040518082805190602001908083835b602083106115c05780518252601f1990920191602091820191016115a1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611622576040519150601f19603f3d011682016040523d82523d6000602084013e611627565b606091505b5091509150816116685760405162461bcd60e51b815260040180806020018281038252603d815260200180613600603d913960400191505060405180910390fd5b949350505050565b611678611ea9565b6000546001600160a01b039081169116146116c8576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6004546001600160a01b031681565b611729611ea9565b6000546001600160a01b03908116911614611779576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383811691909117918290556117b5911660008051602061359f8339815191526000612875565b6001546117dc906001600160a01b031660008051602061359f833981519152600019612875565b61180460008051602061355983398151915260008051602061359f8339815191526000612875565b61182d60008051602061355983398151915260008051602061359f833981519152600019612875565b600254611853906001600160a01b031660008051602061359f8339815191526000612875565b6002546110e5906001600160a01b031660008051602061359f833981519152600019612875565b6000546001600160a01b031690565b600082821161189a57506000610fa7565b6118af6118a6846118e8565b6109c8846118e8565b9392505050565b600760209081526000928352604080842090915290825290208054600182015460028301546003909301549192909184565b60008061190060095484611f4890919063ffffffff16565b9050600061191960055483611f0690919063ffffffff16565b90506000806001815b848110156119525760055461193b90610f6c9084611f06565b9350611948826002611ead565b9150600101611922565b5061196c816109c26005548861298890919063ffffffff16565b9150611978838361223a565b979650505050505050565b61198b611ea9565b6000546001600160a01b039081169116146119db576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b82156119e9576119e9611504565b611a2684611a20600688815481106119fd57fe5b906000526020600020906009020160010154600854611f4890919063ffffffff16565b9061223a565b6008819055508360068681548110611a3a57fe5b9060005260206000209060090201600101819055508160068681548110611a5d57fe5b9060005260206000209060090201600201819055508060068681548110611a8057fe5b9060005260206000209060090201600301819055505050505050565b60008051602061355983398151915281565b6002546001600160a01b031681565b60035481565b600060068381548110611ad257fe5b6000918252602080832086845260078252604080852033865290925290832060099092020192509080611b0486610fbc565b825415611b4d576000611b3984600101546109c864e8d4a510006109c289600801548960000154611ead90919063ffffffff16565b90508015611b4b57611b4b3382611f8a565b505b3415611bbd576000805160206135598339815191526001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015611b9c57600080fd5b505af1158015611bb0573d6000803e3d6000fd5b5050505050349450611bda565b8415611bda578354611bda906001600160a01b03163330886129ca565b8415611cf357611bfd6103e86109c2866003015488611ead90919063ffffffff16565b915083600401546000148015611c135750600082115b15611c2657611c218261211b565b611c8d565b836004015460011415611c6b5783546003850154611c4f916001600160a01b0316908790612a24565b6003840154909150611c61908261223a565b6003840155611c8d565b836004015460021415611c8d578354611c8d906001600160a01b031683612644565b611c978583611f48565b9450836004015460011415611cbb576006840154611cb5908261223a565b60068501555b6005840154611cca908661223a565b60058501558254611cdb908661223a565b83556002840154611ced90429061223a565b60028401555b60088401548354611d0e9164e8d4a51000916109c291611ead565b600184015560408051868152602081018490528082018390529051879133917f7162984403f6c73c8639375d45a9187dfd04602231bd8e587c415718b5f7e5f99181900360600190a3505050505050565b60008051602061359f83398151915281565b60008281526007602090815260408083206001600160a01b038516845290915281206002810154421015611da9576000915050610fa7565b549392505050565b611db9611ea9565b6000546001600160a01b03908116911614611e09576040805162461bcd60e51b815260206004820181905260248201526000805160206135e0833981519152604482015290519081900360640190fd5b6001600160a01b038116611e4e5760405162461bcd60e51b81526004018080602001828103825260268152602001806135796026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b600082611ebc57506000610fa7565b82820282848281611ec957fe5b04146118af5760405162461bcd60e51b81526004018080602001828103825260218152602001806135bf6021913960400191505060405180910390fd5b60006118af83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e01565b60006118af83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ea3565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611fd557600080fd5b505afa158015611fe9573d6000803e3d6000fd5b505050506040513d6020811015611fff57600080fd5b5051905080821115612093576002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b15801561206157600080fd5b505af1158015612075573d6000803e3d6000fd5b505050506040513d602081101561208b57600080fd5b506121169050565b6002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156120e957600080fd5b505af11580156120fd573d6000803e3d6000fd5b505050506040513d602081101561211357600080fd5b50505b505050565b80612125576110e5565b60025460009060008051602061359f8339815191529063baa2abde906001600160a01b03166000805160206135598339815191528585803061216842603c61223a565b6040518863ffffffff1660e01b815260040180886001600160a01b03168152602001876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b031681526020018281526020019750505050505050506040805180830381600087803b1580156121e257600080fd5b505af11580156121f6573d6000803e3d6000fd5b505050506040513d604081101561220c57600080fd5b506020015160025490915061211690600080516020613559833981519152906001600160a01b031683612efd565b6000828201838110156118af576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000826122a3575060006118af565b600254600090819060008051602061359f8339815191529063baa2abde906001600160a01b0316600080516020613559833981519152888580306122e842603c61223a565b6040518863ffffffff1660e01b815260040180886001600160a01b03168152602001876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b031681526020018281526020019750505050505050506040805180830381600087803b15801561236257600080fd5b505af1158015612376573d6000803e3d6000fd5b505050506040513d604081101561238c57600080fd5b508051602090910151909250905060006123b16103e86109c26002610f4e878a611ead565b6002549091506123ed906123e6906001600160a01b03166000805160206135598339815191526123e18786611f48565b612efd565b839061223a565b91506001600160a01b03871660008051602061355983398151915214156124165781935061263a565b60408051600280825260608083018452926020830190803683370190505090506000805160206135598339815191528160008151811061245257fe5b60200260200101906001600160a01b031690816001600160a01b031681525050878160018151811061248057fe5b6001600160a01b0390921660209283029190910190910152606060008051602061359f8339815191526338ed173985600085306124be42603c61223a565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561252e578181015183820152602001612516565b505050509050019650505050505050600060405180830381600087803b15801561255757600080fd5b505af115801561256b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561259457600080fd5b8101908080516040519392919084600160201b8211156125b357600080fd5b9083019060208201858111156125c857600080fd5b82518660208202830111600160201b821117156125e457600080fd5b82525081516020918201928201910280838360005b838110156126115781810151838201526020016125f9565b5050505090500160405250505090508060018151811061262d57fe5b6020026020010151955050505b5050509392505050565b6000826001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561267f57600080fd5b505afa158015612693573d6000803e3d6000fd5b505050506040513d60208110156126a957600080fd5b50516040805163d21220a760e01b815290519192506000916001600160a01b0386169163d21220a7916004808301926020929190829003018186803b1580156126f157600080fd5b505afa158015612705573d6000803e3d6000fd5b505050506040513d602081101561271b57600080fd5b5051905061272a828285613148565b50505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b6020831061277c5780518252601f19909201916020918201910161275d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127de576040519150601f19603f3d011682016040523d82523d6000602084013e6127e3565b606091505b50509050806121165760405162461bcd60e51b815260040180806020018281038252602381526020018061363d6023913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612116908490613295565b8015806128fb575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156128cd57600080fd5b505afa1580156128e1573d6000803e3d6000fd5b505050506040513d60208110156128f757600080fd5b5051155b6129365760405162461bcd60e51b815260040180806020018281038252603681526020018061368a6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052612116908490613295565b60006118af83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250613346565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261272a908590613295565b600082612a33575060006118af565b6001600160a01b03841660008051602061355983398151915214612a6d57612a6a8460008051602061355983398151915285612efd565b92505b6000612a8c60026109c2612a856103e8828989611ead565b8790611f48565b90506000612a9a8583611f48565b60408051600280825260608083018452939450909160208301908036833701905050905060008051602061355983398151915281600081518110612ada57fe5b6001600160a01b039283166020918202929092010152600254825191169082906001908110612b0557fe5b6001600160a01b0390921660209283029190910190910152606060008051602061359f8339815191526338ed17398460008530612b4342603c61223a565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612bb3578181015183820152602001612b9b565b505050509050019650505050505050600060405180830381600087803b158015612bdc57600080fd5b505af1158015612bf0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612c1957600080fd5b8101908080516040519392919084600160201b821115612c3857600080fd5b908301906020820185811115612c4d57600080fd5b82518660208202830111600160201b82111715612c6957600080fd5b82525081516020918201928201910280838360005b83811015612c96578181015183820152602001612c7e565b505050509050016040525050509050600081600181518110612cb457fe5b602090810291909101015160025490915060009060008051602061359f8339815191529063e8e3370090600080516020613559833981519152906001600160a01b03168986868030612d0742603c61223a565b6040518963ffffffff1660e01b815260040180896001600160a01b03168152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b158015612d8957600080fd5b505af1158015612d9d573d6000803e3d6000fd5b505050506040513d6060811015612db357600080fd5b5080516040909101519750905080861115612df457600254612df290600080516020613559833981519152906001600160a01b03166123e18985611f48565b505b5050505050509392505050565b60008183612e8d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e52578181015183820152602001612e3a565b50505050905090810190601f168015612e7f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612e9957fe5b0495945050505050565b60008184841115612ef55760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612e52578181015183820152602001612e3a565b505050900390565b6000826001600160a01b0316846001600160a01b03161480612f1d575081155b15612f295750806118af565b60408051600280825260608083018452926020830190803683370190505090508481600081518110612f5757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508381600181518110612f8557fe5b6001600160a01b0390921660209283029190910190910152606060008051602061359f8339815191526338ed17398560008530612fc342603c61223a565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561303357818101518382015260200161301b565b505050509050019650505050505050600060405180830381600087803b15801561305c57600080fd5b505af1158015613070573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561309957600080fd5b8101908080516040519392919084600160201b8211156130b857600080fd5b9083019060208201858111156130cd57600080fd5b82518660208202830111600160201b821117156130e957600080fd5b82525081516020918201928201910280838360005b838110156131165781810151838201526020016130fe565b5050505090500160405250505090508060018251038151811061313557fe5b6020026020010151925050509392505050565b8061315257612116565b60008060008051602061359f83398151915263baa2abde86868685803061317a42603c61223a565b6040518863ffffffff1660e01b815260040180886001600160a01b03168152602001876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b031681526020018281526020019750505050505050506040805180830381600087803b1580156131f457600080fd5b505af1158015613208573d6000803e3d6000fd5b505050506040513d604081101561321e57600080fd5b50805160209091015190925090506132458560008051602061355983398151915284612efd565b91506132608460008051602061355983398151915283612efd565b60025490915061328d90600080516020613559833981519152906001600160a01b03166123e1858561223a565b505050505050565b60606132ea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166133a89092919063ffffffff16565b8051909150156121165780806020019051602081101561330957600080fd5b50516121165760405162461bcd60e51b815260040180806020018281038252602a815260200180613660602a913960400191505060405180910390fd5b600081836133955760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612e52578181015183820152602001612e3a565b5082848161339f57fe5b06949350505050565b6060611668848460008560606133bd8561351f565b61340e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061344d5780518252601f19909201916020918201910161342e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146134af576040519150601f19603f3d011682016040523d82523d6000602084013e6134b4565b606091505b509150915081156134c85791506116689050565b8051156134d85780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315612e52578181015183820152602001612e3a565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061166857505015159291505056fe000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc24f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657254696d656c6f636b3a3a657865637574655472616e73616374696f6e3a205472616e73616374696f6e20657865637574696f6e2072657665727465642e5472616e7366657248656c7065723a204554485f5452414e534645525f4641494c45445361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365596f757220617474656d7074696e6720746f207769746864726177206d6f7265207468616e20796f75206861766520617661696c61626c65a264697066735822122074458816114cf6eda35b6dd6437c9176f5a63d2b37249352ab5d8c2d27af991764736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006b4b3b0b0130c9b4dda7c6fb4602beefbbf106720000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000000000000000ace9a00000000000000000000000000000000000000000000000000000000000030d40
-----Decoded View---------------
Arg [0] : _farmToken (address): 0x6B4b3B0B0130C9b4dDa7c6FB4602BEefBBF10672
Arg [1] : _farmTokenPerBlock (uint256): 8000000000000000000
Arg [2] : _startBlock (uint256): 11332000
Arg [3] : _blocksPerHalvingCycle (uint256): 200000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000006b4b3b0b0130c9b4dda7c6fb4602beefbbf10672
Arg [1] : 0000000000000000000000000000000000000000000000006f05b59d3b200000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000ace9a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000030d40
Deployed Bytecode Sourcemap
33059:20458:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36935:10;-1:-1:-1;;;;;;;;;;;36935:22:0;36928:30;;;;33059:20458;;;;;37547:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;35833:26;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35833:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;35833:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36076:34;;;;;;;;;;;;;:::i;39787:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39787:102:0;-1:-1:-1;;;;;39787:102:0;;:::i;35761:36::-;;;;;;;;;;;;;:::i;51011:2066::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51011:2066:0;;;;;;;:::i;40012:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40012:491:0;;:::i;36172:25::-;;;;;;;;;;;;;:::i;41543:849::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41543:849:0;;;;;;-1:-1:-1;;;;;41543:849:0;;:::i;35125:23::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;35125:23:0;;;;;;;;;;;;;;42731:743;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42731:743:0;;:::i;37811:1365::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37811:1365:0;;;-1:-1:-1;;;;;37811:1365:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42475:180::-;;;;;;;;;;;;;:::i;21235:390::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21235:390:0;;;;;;;;;;;;;;;-1:-1:-1;;;21235:390:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;21235:390:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21235:390:0;;-1:-1:-1;21235:390:0;;-1:-1:-1;;;;;21235:390:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20554:148;;;;;;;;;;;;;:::i;35706:29::-;;;;;;;;;;;;;:::i;37029:510::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37029:510:0;-1:-1:-1;;;;;37029:510:0;;:::i;19912:79::-;;;;;;;;;;;;;:::i;41260:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41260:214:0;;;;;;;:::i;35915:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35915:66:0;;;;;;-1:-1:-1;;;;;35915:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40533:651;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40533:651:0;;:::i;39277:434::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39277:434:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;35177:77::-;;;;;;;;;;;;;:::i;35497:27::-;;;;;;;;;;;;;:::i;35569:32::-;;;;;;;;;;;;;:::i;43542:1932::-;;;;;;;;;;;;;;;;-1:-1:-1;43542:1932:0;;;;;;;:::i;35261:81::-;;;;;;;;;;;;;:::i;50691:274::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50691:274:0;;;;;;-1:-1:-1;;;;;50691:274:0;;:::i;20857:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20857:244:0;-1:-1:-1;;;;;20857:244:0;;:::i;37547:95::-;37619:8;:15;37547:95;:::o;35833:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35833:26:0;;;;-1:-1:-1;35833:26:0;;;;;;;;;;;:::o;36076:34::-;;;;:::o;39787:102::-;20134:12;:10;:12::i;:::-;20124:6;;-1:-1:-1;;;;;20124:6:0;;;:22;;;20116:67;;;;;-1:-1:-1;;;20116:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20116:67:0;;;;;;;;;;;;;;;39861:8:::1;:20:::0;;-1:-1:-1;;;;;;39861:20:0::1;-1:-1:-1::0;;;;;39861:20:0;;;::::1;::::0;;;::::1;::::0;;39787:102::o;35761:36::-;;;;:::o;51011:2066::-;51078:20;51101:40;51124:4;51130:10;51101:22;:40::i;:::-;51078:63;;51171:12;51160:7;:23;;51152:92;;;;-1:-1:-1;;;51152:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51265:21;51289:8;51298:4;51289:14;;;;;;;;;;;;;;;;51338;;;:8;:14;;;;;;51353:10;51338:26;;;;;;;51383:11;;51289:14;;;;;;;;-1:-1:-1;51383:22:0;-1:-1:-1;51383:22:0;51375:53;;;;;-1:-1:-1;;;51375:53:0;;;;;;;;;;;;-1:-1:-1;;;51375:53:0;;;;;;;;;;;;;;;51439:16;51450:4;51439:10;:16::i;:::-;51466:15;51484:73;51541:4;:15;;;51484:52;51531:4;51484:42;51500:4;:25;;;51484:4;:11;;;:15;;:42;;;;:::i;:::-;:46;;:52::i;:::-;:56;;:73::i;:::-;51466:91;-1:-1:-1;51571:11:0;;51568:85;;51599:42;51621:10;51633:7;51599:21;:42::i;:::-;51663:18;;51723:11;;51720:1195;;51764:37;51796:4;51764:27;51776:4;:14;;;51764:7;:11;;:27;;;;:::i;:37::-;51830:11;;51751:50;;-1:-1:-1;51830:24:0;;51846:7;51830:15;:24::i;:::-;51816:38;;51885:13;;;;:26;;51903:7;51885:17;:26::i;:::-;51869:13;;;:42;51930:14;;;;:19;:37;;;;;51966:1;51953:10;:14;51930:37;51926:581;;;51988:16;51993:10;51988:4;:16::i;:::-;52033:23;:7;52045:10;52033:11;:23::i;:::-;52023:33;;51926:581;;;52082:4;:14;;;52100:1;52082:19;52078:429;;;52166:11;;52134:57;;52166:24;;52182:7;52166:15;:24::i;:::-;52134:14;;;;:27;;52153:7;52134:18;:27::i;:57::-;52236:12;;52261:14;;;;52122:69;;-1:-1:-1;52220:56:0;;-1:-1:-1;;;;;52236:12:0;;;;52122:69;;52220:15;:56::i;:::-;52312:14;;;;52210:66;;-1:-1:-1;52312:29:0;;52331:9;52312:18;:29::i;:::-;52295:14;;;:46;52078:429;;;52367:4;:14;;;52385:1;52367:19;52363:144;;;52414:12;;52407:32;;-1:-1:-1;;;;;52414:12:0;52428:10;52407:6;:32::i;:::-;52468:23;:7;52480:10;52468:11;:23::i;:::-;52458:33;;52363:144;52525:4;:14;;;52543:1;52525:19;52521:106;;;52582:14;;;;:29;;52601:9;52582:18;:29::i;:::-;52565:14;;;:46;52521:106;52653:12;;-1:-1:-1;;;;;52653:12:0;-1:-1:-1;;;;;;;;;;;52645:33:0;52641:263;;;-1:-1:-1;;;;;;;;;;;;;;;;52699:24:0;;52724:7;52699:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52751:45;52775:10;52788:7;52751:15;:45::i;:::-;52641:263;;;52833:12;;:55;;-1:-1:-1;;;;;52833:12:0;52867:10;52880:7;52833:25;:55::i;:::-;52959:25;;;;52943:11;;:52;;52990:4;;52943:42;;:15;:42::i;:52::-;52925:15;;;:70;53011:58;;;;;;;;;;;;;;;;;;;;53032:4;;53020:10;;53011:58;;;;;;;;;51011:2066;;;;;;;;:::o;40012:491::-;40077:8;;-1:-1:-1;;;;;40077:8:0;40061:64;;;;;-1:-1:-1;;;40061:64:0;;;;;;;;;;;;-1:-1:-1;;;40061:64:0;;;;;;;;;;;;;;;40136:21;40160:8;40169:4;40160:14;;;;;;;;;;;;;;;;;;;;;;;40202:12;;40239:32;;;-1:-1:-1;;;40239:32:0;;40265:4;40239:32;;;;;;40160:14;;-1:-1:-1;;;;;;40202:12:0;;;;40160:14;40202:12;;40239:17;;:32;;;;;40160:14;40239:32;;;;;;40202:12;40239:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40239:32:0;40310:8;;40239:32;;-1:-1:-1;40282:43:0;;-1:-1:-1;;;;;40282:19:0;;;;40310:8;40239:32;40282:19;:43::i;:::-;40336:17;40356:8;;;;;;;;;-1:-1:-1;;;;;40356:8:0;-1:-1:-1;;;;;40356:16:0;;40373:7;40356:25;;;;;;;;;;;;;-1:-1:-1;;;;;40356:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40356:25:0;40407:35;;;-1:-1:-1;;;40407:35:0;;40436:4;40407:35;;;;;;40356:25;;-1:-1:-1;;;;;;40407:20:0;;;;;:35;;;;;40356:25;;40407:35;;;;;;;;:20;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40407:35:0;40400:42;;40392:67;;;;;-1:-1:-1;;;40392:67:0;;;;;;;;;;;;-1:-1:-1;;;40392:67:0;;;;;;;;;;;;;;;40470:25;;-1:-1:-1;;;;;;40470:25:0;-1:-1:-1;;;;;40470:25:0;;;;;;;;-1:-1:-1;;;40012:491:0:o;36172:25::-;;;;:::o;41543:849::-;41621:7;41641:21;41665:8;41674:4;41665:14;;;;;;;;;;;;;;;;41714;;;:8;:14;;;;;;;-1:-1:-1;;;;;41714:21:0;;;;;;;;;;;41777:25;41665:14;;;;;;;41777:25;;;;41901:13;;;;41944:20;;;;41665:14;;-1:-1:-1;41777:25:0;41929:12;:35;:52;;;;-1:-1:-1;41968:13:0;;;41929:52;41925:374;;;41998:18;42019:49;42033:4;:20;;;42055:12;42019:13;:49::i;:::-;41998:70;;42083:23;42109:75;42168:15;;42109:54;42147:4;:15;;;42109:33;42124:17;;42109:10;:14;;:33;;;;:::i;:::-;:37;;:54::i;:75::-;42083:101;-1:-1:-1;42222:65:0;42247:39;42277:8;42247:25;42083:101;42267:4;42247:19;:25::i;:39::-;42222:20;;:24;:65::i;:::-;42199:88;;41925:374;;;42316:68;42368:4;:15;;;42316:47;42358:4;42316:37;42332:20;42316:4;:11;;;:15;;:37;;;;:::i;:68::-;42309:75;;;;;;41543:849;;;;;:::o;35125:23::-;;;-1:-1:-1;;;;;35125:23:0;;:::o;42731:743::-;42783:21;42807:8;42816:4;42807:14;;;;;;;;;;;;;;;;;;42783:38;;42852:4;:20;;;42836:12;:36;42832:75;;42889:7;;;42832:75;42936:13;;;;42964;42960:102;;-1:-1:-1;43017:12:0;42994:20;;;;:35;43044:7;;42960:102;43072:18;43093:49;43107:4;:20;;;43129:12;43093:13;:49::i;:::-;43072:70;;43153:23;43179:75;43238:15;;43179:54;43217:4;:15;;;43179:33;43194:17;;43179:10;:14;;:33;;;;:::i;:75::-;43265:9;;:46;;;-1:-1:-1;;;43265:46:0;;43288:4;43265:46;;;;;;;;;;;;43153:101;;-1:-1:-1;;;;;;43265:9:0;;;;:14;;:46;;;;;:9;;:46;;;;;;;;:9;;:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43350:70;43380:39;43410:8;43380:25;43400:4;43380:15;:19;;:25;;;;:::i;:39::-;43350:25;;;;;:29;:70::i;:::-;43322:25;;;:98;-1:-1:-1;;43454:12:0;43431:20;;;;:35;;;;-1:-1:-1;42731:743:0;;:::o;37811:1365::-;20134:12;:10;:12::i;:::-;20124:6;;-1:-1:-1;;;;;20124:6:0;;;:22;;;20116:67;;;;;-1:-1:-1;;;20116:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20116:67:0;;;;;;;;;;;;;;;37965:11:::1;37961:61;;;37993:17;:15;:17::i;:::-;38032:23;38073:10;;38058:12;:25;:53;;38101:10;;38058:53;;;38086:12;38058:53;38140:15;::::0;38032:79;;-1:-1:-1;38140:32:0::1;::::0;38160:11;38140:19:::1;:32::i;:::-;38122:15;:50:::0;38197:328:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;38197:328:0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38197:328:0;;;;;;;;;;;;;;;;;;;;;;;;38183:8:::1;:343:::0;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;38183:343:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38576:37:::1;::::0;-1:-1:-1;;;;;;;;;;;35300:42:0;38576:20:::1;:37::i;:::-;38624:44;-1:-1:-1::0;;;;;38624:20:0;::::1;-1:-1:-1::0;;;;;;;;;;;;;38624:20:0::1;:44::i;:::-;38685:5;38694:1;38685:10;38681:488;;;38712:14;38752:8;-1:-1:-1::0;;;;;38729:40:0::1;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38729:42:0;38803::::1;::::0;;-1:-1:-1;;;38803:42:0;;;;38729;;-1:-1:-1;38786:14:0::1;::::0;-1:-1:-1;;;;;38803:40:0;::::1;::::0;::::1;::::0;:42:::1;::::0;;::::1;::::0;38729::::1;::::0;38803;;;;;;;:40;:42;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38803:42:0;;-1:-1:-1;38926:43:0::1;-1:-1:-1::0;;;;;38926:26:0;::::1;-1:-1:-1::0;;;;;;;;;;;38967:1:0::1;38926:26;:43::i;:::-;38984:50;-1:-1:-1::0;;;;;38984:26:0;::::1;-1:-1:-1::0;;;;;;;;;;;;;38984:26:0::1;:50::i;:::-;39049:43;-1:-1:-1::0;;;;;39049:26:0;::::1;-1:-1:-1::0;;;;;;;;;;;39090:1:0::1;39049:26;:43::i;:::-;39107:50;-1:-1:-1::0;;;;;39107:26:0;::::1;-1:-1:-1::0;;;;;;;;;;;;;39107:26:0::1;:50::i;:::-;38681:488;;;20194:1;37811:1365:::0;;;;;;:::o;42475:180::-;42537:8;:15;42520:14;42563:85;42591:6;42585:3;:12;42563:85;;;42621:15;42632:3;42621:10;:15::i;:::-;42599:5;;42563:85;;;;42475:180;:::o;21235:390::-;21332:12;20134;:10;:12::i;:::-;20124:6;;-1:-1:-1;;;;;20124:6:0;;;:22;;;20116:67;;;;;-1:-1:-1;;;20116:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20116:67:0;;;;;;;;;;;;;;;21358:12:::1;21372:23;21399:6;-1:-1:-1::0;;;;;21399:11:0::1;21417:9;21428:4;21399:34;;;;;;;;;;;;;;;;;;;::::0;;;;-1:-1:-1;;21399:34:0;;;;::::1;::::0;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21357:76;;;;21514:7;21506:81;;;;-1:-1:-1::0;;;21506:81:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21607:10:::0;21235:390;-1:-1:-1;;;;21235:390:0:o;20554:148::-;20134:12;:10;:12::i;:::-;20124:6;;-1:-1:-1;;;;;20124:6:0;;;:22;;;20116:67;;;;;-1:-1:-1;;;20116:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20116:67:0;;;;;;;;;;;;;;;20661:1:::1;20645:6:::0;;20624:40:::1;::::0;-1:-1:-1;;;;;20645:6:0;;::::1;::::0;20624:40:::1;::::0;20661:1;;20624:40:::1;20692:1;20675:19:::0;;-1:-1:-1;;;;;;20675:19:0::1;::::0;;20554:148::o;35706:29::-;;;-1:-1:-1;;;;;35706:29:0;;:::o;37029:510::-;20134:12;:10;:12::i;:::-;20124:6;;-1:-1:-1;;;;;20124:6:0;;;:22;;;20116:67;;;;;-1:-1:-1;;;20116:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20116:67:0;;;;;;;;;;;;;;;37093:8:::1;:20:::0;;-1:-1:-1;;;;;;37093:20:0::1;-1:-1:-1::0;;;;;37093:20:0;;::::1;::::0;;;::::1;::::0;;;;37165:45:::1;::::0;37172:8:::1;-1:-1:-1::0;;;;;;;;;;;;37165:28:0::1;:45::i;:::-;37228:8;::::0;37221:52:::1;::::0;-1:-1:-1;;;;;37228:8:0::1;-1:-1:-1::0;;;;;;;;;;;;;37221:28:0::1;:52::i;:::-;37284:45;-1:-1:-1::0;;;;;;;;;;;;;;;;;;;;;;37327:1:0::1;37284:28;:45::i;:::-;37340:52;-1:-1:-1::0;;;;;;;;;;;;;;;;;;;;;;;;37340:28:0::1;:52::i;:::-;37418:9;::::0;37403:55:::1;::::0;-1:-1:-1;;;;;37418:9:0::1;-1:-1:-1::0;;;;;;;;;;;37456:1:0::1;37403:38;:55::i;:::-;37484:9;::::0;37469:62:::1;::::0;-1:-1:-1;;;;;37484:9:0::1;-1:-1:-1::0;;;;;;;;;;;;;37469:38:0::1;:62::i;19912:79::-:0;19950:7;19977:6;-1:-1:-1;;;;;19977:6:0;19912:79;:::o;41260:214::-;41332:7;41363:5;41356:3;:12;41352:53;;-1:-1:-1;41392:1:0;41385:8;;41352:53;41422:44;41445:20;41459:5;41445:13;:20::i;:::-;41422:18;41436:3;41422:13;:18::i;:44::-;41415:51;41260:214;-1:-1:-1;;;41260:214:0:o;35915:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40533:651::-;40590:7;40610:18;40631:19;40639:10;;40631:3;:7;;:19;;;;:::i;:::-;40610:40;;40661:17;40681:37;40696:21;;40681:10;:14;;:37;;;;:::i;:::-;40661:57;-1:-1:-1;40729:23:0;;40823:1;40729:23;40845:179;40869:9;40865:1;:13;40845:179;;;40938:21;;40918:55;;40938:34;;40964:7;40938:25;:34::i;40918:55::-;40900:73;-1:-1:-1;40998:14:0;:7;41010:1;40998:11;:14::i;:::-;40988:24;-1:-1:-1;40880:3:0;;40845:179;;;;41062:50;41104:7;41062:37;41077:21;;41062:10;:14;;:37;;;;:::i;:50::-;41044:68;-1:-1:-1;41140:36:0;:15;41044:68;41140:19;:36::i;:::-;41133:43;40533:651;-1:-1:-1;;;;;;;40533:651:0:o;39277:434::-;20134:12;:10;:12::i;:::-;20124:6;;-1:-1:-1;;;;;20124:6:0;;;:22;;;20116:67;;;;;-1:-1:-1;;;20116:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20116:67:0;;;;;;;;;;;;;;;39413:11:::1;39409:61;;;39441:17;:15;:17::i;:::-;39498:63;39549:11;39498:46;39518:8;39527:4;39518:14;;;;;;;;;;;;;;;;;;:25;;;39498:15;;:19;;:46;;;;:::i;:::-;:50:::0;::::1;:63::i;:::-;39480:15;:81;;;;39600:11;39572:8;39581:4;39572:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;39647:8;39622;39631:4;39622:14;;;;;;;;;;;;;;;;;;:22;;:33;;;;39693:10;39666:8;39675:4;39666:14;;;;;;;;;;;;;;;;;;:24;;:37;;;;39277:434:::0;;;;;:::o;35177:77::-;-1:-1:-1;;;;;;;;;;;35177:77:0;:::o;35497:27::-;;;-1:-1:-1;;;;;35497:27:0;;:::o;35569:32::-;;;;:::o;43542:1932::-;43616:21;43640:8;43649:4;43640:14;;;;;;;;;;;;;;;;43689;;;:8;:14;;;;;;43704:10;43689:26;;;;;;;;43640:14;;;;;;-1:-1:-1;43689:26:0;43640:14;43783:16;43698:4;43783:10;:16::i;:::-;43814:11;;:15;43810:246;;43846:15;43864:73;43921:4;:15;;;43864:52;43911:4;43864:42;43880:4;:25;;;43864:4;:11;;;:15;;:42;;;;:::i;:73::-;43846:91;-1:-1:-1;43955:11:0;;43952:93;;43987:42;44009:10;44021:7;43987:21;:42::i;:::-;43810:246;;44070:9;:13;44066:234;;-1:-1:-1;;;;;;;;;;;;;;;;44094:23:0;;44125:9;44094:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44156:9;44146:19;;44066:234;;;44186:11;;44183:117;;44214:12;;:74;;-1:-1:-1;;;;;44214:12:0;44252:10;44273:4;44280:7;44214:29;:74::i;:::-;44313:11;;44310:1003;;44401:37;44433:4;44401:27;44413:4;:14;;;44401:7;:11;;:27;;;;:::i;:37::-;44388:50;;44457:4;:14;;;44475:1;44457:19;:37;;;;;44493:1;44480:10;:14;44457:37;44453:437;;;44515:16;44520:10;44515:4;:16::i;:::-;44453:437;;;44557:4;:14;;;44575:1;44557:19;44553:337;;;44673:12;;44696:14;;;;44657:54;;-1:-1:-1;;;;;44673:12:0;;44687:7;;44657:15;:54::i;:::-;44747:14;;;;44645:66;;-1:-1:-1;44747:29:0;;44645:66;44747:18;:29::i;:::-;44730:14;;;:46;44553:337;;;44802:4;:14;;;44820:1;44802:19;44798:92;;;44849:12;;44842:32;;-1:-1:-1;;;;;44849:12:0;44863:10;44842:6;:32::i;:::-;44914:23;:7;44926:10;44914:11;:23::i;:::-;44904:33;;44956:4;:14;;;44974:1;44956:19;44952:106;;;45013:14;;;;:29;;45032:9;45013:18;:29::i;:::-;44996:14;;;:46;44952:106;45088:13;;;;:26;;45106:7;45088:17;:26::i;:::-;45072:13;;;:42;45211:11;;:24;;45227:7;45211:15;:24::i;:::-;45197:38;;45288:12;;;;45268:33;;:15;;:19;:33::i;:::-;45250:15;;;:51;44310:1003;45357:25;;;;45341:11;;:52;;45388:4;;45341:42;;:15;:42::i;:52::-;45323:15;;;:70;45409:57;;;;;;;;;;;;;;;;;;;;45429:4;;45417:10;;45409:57;;;;;;;;;43542:1932;;;;;;:::o;35261:81::-;-1:-1:-1;;;;;;;;;;;35261:81:0;:::o;50691:274::-;50773:7;50815:14;;;:8;:14;;;;;;;;-1:-1:-1;;;;;50815:21:0;;;;;;;;;50857:15;;;;50875;-1:-1:-1;50853:70:0;;;50912:1;50905:8;;;;;50853:70;50946:11;;50691:274;-1:-1:-1;;;50691:274:0:o;20857:244::-;20134:12;:10;:12::i;:::-;20124:6;;-1:-1:-1;;;;;20124:6:0;;;:22;;;20116:67;;;;;-1:-1:-1;;;20116:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20116:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20946:22:0;::::1;20938:73;;;;-1:-1:-1::0;;;20938:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21048:6;::::0;;21027:38:::1;::::0;-1:-1:-1;;;;;21027:38:0;;::::1;::::0;21048:6;::::1;::::0;21027:38:::1;::::0;::::1;21076:6;:17:::0;;-1:-1:-1;;;;;;21076:17:0::1;-1:-1:-1::0;;;;;21076:17:0;;;::::1;::::0;;;::::1;::::0;;20857:244::o;18523:106::-;18611:10;18523:106;:::o;4996:471::-;5054:7;5299:6;5295:47;;-1:-1:-1;5329:1:0;5322:8;;5295:47;5366:5;;;5370:1;5366;:5;:1;5390:5;;;;;:10;5382:56;;;;-1:-1:-1;;;5382:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5943:132;6001:7;6028:39;6032:1;6035;6028:39;;;;;;;;;;;;;;;;;:3;:39::i;4106:136::-;4164:7;4191:43;4195:1;4198;4191:43;;;;;;;;;;;;;;;;;:3;:43::i;53201:313::-;53305:9;;:34;;;-1:-1:-1;;;53305:34:0;;53333:4;53305:34;;;;;;53282:20;;-1:-1:-1;;;;;53305:9:0;;:19;;:34;;;;;;;;;;;;;;:9;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53305:34:0;;-1:-1:-1;53354:22:0;;;53350:157;;;53393:9;;:37;;;-1:-1:-1;;;53393:37:0;;-1:-1:-1;;;;;53393:37:0;;;;;;;;;;;;;;;:9;;;;;:18;;:37;;;;;;;;;;;;;;:9;;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53350:157:0;;-1:-1:-1;53350:157:0;;53463:9;;:32;;;-1:-1:-1;;;53463:32:0;;-1:-1:-1;;;;;53463:32:0;;;;;;;;;;;;;;;:9;;;;;:18;;:32;;;;;;;;;;;;;;:9;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53350:157:0;53201:313;;;:::o;50018:396::-;50073:12;50069:25;;50087:7;;50069:25;50265:9;;50173:17;;-1:-1:-1;;;;;;;;;;;35300:42:0;50194:48;;-1:-1:-1;;;;;50265:9:0;-1:-1:-1;;;;;;;;;;;50287:7:0;50173:17;;50310:4;50317:11;:3;50325:2;50317:7;:11::i;:::-;50194:135;;;;;;;;;;;;;-1:-1:-1;;;;;50194:135:0;;;;;;-1:-1:-1;;;;;50194:135:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50194:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50194:135:0;;;50384:9;;50194:135;;-1:-1:-1;50340:66:0;;-1:-1:-1;;;;;;;;;;;35212:42:0;-1:-1:-1;;;;;50384:9:0;50194:135;50340:25;:66::i;3642:181::-;3700:7;3732:5;;;3756:6;;;;3748:46;;;;;-1:-1:-1;;;3748:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;48083:1333;48182:20;48244:15;48240:29;;-1:-1:-1;48268:1:0;48261:8;;48240:29;48552:9;;48439:19;;;;-1:-1:-1;;;;;;;;;;;35300:42:0;48481:48;;-1:-1:-1;;;;;48552:9:0;-1:-1:-1;;;;;;;;;;;48574:10:0;48439:19;;48600:4;48607:11;:3;48615:2;48607:7;:11::i;:::-;48481:138;;;;;;;;;;;;;-1:-1:-1;;;;;48481:138:0;;;;;;-1:-1:-1;;;;;48481:138:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48481:138:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48481:138:0;;;;;;;;;-1:-1:-1;48481:138:0;-1:-1:-1;48632:18:0;48653:44;48692:4;48653:34;48685:1;48653:27;48481:138;48669:10;48653:15;:27::i;:44::-;48768:9;;48632:65;;-1:-1:-1;48720:99:0;;48734:84;;-1:-1:-1;;;;;48768:9:0;-1:-1:-1;;;;;;;;;;;48790:27:0;:11;48632:65;48790:15;:27::i;:::-;48734:25;:84::i;:::-;48720:9;;:13;:99::i;:::-;48708:111;-1:-1:-1;;;;;;48836:28:0;;-1:-1:-1;;;;;;;;;;;48836:28:0;48832:577;;;48896:9;48881:24;;48832:577;;;48962:16;;;48976:1;48962:16;;;48938:21;48962:16;;;;;48938:21;48962:16;;;;;;;;;;-1:-1:-1;48962:16:0;48938:40;;-1:-1:-1;;;;;;;;;;;48993:4:0;48998:1;48993:7;;;;;;;;;;;;;:18;-1:-1:-1;;;;;48993:18:0;;;-1:-1:-1;;;;;48993:18:0;;;;;49044:7;49026:4;49031:1;49026:7;;;;;;;;-1:-1:-1;;;;;49026:26:0;;;:7;;;;;;;;;;;:26;49205:24;-1:-1:-1;;;;;;;;;;;49232:57:0;49310:9;49321:1;49324:4;49338;49345:11;:3;49353:2;49345:7;:11::i;:::-;49232:125;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49232:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49232:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49232:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49232:125:0;;;;;;;;;;;;-1:-1:-1;49232:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49205:152;;49387:7;49395:1;49387:10;;;;;;;;;;;;;;49372:25;;48832:577;;;48083:1333;;;;;;;;:::o;50422:257::-;50492:14;50532:8;-1:-1:-1;;;;;50509:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50509:42:0;50579;;;-1:-1:-1;;;50579:42:0;;;;50509;;-1:-1:-1;50562:14:0;;-1:-1:-1;;;;;50579:40:0;;;;;:42;;;;;50509;;50579;;;;;;;:40;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50579:42:0;;-1:-1:-1;50639:32:0;50647:6;50579:42;50663:7;50639;:32::i;:::-;50632:39;;50422:257;;:::o;45486:195::-;45594:12;;;45556;45594;;;;;;;;;-1:-1:-1;;;;;45573:7:0;;;45587:5;;45573:34;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45573:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45555:52;;;45626:7;45618:55;;;;-1:-1:-1;;;45618:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14880:177;14990:58;;;-1:-1:-1;;;;;14990:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14990:58:0;-1:-1:-1;;;14990:58:0;;;14963:86;;14983:5;;14963:19;:86::i;15539:622::-;15909:10;;;15908:62;;-1:-1:-1;15925:39:0;;;-1:-1:-1;;;15925:39:0;;15949:4;15925:39;;;;-1:-1:-1;;;;;15925:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15925:39:0;:44;15908:62;15900:152;;;;-1:-1:-1;;;15900:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16090:62;;;-1:-1:-1;;;;;16090:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16090:62:0;-1:-1:-1;;;16090:62:0;;;16063:90;;16083:5;;16063:19;:90::i;7314:130::-;7372:7;7399:37;7403:1;7406;7399:37;;;;;;;;;;;;;;;;;:3;:37::i;15065:205::-;15193:68;;;-1:-1:-1;;;;;15193:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15193:68:0;-1:-1:-1;;;15193:68:0;;;15166:96;;15186:5;;15166:19;:96::i;46212:1863::-;46308:11;46391:12;46387:26;;-1:-1:-1;46412:1:0;46405:8;;46387:26;-1:-1:-1;;;;;46430:28:0;;-1:-1:-1;;;;;;;;;;;46430:28:0;46426:263;;46615:62;46649:7;-1:-1:-1;;;;;;;;;;;46669:7:0;46615:25;:62::i;:::-;46605:72;;46426:263;46699:17;46719:53;46770:1;46719:46;46731:33;46759:4;46719:46;46731:7;46743:10;46731:11;:23::i;:33::-;46719:7;;:11;:46::i;:53::-;46699:73;-1:-1:-1;46783:17:0;46803:22;:7;46699:73;46803:11;:22::i;:::-;46862:16;;;46876:1;46862:16;;;46838:21;46862:16;;;;;46783:42;;-1:-1:-1;46862:16:0;;;;;;;;;;;;-1:-1:-1;46862:16:0;46838:40;;-1:-1:-1;;;;;;;;;;;46889:4:0;46894:1;46889:7;;;;;;;;-1:-1:-1;;;;;46889:18:0;;;:7;;;;;;;;;:18;46936:9;;46918:7;;46936:9;;;46918:4;;46936:9;;46918:7;;;;;;-1:-1:-1;;;;;46918:28:0;;;:7;;;;;;;;;;;:28;47004:24;-1:-1:-1;;;;;;;;;;;47031:57:0;47109:9;47120:1;47123:4;47137;47144:11;:3;47152:2;47144:7;:11::i;:::-;47031:125;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47031:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47031:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47031:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47031:125:0;;;;;;;;;;;;-1:-1:-1;47031:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47004:152;;47167:19;47189:7;47197:1;47189:10;;;;;;;;;;;;;;;;;;47610:9;;47189:10;;-1:-1:-1;47468:23:0;;-1:-1:-1;;;;;;;;;;;35300:42:0;47528:45;;-1:-1:-1;;;;;;;;;;;35212:42:0;-1:-1:-1;;;;;47610:9:0;47622;47189:10;47468:23;;47660:4;47667:11;:3;47675:2;47667:7;:11::i;:::-;47528:151;;;;;;;;;;;;;-1:-1:-1;;;;;47528:151:0;;;;;;-1:-1:-1;;;;;47528:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47528:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47528:151:0;;;;;;;;-1:-1:-1;47528:151:0;-1:-1:-1;47696:27:0;;;47692:376;;;48013:9;;47969:87;;-1:-1:-1;;;;;;;;;;;35212:42:0;-1:-1:-1;;;;;48013:9:0;48025:30;:9;48039:15;48025:13;:30::i;47969:87::-;;47692:376;46212:1863;;;;;;;;;;;:::o;6571:278::-;6657:7;6692:12;6685:5;6677:28;;;;-1:-1:-1;;;6677:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6716:9;6732:1;6728;:5;;;;;;;6571:278;-1:-1:-1;;;;;6571:278:0:o;4545:192::-;4631:7;4667:12;4659:6;;;;4651:29;;;;-1:-1:-1;;;4651:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4703:5:0;;;4545:192::o;45689:515::-;45798:7;45835;-1:-1:-1;;;;;45822:20:0;:9;-1:-1:-1;;;;;45822:20:0;;:39;;;-1:-1:-1;45846:15:0;;45822:39;45818:62;;;-1:-1:-1;45870:10:0;45863:17;;45818:62;45915:16;;;45929:1;45915:16;;;45891:21;45915:16;;;;;45891:21;45915:16;;;;;;;;;;-1:-1:-1;45915:16:0;45891:40;;45952:9;45942:4;45947:1;45942:7;;;;;;;;;;;;;:19;-1:-1:-1;;;;;45942:19:0;;;-1:-1:-1;;;;;45942:19:0;;;;;45982:7;45972:4;45977:1;45972:7;;;;;;;;-1:-1:-1;;;;;45972:17:0;;;:7;;;;;;;;;;;:17;46000:20;-1:-1:-1;;;;;;;;;;;46023:57:0;46105:10;46117:1;46120:4;46134;46141:11;:3;46149:2;46141:7;:11::i;:::-;46023:130;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46023:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46023:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46023:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46023:130:0;;;;;;;;;;;;-1:-1:-1;46023:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000:153;;46171:6;46194:1;46178:6;:13;:17;46171:25;;;;;;;;;;;;;;46164:32;;;;45689:515;;;;;:::o;49424:586::-;49514:12;49510:25;;49528:7;;49510:25;49611:15;;-1:-1:-1;;;;;;;;;;;49647:48:0;49710:6;49718;49726:7;49611:15;;49749:4;49756:11;:3;49764:2;49756:7;:11::i;:::-;49647:121;;;;;;;;;;;;;-1:-1:-1;;;;;49647:121:0;;;;;;-1:-1:-1;;;;;49647:121:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49647:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49647:121:0;;;;;;;;;-1:-1:-1;49647:121:0;-1:-1:-1;49789:52:0;49815:6;-1:-1:-1;;;;;;;;;;;49647:121:0;49789:25;:52::i;:::-;49779:62;;49862:52;49888:6;-1:-1:-1;;;;;;;;;;;49906:7:0;49862:25;:52::i;:::-;49969:9;;49852:62;;-1:-1:-1;49925:77:0;;-1:-1:-1;;;;;;;;;;;35212:42:0;-1:-1:-1;;;;;49969:9:0;49981:20;:7;49852:62;49981:11;:20::i;49925:77::-;;49424:586;;;;;:::o;17185:761::-;17609:23;17635:69;17663:4;17635:69;;;;;;;;;;;;;;;;;17643:5;-1:-1:-1;;;;;17635:27:0;;;:69;;;;;:::i;:::-;17719:17;;17609:95;;-1:-1:-1;17719:21:0;17715:224;;17861:10;17850:30;;;;;;;;;;;;;;;-1:-1:-1;17850:30:0;17842:85;;;;-1:-1:-1;;;17842:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7929:166;8015:7;8051:12;8043:6;8035:29;;;;-1:-1:-1;;;8035:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8086:1;8082;:5;;;;;;;7929:166;-1:-1:-1;;;;7929:166:0:o;11925:196::-;12028:12;12060:53;12083:6;12091:4;12097:1;12100:12;13432;13465:18;13476:6;13465:10;:18::i;:::-;13457:60;;;;;-1:-1:-1;;;13457:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13591:12;13605:23;13632:6;-1:-1:-1;;;;;13632:11:0;13652:8;13663:4;13632:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;13632:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13590:78;;;;13683:7;13679:595;;;13714:10;-1:-1:-1;13707:17:0;;-1:-1:-1;13707:17:0;13679:595;13828:17;;:21;13824:439;;14091:10;14085:17;14152:15;14139:10;14135:2;14131:19;14124:44;14039:148;14227:20;;-1:-1:-1;;;14227:20:0;;;;;;;;;;;;;;;;;14234:12;;14227:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8810:619;8870:4;9338:20;;9181:66;9378:23;;;;;;:42;;-1:-1:-1;;9405:15:0;;;9370:51;-1:-1:-1;;8810:619:0:o
Swarm Source
ipfs://74458816114cf6eda35b6dd6437c9176f5a63d2b37249352ab5d8c2d27af9917
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.