Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
StrategyCakeLP
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-01-27 */ // File: @openzeppelin/contracts/GSN/Context.sol 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; } } // File: @openzeppelin/contracts/access/Ownable.sol 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; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol 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); } // File: @openzeppelin/contracts/math/SafeMath.sol 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; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol 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"); } } } // File: @openzeppelin/contracts/utils/Pausable.sol pragma solidity ^0.6.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: contracts/BIFI/interfaces/pancake/IPancakeRouter.sol pragma solidity ^0.6.0; interface IPancakeRouter { 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 swapExactTokensForTokens( uint amountIn, uint amountOutMin, 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 swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); } // File: contracts/BIFI/interfaces/pancake/IPancakePair.sol pragma solidity ^0.6.0; interface IPancakePair { function token0() external view returns (address); function token1() external view returns (address); } // File: contracts/BIFI/interfaces/pancake/IMasterChef.sol pragma solidity ^0.6.0; interface IMasterChef { function deposit(uint256 _pid, uint256 _amount) external; function withdraw(uint256 _pid, uint256 _amount) external; function enterStaking(uint256 _amount) external; function leaveStaking(uint256 _amount) external; function pendingCake(uint256 _pid, address _user) external view returns (uint256); function userInfo(uint256 _pid, address _user) external view returns (uint256, uint256); function emergencyWithdraw(uint256 _pid) external; } // File: contracts/BIFI/strategies/Cake/StrategyCakeLP.sol pragma solidity ^0.6.0; /** * @dev Implementation of a strategy to get yields from farming LP Pools in PancakeSwap. * PancakeSwap is an automated market maker (“AMM”) that allows two tokens to be exchanged on the Binance Smart Chain. * It is fast, cheap, and allows anyone to participate. PancakeSwap is aiming to be the #1 liquidity provider on BSC. * * This strategy simply deposits whatever funds it receives from the vault into the selected MasterChef pool. * CAKE rewards from providing liquidity are farmed every few minutes, sold and split 50/50. * The corresponding pair of assets are bought and more liquidity is added to the MasterChef pool. * * This strat is currently compatible with all LP pools. */ contract StrategyCakeLP is Ownable, Pausable { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; /** * @dev Tokens Used: * {wbnb} - Required for liquidity routing when doing swaps. * {cake} - Token generated by staking our funds. In this case it's the CAKEs token. * {bifi} - BeefyFinance token, used to send funds to the treasury. * {lpPair} - Token that the strategy maximizes. The same token that users deposit in the vault. * {lpToken0, lpToken1} - Tokens that the strategy maximizes. IPancakePair tokens */ address constant public wbnb = address(0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c); address constant public cake = address(0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82); address constant public bifi = address(0xCa3F508B8e4Dd382eE878A314789373D80A5190A); address public lpPair; address public lpToken0; address public lpToken1; /** * @dev Third Party Contracts: * {unirouter} - PancakeSwap unirouter * {masterchef} - MasterChef contract * {poolId} - MasterChef pool id */ address constant public unirouter = address(0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F); address constant public masterchef = address(0x73feaa1eE314F8c655E354234017bE2193C9E24E); uint8 public poolId; /** * @dev Beefy Contracts: * {rewards} - Reward pool where the strategy fee earnings will go. * {treasury} - Address of the BeefyFinance treasury * {vault} - Address of the vault that controls the strategy's funds. * {strategist} - Address of the strategy author/deployer where strategist fee will go. */ address constant public rewards = address(0x453D4Ba9a2D594314DF88564248497F7D74d6b2C); address constant public treasury = address(0x4A32De8c248533C28904b24B4cFCFE18E9F2ad01); address public vault; address public strategist; /** * @dev Distribution of fees earned. This allocations relative to the % implemented on doSplit(). * Current implementation separates 4.5% for fees. * * {REWARDS_FEE} - 3% goes to BIFI holders through the {rewards} pool. * {CALL_FEE} - 0.5% goes to whoever executes the harvest function as gas subsidy. * {TREASURY_FEE} - 0.5% goes to the treasury. * {STRATEGIST_FEE} - 0.5% goes to the strategist. * {MAX_FEE} - Aux const used to safely calc the correct amounts. * * {WITHDRAWAL_FEE} - Fee taxed when a user withdraws funds. 10 === 0.1% fee. * {WITHDRAWAL_MAX} - Aux const used to safely calc the correct amounts. */ uint constant public REWARDS_FEE = 665; uint constant public CALL_FEE = 111; uint constant public TREASURY_FEE = 112; uint constant public STRATEGIST_FEE = 112; uint constant public MAX_FEE = 1000; uint constant public WITHDRAWAL_FEE = 10; uint constant public WITHDRAWAL_MAX = 10000; /** * @dev Routes we take to swap tokens using PancakeSwap. * {cakeToWbnbRoute} - Route we take to get from {cake} into {wbnb}. * {wbnbToBifiRoute} - Route we take to get from {wbnb} into {bifi}. * {cakeToLp0Route} - Route we take to get from {cake} into {lpToken0}. * {cakeToLp1Route} - Route we take to get from {cake} into {lpToken1}. */ address[] public cakeToWbnbRoute = [cake, wbnb]; address[] public wbnbToBifiRoute = [wbnb, bifi]; address[] public cakeToLp0Route; address[] public cakeToLp1Route; /** * @dev Event that is fired each time someone harvests the strat. */ event StratHarvest(address indexed harvester); /** * @dev Initializes the strategy with the token to maximize. */ constructor(address _lpPair, uint8 _poolId, address _vault, address _strategist) public { lpPair = _lpPair; lpToken0 = IPancakePair(lpPair).token0(); lpToken1 = IPancakePair(lpPair).token1(); poolId = _poolId; vault = _vault; strategist = _strategist; if (lpToken0 == wbnb) { cakeToLp0Route = [cake, wbnb]; } else if (lpToken0 != cake) { cakeToLp0Route = [cake, wbnb, lpToken0]; } if (lpToken1 == wbnb) { cakeToLp1Route = [cake, wbnb]; } else if (lpToken1 != cake) { cakeToLp1Route = [cake, wbnb, lpToken1]; } IERC20(lpPair).safeApprove(masterchef, uint(-1)); IERC20(cake).safeApprove(unirouter, uint(-1)); IERC20(wbnb).safeApprove(unirouter, uint(-1)); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, uint(-1)); IERC20(lpToken1).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, uint(-1)); } /** * @dev Function that puts the funds to work. * It gets called whenever someone deposits in the strategy's vault contract. * It deposits {lpPair} in the MasterChef to farm {cake} */ function deposit() public whenNotPaused { uint256 pairBal = IERC20(lpPair).balanceOf(address(this)); if (pairBal > 0) { IMasterChef(masterchef).deposit(poolId, pairBal); } } /** * @dev Withdraws funds and sents them back to the vault. * It withdraws {lpPair} from the MasterChef. * The available {lpPair} minus fees is returned to the vault. */ function withdraw(uint256 _amount) external { require(msg.sender == vault, "!vault"); uint256 pairBal = IERC20(lpPair).balanceOf(address(this)); if (pairBal < _amount) { IMasterChef(masterchef).withdraw(poolId, _amount.sub(pairBal)); pairBal = IERC20(lpPair).balanceOf(address(this)); } if (pairBal > _amount) { pairBal = _amount; } uint256 withdrawalFee = pairBal.mul(WITHDRAWAL_FEE).div(WITHDRAWAL_MAX); IERC20(lpPair).safeTransfer(vault, pairBal.sub(withdrawalFee)); } /** * @dev Core function of the strat, in charge of collecting and re-investing rewards. * 1. It claims rewards from the MasterChef. * 2. It charges the system fees to simplify the split. * 3. It swaps the {cake} token for {lpToken0} & {lpToken1} * 4. Adds more liquidity to the pool. * 5. It deposits the new LP tokens. */ function harvest() external whenNotPaused { require(!Address.isContract(msg.sender), "!contract"); IMasterChef(masterchef).deposit(poolId, 0); chargeFees(); addLiquidity(); deposit(); emit StratHarvest(msg.sender); } /** * @dev Takes out 4.5% as system fees from the rewards. * 0.5% -> Call Fee * 0.5% -> Treasury fee * 0.5% -> Strategist fee * 3.0% -> BIFI Holders */ function chargeFees() internal { uint256 toWbnb = IERC20(cake).balanceOf(address(this)).mul(45).div(1000); IPancakeRouter(unirouter).swapExactTokensForTokens(toWbnb, 0, cakeToWbnbRoute, address(this), now.add(600)); uint256 wbnbBal = IERC20(wbnb).balanceOf(address(this)); uint256 callFee = wbnbBal.mul(CALL_FEE).div(MAX_FEE); IERC20(wbnb).safeTransfer(msg.sender, callFee); uint256 treasuryHalf = wbnbBal.mul(TREASURY_FEE).div(MAX_FEE).div(2); IERC20(wbnb).safeTransfer(treasury, treasuryHalf); IPancakeRouter(unirouter).swapExactTokensForTokens(treasuryHalf, 0, wbnbToBifiRoute, treasury, now.add(600)); uint256 rewardsFee = wbnbBal.mul(REWARDS_FEE).div(MAX_FEE); IERC20(wbnb).safeTransfer(rewards, rewardsFee); uint256 strategistFee = wbnbBal.mul(STRATEGIST_FEE).div(MAX_FEE); IERC20(wbnb).safeTransfer(strategist, strategistFee); } /** * @dev Swaps {cake} for {lpToken0}, {lpToken1} & {wbnb} using PancakeSwap. */ function addLiquidity() internal { uint256 cakeHalf = IERC20(cake).balanceOf(address(this)).div(2); if (lpToken0 != cake) { IPancakeRouter(unirouter).swapExactTokensForTokens(cakeHalf, 0, cakeToLp0Route, address(this), now.add(600)); } if (lpToken1 != cake) { IPancakeRouter(unirouter).swapExactTokensForTokens(cakeHalf, 0, cakeToLp1Route, address(this), now.add(600)); } uint256 lp0Bal = IERC20(lpToken0).balanceOf(address(this)); uint256 lp1Bal = IERC20(lpToken1).balanceOf(address(this)); IPancakeRouter(unirouter).addLiquidity(lpToken0, lpToken1, lp0Bal, lp1Bal, 1, 1, address(this), now.add(600)); } /** * @dev Function to calculate the total underlaying {lpPair} held by the strat. * It takes into account both the funds in hand, as the funds allocated in the MasterChef. */ function balanceOf() public view returns (uint256) { return balanceOfLpPair().add(balanceOfPool()); } /** * @dev It calculates how much {lpPair} the contract holds. */ function balanceOfLpPair() public view returns (uint256) { return IERC20(lpPair).balanceOf(address(this)); } /** * @dev It calculates how much {lpPair} the strategy has allocated in the MasterChef */ function balanceOfPool() public view returns (uint256) { (uint256 _amount, ) = IMasterChef(masterchef).userInfo(poolId, address(this)); return _amount; } /** * @dev Function that has to be called as part of strat migration. It sends all the available funds back to the * vault, ready to be migrated to the new strat. */ function retireStrat() external { require(msg.sender == vault, "!vault"); IMasterChef(masterchef).emergencyWithdraw(poolId); uint256 pairBal = IERC20(lpPair).balanceOf(address(this)); IERC20(lpPair).transfer(vault, pairBal); } /** * @dev Pauses deposits. Withdraws all funds from the MasterChef, leaving rewards behind */ function panic() public onlyOwner { pause(); IMasterChef(masterchef).emergencyWithdraw(poolId); } /** * @dev Pauses the strat. */ function pause() public onlyOwner { _pause(); IERC20(lpPair).safeApprove(masterchef, 0); IERC20(cake).safeApprove(unirouter, 0); IERC20(wbnb).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, 0); } /** * @dev Unpauses the strat. */ function unpause() external onlyOwner { _unpause(); IERC20(lpPair).safeApprove(masterchef, uint(-1)); IERC20(cake).safeApprove(unirouter, uint(-1)); IERC20(wbnb).safeApprove(unirouter, uint(-1)); IERC20(lpToken0).safeApprove(unirouter, 0); IERC20(lpToken0).safeApprove(unirouter, uint(-1)); IERC20(lpToken1).safeApprove(unirouter, 0); IERC20(lpToken1).safeApprove(unirouter, uint(-1)); } /** * @dev Updates address where strategist fee earnings will go. * @param _strategist new strategist address. */ function setStrategist(address _strategist) external { require(msg.sender == strategist, "!strategist"); strategist = _strategist; } }
[{"inputs":[{"internalType":"address","name":"_lpPair","type":"address"},{"internalType":"uint8","name":"_poolId","type":"uint8"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"_strategist","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CALL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARDS_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STRATEGIST_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfLpPair","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bifi","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cake","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cakeToLp0Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cakeToLp1Route","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cakeToWbnbRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpToken1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterchef","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wbnb","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wbnbToBifiRoute","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526000805160206200312283398151915260809081526000805160206200314283398151915260a0526200003c90600690600262000995565b506040805180820190915260008051602062003142833981519152815273ca3f508b8e4dd382ee878a314789373d80a5190a60208201526200008390600790600262000995565b503480156200009157600080fd5b50604051620031e2380380620031e283398181016040526080811015620000b757600080fd5b50805160208201516040830151606090930151919290916000620000da620005da565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b19169055600180546001600160a01b0319166001600160a01b03868116919091179182905560408051630dfe168160e01b815290519290911691630dfe168191600480820192602092909190829003018186803b1580156200018e57600080fd5b505afa158015620001a3573d6000803e3d6000fd5b505050506040513d6020811015620001ba57600080fd5b5051600280546001600160a01b0319166001600160a01b039283161790556001546040805163d21220a760e01b81529051919092169163d21220a7916004808301926020929190829003018186803b1580156200021657600080fd5b505afa1580156200022b573d6000803e3d6000fd5b505050506040513d60208110156200024257600080fd5b5051600380546001600160a01b03199081166001600160a01b039384161760ff60a01b1916600160a01b60ff88160217909155600480548216858416179055600580549091168383161790556002546000805160206200314283398151915291161415620002f25760408051808201909152600080516020620031228339815191528152600080516020620031428339815191526020820152620002eb90600890600262000995565b506200036a565b6002546001600160a01b031660008051602062003122833981519152146200036a57604080516060810182526000805160206200312283398151915281526000805160206200314283398151915260208201526002546001600160a01b0316918101919091526200036890600890600362000995565b505b6003546001600160a01b0316600080516020620031428339815191521415620003d55760408051808201909152600080516020620031228339815191528152600080516020620031428339815191526020820152620003ce90600990600262000995565b506200044d565b6003546001600160a01b031660008051602062003122833981519152146200044d5760408051606081018252600080516020620031228339815191528152600080516020620031428339815191526020820152600380546001600160a01b0316928201929092526200044b916009919062000995565b505b60015462000488906001600160a01b03167373feaa1ee314f8c655e354234017be2193c9e24e600019620005de602090811b6200135f17901c565b620004c1600080516020620031228339815191526000805160206200318c833981519152600019620005de602090811b6200135f17901c565b620004fa600080516020620031428339815191526000805160206200318c833981519152600019620005de602090811b6200135f17901c565b6002546200052f906001600160a01b03166000805160206200318c8339815191526000620005de602090811b6200135f17901c565b60025462000565906001600160a01b03166000805160206200318c833981519152600019620005de602090811b6200135f17901c565b6003546200059a906001600160a01b03166000805160206200318c8339815191526000620005de602090811b6200135f17901c565b600354620005d0906001600160a01b03166000805160206200318c833981519152600019620005de602090811b6200135f17901c565b5050505062000a20565b3390565b80158062000668575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156200063857600080fd5b505afa1580156200064d573d6000803e3d6000fd5b505050506040513d60208110156200066457600080fd5b5051155b620006a55760405162461bcd60e51b8152600401808060200182810382526036815260200180620031ac6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152620006fd9185916200070216565b505050565b60606200075e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316620007be60201b62001472179092919060201c565b805190915015620006fd578080602001905160208110156200077f57600080fd5b5051620006fd5760405162461bcd60e51b815260040180806020018281038252602a81526020018062003162602a913960400191505060405180910390fd5b6060620007cf8484600085620007d7565b949350505050565b6060620007e4856200098f565b62000836576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310620008775780518252601f19909201916020918201910162000856565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114620008db576040519150601f19603f3d011682016040523d82523d6000602084013e620008e0565b606091505b50915091508115620008f6579150620007cf9050565b805115620009075780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200095357818101518382015260200162000939565b50505050905090810190601f168015620009815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b3b151590565b828054828255906000526020600020908101928215620009ed579160200282015b82811115620009ed57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620009b6565b50620009fb929150620009ff565b5090565b5b80821115620009fb5780546001600160a01b031916815560010162000a00565b6126f28062000a306000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80638456cb591161013b578063bc063e1a116100b8578063dce174841161007c578063dce174841461042b578063f2fde38b14610433578063fb1db27814610459578063fb61778714610461578063fbfa77cf146104695761023d565b8063bc063e1a146103d0578063c2351cdd146103d8578063c58792a8146103e0578063c7b9d530146103fd578063d0e30db0146104235761023d565b8063951d6d20116100ff578063951d6d201461037e5780639dee703f146103865780639ec5a894146103a3578063a5d33ed5146103ab578063af314312146103b35761023d565b80638456cb591461035e578063877562b6146103665780638ce1a483146103565780638d72647e1461036e5780638da5cb5b146103765761023d565b8063452ed4f1116101c95780635ee167c01161018d5780635ee167c01461033657806361d027b31461033e578063715018a614610346578063722713f71461034e5780637d38ca65146103565761023d565b8063452ed4f1146102fa5780634641257d146103025780634700d3051461030a57806354518b1a146103125780635c975abb1461031a5761023d565b80633bf39de5116102105780633bf39de5146102a75780633e0dc34e146102af5780633ecdb0f7146102cd5780633f4ba83a146102ea5780634458020b146102f25761023d565b806311588086146102425780631fe4a6861461025c578063257ae0de146102805780632e1a7d4d14610288575b600080fd5b61024a610471565b60408051918252519081900360200190f35b610264610509565b604080516001600160a01b039092168252519081900360200190f35b610264610518565b6102a56004803603602081101561029e57600080fd5b503561052a565b005b61024a610751565b6102b7610757565b6040805160ff9092168252519081900360200190f35b610264600480360360208110156102e357600080fd5b5035610767565b6102a561078e565b610264610915565b61026461092d565b6102a561093c565b6102a5610a97565b61024a610b6f565b610322610b75565b604080519115158252519081900360200190f35b610264610b85565b610264610b94565b6102a5610bac565b61024a610c4e565b61024a610c6e565b6102a5610c73565b610264610da7565b610264610db6565b610264610dce565b61024a610ddd565b6102646004803603602081101561039c57600080fd5b5035610de2565b610264610def565b61024a610e07565b610264600480360360208110156103c957600080fd5b5035610e0c565b61024a610e19565b61024a610e1f565b610264600480360360208110156103f657600080fd5b5035610e9b565b6102a56004803603602081101561041357600080fd5b50356001600160a01b0316610ea8565b6102a5610f17565b610264611069565b6102a56004803603602081101561044957600080fd5b50356001600160a01b0316611081565b610264611179565b6102a5611191565b610264611350565b600354604080516393f1a40b60e01b8152600160a01b90920460ff166004830152306024830152805160009283927373feaa1ee314f8c655e354234017be2193c9e24e926393f1a40b926044808201939291829003018186803b1580156104d757600080fd5b505afa1580156104eb573d6000803e3d6000fd5b505050506040513d604081101561050157600080fd5b505191505090565b6005546001600160a01b031681565b60008051602061266783398151915281565b6004546001600160a01b03163314610572576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156105bd57600080fd5b505afa1580156105d1573d6000803e3d6000fd5b505050506040513d60208110156105e757600080fd5b50519050818110156106f8576003547373feaa1ee314f8c655e354234017be2193c9e24e9063441a3e7090600160a01b900460ff166106268585611489565b6040518363ffffffff1660e01b8152600401808360ff16815260200182815260200192505050600060405180830381600087803b15801561066657600080fd5b505af115801561067a573d6000803e3d6000fd5b5050600154604080516370a0823160e01b815230600482015290516001600160a01b0390921693506370a082319250602480820192602092909190829003018186803b1580156106c957600080fd5b505afa1580156106dd573d6000803e3d6000fd5b505050506040513d60208110156106f357600080fd5b505190505b818111156107035750805b600061071c61271061071684600a6114d4565b9061152d565b60045490915061074c906001600160a01b03166107398484611489565b6001546001600160a01b0316919061156f565b505050565b61029981565b600354600160a01b900460ff1681565b6008818154811061077457fe5b6000918252602090912001546001600160a01b0316905081565b6107966115c1565b6000546001600160a01b039081169116146107e6576040805162461bcd60e51b8152602060048201819052602482015260008051602061261d833981519152604482015290519081900360640190fd5b6107ee6115c5565b60015461081b906001600160a01b03167373feaa1ee314f8c655e354234017be2193c9e24e60001961135f565b61084a730e09fabb73bd3ade0a17ecc321fd13a19e81ce8260008051602061266783398151915260001961135f565b61087973bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c60008051602061266783398151915260001961135f565b60025461089f906001600160a01b0316600080516020612667833981519152600061135f565b6002546108c6906001600160a01b031660008051602061266783398151915260001961135f565b6003546108ec906001600160a01b0316600080516020612667833981519152600061135f565b600354610913906001600160a01b031660008051602061266783398151915260001961135f565b565b73ca3f508b8e4dd382ee878a314789373d80a5190a81565b6001546001600160a01b031681565b600054600160a01b900460ff161561098e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6109973361166d565b156109d5576040805162461bcd60e51b81526020600482015260096024820152680858dbdb9d1c9858dd60ba1b604482015290519081900360640190fd5b60035460408051631c57762b60e31b8152600160a01b90920460ff16600483015260006024830181905290517373feaa1ee314f8c655e354234017be2193c9e24e9263e2bbb15892604480830193919282900301818387803b158015610a3a57600080fd5b505af1158015610a4e573d6000803e3d6000fd5b50505050610a5a611673565b610a62611be7565b610a6a610f17565b60405133907f577a37fdb49a88d66684922c6f913df5239b4f214b2b97c53ef8e3bbb2034cb590600090a2565b610a9f6115c1565b6000546001600160a01b03908116911614610aef576040805162461bcd60e51b8152602060048201819052602482015260008051602061261d833981519152604482015290519081900360640190fd5b610af7610c73565b60035460408051632989754760e11b8152600160a01b90920460ff166004830152517373feaa1ee314f8c655e354234017be2193c9e24e91635312ea8e91602480830192600092919082900301818387803b158015610b5557600080fd5b505af1158015610b69573d6000803e3d6000fd5b50505050565b61271081565b600054600160a01b900460ff1690565b6002546001600160a01b031681565b734a32de8c248533c28904b24b4cfcfe18e9f2ad0181565b610bb46115c1565b6000546001600160a01b03908116911614610c04576040805162461bcd60e51b8152602060048201819052602482015260008051602061261d833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610c69610c5b610471565b610c63610e1f565b906121d2565b905090565b607081565b610c7b6115c1565b6000546001600160a01b03908116911614610ccb576040805162461bcd60e51b8152602060048201819052602482015260008051602061261d833981519152604482015290519081900360640190fd5b610cd361222c565b600154610cff906001600160a01b03167373feaa1ee314f8c655e354234017be2193c9e24e600061135f565b610d2d730e09fabb73bd3ade0a17ecc321fd13a19e81ce82600080516020612667833981519152600061135f565b610d5b73bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c600080516020612667833981519152600061135f565b600254610d81906001600160a01b0316600080516020612667833981519152600061135f565b600354610913906001600160a01b0316600080516020612667833981519152600061135f565b6003546001600160a01b031681565b73bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c81565b6000546001600160a01b031690565b606f81565b6006818154811061077457fe5b73453d4ba9a2d594314df88564248497f7d74d6b2c81565b600a81565b6007818154811061077457fe5b6103e881565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610e6a57600080fd5b505afa158015610e7e573d6000803e3d6000fd5b505050506040513d6020811015610e9457600080fd5b5051905090565b6009818154811061077457fe5b6005546001600160a01b03163314610ef5576040805162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600054600160a01b900460ff1615610f69576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610fb457600080fd5b505afa158015610fc8573d6000803e3d6000fd5b505050506040513d6020811015610fde57600080fd5b5051905080156110665760035460408051631c57762b60e31b8152600160a01b90920460ff16600483015260248201839052517373feaa1ee314f8c655e354234017be2193c9e24e9163e2bbb15891604480830192600092919082900301818387803b15801561104d57600080fd5b505af1158015611061573d6000803e3d6000fd5b505050505b50565b730e09fabb73bd3ade0a17ecc321fd13a19e81ce8281565b6110896115c1565b6000546001600160a01b039081169116146110d9576040805162461bcd60e51b8152602060048201819052602482015260008051602061261d833981519152604482015290519081900360640190fd5b6001600160a01b03811661111e5760405162461bcd60e51b81526004018080602001828103825260268152602001806125d66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b7373feaa1ee314f8c655e354234017be2193c9e24e81565b6004546001600160a01b031633146111d9576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b60035460408051632989754760e11b8152600160a01b90920460ff166004830152517373feaa1ee314f8c655e354234017be2193c9e24e91635312ea8e91602480830192600092919082900301818387803b15801561123757600080fd5b505af115801561124b573d6000803e3d6000fd5b5050600154604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b15801561129c57600080fd5b505afa1580156112b0573d6000803e3d6000fd5b505050506040513d60208110156112c657600080fd5b5051600154600480546040805163a9059cbb60e01b81526001600160a01b039283169381019390935260248301859052519394509091169163a9059cbb916044808201926020929091908290030181600087803b15801561132657600080fd5b505af115801561133a573d6000803e3d6000fd5b505050506040513d602081101561074c57600080fd5b6004546001600160a01b031681565b8015806113e5575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156113b757600080fd5b505afa1580156113cb573d6000803e3d6000fd5b505050506040513d60208110156113e157600080fd5b5051155b6114205760405162461bcd60e51b81526004018080602001828103825260368152602001806126876036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261074c9084906122ba565b6060611481848460008561236b565b949350505050565b60006114cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612516565b90505b92915050565b6000826114e3575060006114ce565b828202828482816114f057fe5b04146114cb5760405162461bcd60e51b81526004018080602001828103825260218152602001806125fc6021913960400191505060405180910390fd5b60006114cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612570565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261074c9084906122ba565b3390565b600054600160a01b900460ff1661161a576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116506115c1565b604080516001600160a01b039092168252519081900360200190a1565b3b151590565b60006117136103e8610716602d730e09fabb73bd3ade0a17ecc321fd13a19e81ce826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156116e157600080fd5b505afa1580156116f5573d6000803e3d6000fd5b505050506040513d602081101561170b57600080fd5b5051906114d4565b90506000805160206126678339815191526338ed173982600060063061173b426102586121d2565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b0316815260200183815260200182810382528581815481526020019150805480156117ba57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161179c575b50509650505050505050600060405180830381600087803b1580156117de57600080fd5b505af11580156117f2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561181b57600080fd5b8101908080516040519392919084600160201b82111561183a57600080fd5b90830190602082018581111561184f57600080fd5b82518660208202830111600160201b8211171561186b57600080fd5b82525081516020918201928201910280838360005b83811015611898578181015183820152602001611880565b505050509190910160408181526370a0823160e01b8252306004830152516000965073bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c95506370a08231945060248083019450602093509091829003018186803b1580156118f957600080fd5b505afa15801561190d573d6000803e3d6000fd5b505050506040513d602081101561192357600080fd5b50519050600061193a6103e861071684606f6114d4565b905061195b73bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c338361156f565b600061197160026107166103e8818760706114d4565b90506119a673bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c734a32de8c248533c28904b24b4cfcfe18e9f2ad018361156f565b6000805160206126678339815191526338ed17398260006007734a32de8c248533c28904b24b4cfcfe18e9f2ad016119e0426102586121d2565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015611a5f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611a41575b50509650505050505050600060405180830381600087803b158015611a8357600080fd5b505af1158015611a97573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611ac057600080fd5b8101908080516040519392919084600160201b821115611adf57600080fd5b908301906020820185811115611af457600080fd5b82518660208202830111600160201b82111715611b1057600080fd5b82525081516020918201928201910280838360005b83811015611b3d578181015183820152602001611b25565b50505050905001604052505050506000611b686103e8610716610299876114d490919063ffffffff16565b9050611b9d73bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c73453d4ba9a2d594314df88564248497f7d74d6b2c8361156f565b6000611bb06103e86107168760706114d4565b600554909150611bdf9073bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c906001600160a01b03168361156f565b505050505050565b6000611c816002730e09fabb73bd3ade0a17ecc321fd13a19e81ce826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611c4f57600080fd5b505afa158015611c63573d6000803e3d6000fd5b505050506040513d6020811015611c7957600080fd5b50519061152d565b6002549091506001600160a01b0316730e09fabb73bd3ade0a17ecc321fd13a19e81ce8214611e3c576000805160206126678339815191526338ed1739826000600830611cd0426102586121d2565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015611d4f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611d31575b50509650505050505050600060405180830381600087803b158015611d7357600080fd5b505af1158015611d87573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611db057600080fd5b8101908080516040519392919084600160201b821115611dcf57600080fd5b908301906020820185811115611de457600080fd5b82518660208202830111600160201b82111715611e0057600080fd5b82525081516020918201928201910280838360005b83811015611e2d578181015183820152602001611e15565b50505050905001604052505050505b6003546001600160a01b0316730e09fabb73bd3ade0a17ecc321fd13a19e81ce8214611ff4576000805160206126678339815191526338ed1739826000600930611e88426102586121d2565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b031681526020018381526020018281038252858181548152602001915080548015611f0757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611ee9575b50509650505050505050600060405180830381600087803b158015611f2b57600080fd5b505af1158015611f3f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611f6857600080fd5b8101908080516040519392919084600160201b821115611f8757600080fd5b908301906020820185811115611f9c57600080fd5b82518660208202830111600160201b82111715611fb857600080fd5b82525081516020918201928201910280838360005b83811015611fe5578181015183820152602001611fcd565b50505050905001604052505050505b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561203f57600080fd5b505afa158015612053573d6000803e3d6000fd5b505050506040513d602081101561206957600080fd5b5051600354604080516370a0823160e01b815230600482015290519293506000926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b1580156120bc57600080fd5b505afa1580156120d0573d6000803e3d6000fd5b505050506040513d60208110156120e657600080fd5b50516002546003549192506000805160206126678339815191529163e8e33700916001600160a01b039081169116858560018030612126426102586121d2565b6040518963ffffffff1660e01b815260040180896001600160a01b03168152602001886001600160a01b03168152602001878152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200198505050505050505050606060405180830381600087803b1580156121a857600080fd5b505af11580156121bc573d6000803e3d6000fd5b505050506040513d606081101561106157600080fd5b6000828201838110156114cb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600054600160a01b900460ff161561227e576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116506115c1565b606061230f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166114729092919063ffffffff16565b80519091501561074c5780806020019051602081101561232e57600080fd5b505161074c5760405162461bcd60e51b815260040180806020018281038252602a81526020018061263d602a913960400191505060405180910390fd5b60606123768561166d565b6123c7576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106124065780518252601f1990920191602091820191016123e7565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612468576040519150601f19603f3d011682016040523d82523d6000602084013e61246d565b606091505b509150915081156124815791506114819050565b8051156124915780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124db5781810151838201526020016124c3565b50505050905090810190601f1680156125085780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b600081848411156125685760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156124db5781810151838201526020016124c3565b505050900390565b600081836125bf5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156124db5781810151838201526020016124c3565b5060008385816125cb57fe5b049594505050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656400000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122017e05cb5eeb2adf15932f938145283e85b5454d73d60ff8e87444d3cc75df34464736f6c634300060c00330000000000000000000000000e09fabb73bd3ade0a17ecc321fd13a19e81ce82000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656400000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63650000000000000000000000003ef4952c7a9afbe374ea02d1bf5ed5a0015b771600000000000000000000000000000000000000000000000000000000000000410000000000000000000000003d0bd3c73ef66c8b487a49f50410173c44261285000000000000000000000000f799c20563218190424c3aec6022ce9faf588eb7
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003Ef4952C7a9AfbE374EA02d1Bf5eD5a0015b771600000000000000000000000000000000000000000000000000000000000000410000000000000000000000003d0bd3C73eF66C8b487A49f50410173C44261285000000000000000000000000f799c20563218190424c3Aec6022ce9FAF588Eb7
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000003Ef4952C7a9AfbE374EA02d1Bf5eD5a0015b7716
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [2] : 0000000000000000000000003d0bd3C73eF66C8b487A49f50410173C44261285
Arg [3] : 000000000000000000000000f799c20563218190424c3Aec6022ce9FAF588Eb7
Deployed ByteCode Sourcemap
37939:11504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47350:176;;;:::i;:::-;;;;;;;;;;;;;;;;39867:25;;;:::i;:::-;;;;-1:-1:-1;;;;;39867:25:0;;;;;;;;;;;;;;39089:88;;;:::i;43468:595::-;;;;;;;;;;;;;;;;-1:-1:-1;43468:595:0;;:::i;:::-;;40598:41;;;:::i;39279:19::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41430:31;;;;;;;;;;;;;;;;-1:-1:-1;41430:31:0;;:::i;48670:470::-;;;:::i;38731:82::-;;;:::i;38820:21::-;;;:::i;44442:277::-;;;:::i;48115:120::-;;;:::i;40888:43::-;;;:::i;33297:78::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;38848:23;;;:::i;39747:86::-;;;:::i;2712:148::-;;;:::i;46906:115::-;;;:::i;40742:41::-;;;:::i;48292:319::-;;;:::i;38878:23::-;;;:::i;38553:82::-;;;:::i;2070:79::-;;;:::i;40646:41::-;;;:::i;41322:47::-;;;;;;;;;;;;;;;;-1:-1:-1;41322:47:0;;:::i;39654:86::-;;;:::i;40841:40::-;;;:::i;41376:47::-;;;;;;;;;;;;;;;;-1:-1:-1;41376:47:0;;:::i;40790:42::-;;;:::i;47112:122::-;;;:::i;41468:31::-;;;;;;;;;;;;;;;;-1:-1:-1;41468:31:0;;:::i;49285:155::-;;;;;;;;;;;;;;;;-1:-1:-1;49285:155:0;-1:-1:-1;;;;;49285:155:0;;:::i;43040:220::-;;;:::i;38642:82::-;;;:::i;3015:244::-;;;;;;;;;;;;;;;;-1:-1:-1;3015:244:0;-1:-1:-1;;;;;3015:244:0;;:::i;39184:88::-;;;:::i;47724:271::-;;;:::i;39840:20::-;;;:::i;47350:176::-;47471:6;;47438:55;;;-1:-1:-1;;;47438:55:0;;-1:-1:-1;;;47471:6:0;;;;;47438:55;;;;47487:4;47438:55;;;;;;-1:-1:-1;;;;39229:42:0;;47438:32;;:55;;;;;;;;;;;;39229:42;47438:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47438:55:0;;-1:-1:-1;;47350:176:0;:::o;39867:25::-;;;-1:-1:-1;;;;;39867:25:0;;:::o;39089:88::-;-1:-1:-1;;;;;;;;;;;39089:88:0;:::o;43468:595::-;43545:5;;-1:-1:-1;;;;;43545:5:0;43531:10;:19;43523:38;;;;;-1:-1:-1;;;43523:38:0;;;;;;;;;;;;-1:-1:-1;;;43523:38:0;;;;;;;;;;;;;;;43599:6;;43592:39;;;-1:-1:-1;;;43592:39:0;;43625:4;43592:39;;;;;;43574:15;;-1:-1:-1;;;;;43599:6:0;;43592:24;;:39;;;;;;;;;;;;;;43599:6;43592:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43592:39:0;;-1:-1:-1;43648:17:0;;;43644:176;;;43715:6;;39229:42;;43682:32;;-1:-1:-1;;;43715:6:0;;;;43723:20;:7;43735;43723:11;:20::i;:::-;43682:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43776:6:0;;43769:39;;;-1:-1:-1;;;43769:39:0;;43802:4;43769:39;;;;;;-1:-1:-1;;;;;43776:6:0;;;;-1:-1:-1;43769:24:0;;-1:-1:-1;43769:39:0;;;;;;;;;;;;;;;43776:6;43769:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43769:39:0;;-1:-1:-1;43644:176:0;43846:7;43836;:17;43832:67;;;-1:-1:-1;43880:7:0;43832:67;43911:21;43935:47;40926:5;43935:27;:7;40879:2;43935:11;:27::i;:::-;:31;;:47::i;:::-;44021:5;;43911:71;;-1:-1:-1;43993:62:0;;-1:-1:-1;;;;;44021:5:0;44028:26;:7;43911:71;44028:11;:26::i;:::-;44000:6;;-1:-1:-1;;;;;44000:6:0;;43993:62;:27;:62::i;:::-;43468:595;;;:::o;40598:41::-;40636:3;40598:41;:::o;39279:19::-;;;-1:-1:-1;;;39279:19:0;;;;;:::o;41430:31::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41430:31:0;;-1:-1:-1;41430:31:0;:::o;48670:470::-;2292:12;:10;:12::i;:::-;2282:6;;-1:-1:-1;;;;;2282:6:0;;;:22;;;2274:67;;;;;-1:-1:-1;;;2274:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2274:67:0;;;;;;;;;;;;;;;48719:10:::1;:8;:10::i;:::-;48749:6;::::0;48742:48:::1;::::0;-1:-1:-1;;;;;48749:6:0::1;39229:42;-1:-1:-1::0;;48742:26:0::1;:48::i;:::-;48801:45;38681:42;-1:-1:-1::0;;;;;;;;;;;;;48801:24:0::1;:45::i;:::-;48857;38592:42;-1:-1:-1::0;;;;;;;;;;;;;48857:24:0::1;:45::i;:::-;48922:8;::::0;48915:42:::1;::::0;-1:-1:-1;;;;;48922:8:0::1;-1:-1:-1::0;;;;;;;;;;;48955:1:0::1;48915:28;:42::i;:::-;48975:8;::::0;48968:49:::1;::::0;-1:-1:-1;;;;;48975:8:0::1;-1:-1:-1::0;;;;;;;;;;;;;48968:28:0::1;:49::i;:::-;49037:8;::::0;49030:42:::1;::::0;-1:-1:-1;;;;;49037:8:0::1;-1:-1:-1::0;;;;;;;;;;;49070:1:0::1;49030:28;:42::i;:::-;49090:8;::::0;49083:49:::1;::::0;-1:-1:-1;;;;;49090:8:0::1;-1:-1:-1::0;;;;;;;;;;;;;49083:28:0::1;:49::i;:::-;48670:470::o:0;38731:82::-;38770:42;38731:82;:::o;38820:21::-;;;-1:-1:-1;;;;;38820:21:0;;:::o;44442:277::-;33615:7;;-1:-1:-1;;;33615:7:0;;;;33614:8;33606:37;;;;;-1:-1:-1;;;33606:37:0;;;;;;;;;;;;-1:-1:-1;;;33606:37:0;;;;;;;;;;;;;;;44504:30:::1;44523:10;44504:18;:30::i;:::-;44503:31;44495:53;;;::::0;;-1:-1:-1;;;44495:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44495:53:0;;;;;;;;;;;;;::::1;;44591:6;::::0;44559:42:::1;::::0;;-1:-1:-1;;;44559:42:0;;-1:-1:-1;;;44591:6:0;;::::1;;;44559:42;::::0;::::1;::::0;-1:-1:-1;44559:42:0;;;;;;;;39229::::1;::::0;44559:31:::1;::::0;:42;;;;;-1:-1:-1;;44559:42:0;;;;;-1:-1:-1;39229:42:0;44559;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;44612:12;:10;:12::i;:::-;44635:14;:12;:14::i;:::-;44660:9;:7;:9::i;:::-;44687:24;::::0;44700:10:::1;::::0;44687:24:::1;::::0;;;::::1;44442:277::o:0;48115:120::-;2292:12;:10;:12::i;:::-;2282:6;;-1:-1:-1;;;;;2282:6:0;;;:22;;;2274:67;;;;;-1:-1:-1;;;2274:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2274:67:0;;;;;;;;;;;;;;;48160:7:::1;:5;:7::i;:::-;48220:6;::::0;48178:49:::1;::::0;;-1:-1:-1;;;48178:49:0;;-1:-1:-1;;;48220:6:0;;::::1;;;48178:49;::::0;::::1;::::0;;39229:42:::1;::::0;48178:41:::1;::::0;:49;;;;;-1:-1:-1;;48178:49:0;;;;;;;-1:-1:-1;39229:42:0;48178:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48115:120::o:0;40888:43::-;40926:5;40888:43;:::o;33297:78::-;33336:4;33360:7;-1:-1:-1;;;33360:7:0;;;;;33297:78::o;38848:23::-;;;-1:-1:-1;;;;;38848:23:0;;:::o;39747:86::-;39790:42;39747:86;:::o;2712:148::-;2292:12;:10;:12::i;:::-;2282:6;;-1:-1:-1;;;;;2282:6:0;;;:22;;;2274:67;;;;;-1:-1:-1;;;2274:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2274:67:0;;;;;;;;;;;;;;;2819:1:::1;2803:6:::0;;2782:40:::1;::::0;-1:-1:-1;;;;;2803:6:0;;::::1;::::0;2782:40:::1;::::0;2819:1;;2782:40:::1;2850:1;2833:19:::0;;-1:-1:-1;;;;;;2833:19:0::1;::::0;;2712:148::o;46906:115::-;46948:7;46975:38;46997:15;:13;:15::i;:::-;46975:17;:15;:17::i;:::-;:21;;:38::i;:::-;46968:45;;46906:115;:::o;40742:41::-;40780:3;40742:41;:::o;48292:319::-;2292:12;:10;:12::i;:::-;2282:6;;-1:-1:-1;;;;;2282:6:0;;;:22;;;2274:67;;;;;-1:-1:-1;;;2274:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2274:67:0;;;;;;;;;;;;;;;48337:8:::1;:6;:8::i;:::-;48365:6;::::0;48358:41:::1;::::0;-1:-1:-1;;;;;48365:6:0::1;39229:42;48397:1;48358:26;:41::i;:::-;48410:38;38681:42;-1:-1:-1::0;;;;;;;;;;;48446:1:0::1;48410:24;:38::i;:::-;48459;38592:42;-1:-1:-1::0;;;;;;;;;;;48495:1:0::1;48459:24;:38::i;:::-;48515:8;::::0;48508:42:::1;::::0;-1:-1:-1;;;;;48515:8:0::1;-1:-1:-1::0;;;;;;;;;;;48548:1:0::1;48508:28;:42::i;:::-;48568:8;::::0;48561:42:::1;::::0;-1:-1:-1;;;;;48568:8:0::1;-1:-1:-1::0;;;;;;;;;;;48601:1:0::1;48561:28;:42::i;38878:23::-:0;;;-1:-1:-1;;;;;38878:23:0;;:::o;38553:82::-;38592:42;38553:82;:::o;2070:79::-;2108:7;2135:6;-1:-1:-1;;;;;2135:6:0;2070:79;:::o;40646:41::-;40684:3;40646:41;:::o;41322:47::-;;;;;;;;;;39654:86;39697:42;39654:86;:::o;40841:40::-;40879:2;40841:40;:::o;41376:47::-;;;;;;;;;;40790:42;40828:4;40790:42;:::o;47112:122::-;47194:6;;47187:39;;;-1:-1:-1;;;47187:39:0;;47220:4;47187:39;;;;;;47160:7;;-1:-1:-1;;;;;47194:6:0;;47187:24;;:39;;;;;;;;;;;;;;47194:6;47187:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47187:39:0;;-1:-1:-1;47112:122:0;:::o;41468:31::-;;;;;;;;;;49285:155;49371:10;;-1:-1:-1;;;;;49371:10:0;49357;:24;49349:48;;;;;-1:-1:-1;;;49349:48:0;;;;;;;;;;;;-1:-1:-1;;;49349:48:0;;;;;;;;;;;;;;;49408:10;:24;;-1:-1:-1;;;;;;49408:24:0;-1:-1:-1;;;;;49408:24:0;;;;;;;;;;49285:155::o;43040:220::-;33615:7;;-1:-1:-1;;;33615:7:0;;;;33614:8;33606:37;;;;;-1:-1:-1;;;33606:37:0;;;;;;;;;;;;-1:-1:-1;;;33606:37:0;;;;;;;;;;;;;;;43116:6:::1;::::0;43109:39:::1;::::0;;-1:-1:-1;;;43109:39:0;;43142:4:::1;43109:39;::::0;::::1;::::0;;;43091:15:::1;::::0;-1:-1:-1;;;;;43116:6:0::1;::::0;43109:24:::1;::::0;:39;;;;;::::1;::::0;;;;;;;;43116:6;43109:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;43109:39:0;;-1:-1:-1;43165:11:0;;43161:92:::1;;43225:6;::::0;43193:48:::1;::::0;;-1:-1:-1;;;43193:48:0;;-1:-1:-1;;;43225:6:0;;::::1;;;43193:48;::::0;::::1;::::0;;;;;;;;39229:42:::1;::::0;43193:31:::1;::::0;:48;;;;;-1:-1:-1;;43193:48:0;;;;;;;-1:-1:-1;39229:42:0;43193:48;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43161:92;33654:1;43040:220::o:0;38642:82::-;38681:42;38642:82;:::o;3015:244::-;2292:12;:10;:12::i;:::-;2282:6;;-1:-1:-1;;;;;2282:6:0;;;:22;;;2274:67;;;;;-1:-1:-1;;;2274:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2274:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3104:22:0;::::1;3096:73;;;;-1:-1:-1::0;;;3096:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3206:6;::::0;;3185:38:::1;::::0;-1:-1:-1;;;;;3185:38:0;;::::1;::::0;3206:6;::::1;::::0;3185:38:::1;::::0;::::1;3234:6;:17:::0;;-1:-1:-1;;;;;;3234:17:0::1;-1:-1:-1::0;;;;;3234:17:0;;;::::1;::::0;;;::::1;::::0;;3015:244::o;39184:88::-;39229:42;39184:88;:::o;47724:271::-;47789:5;;-1:-1:-1;;;;;47789:5:0;47775:10;:19;47767:38;;;;;-1:-1:-1;;;47767:38:0;;;;;;;;;;;;-1:-1:-1;;;47767:38:0;;;;;;;;;;;;;;;47860:6;;47818:49;;;-1:-1:-1;;;47818:49:0;;-1:-1:-1;;;47860:6:0;;;;;47818:49;;;;;39229:42;;47818:41;;:49;;;;;-1:-1:-1;;47818:49:0;;;;;;;-1:-1:-1;39229:42:0;47818:49;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47905:6:0;;47898:39;;;-1:-1:-1;;;47898:39:0;;47931:4;47898:39;;;;;;47880:15;;-1:-1:-1;;;;;;47905:6:0;;;;-1:-1:-1;47898:24:0;;:39;;;;;;;;;;;;;;47905:6;47898:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47898:39:0;47955:6;;47972:5;;;47948:39;;;-1:-1:-1;;;47948:39:0;;-1:-1:-1;;;;;47972:5:0;;;47948:39;;;;;;;;;;;;;;47898;;-1:-1:-1;47955:6:0;;;;47948:23;;:39;;;;;47898;;47948;;;;;;;;47955:6;;47948:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39840:20;;;-1:-1:-1;;;;;39840:20:0;;:::o;29813:622::-;30183:10;;;30182:62;;-1:-1:-1;30199:39:0;;;-1:-1:-1;;;30199:39:0;;30223:4;30199:39;;;;-1:-1:-1;;;;;30199:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30199:39:0;:44;30182:62;30174:152;;;;-1:-1:-1;;;30174:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30364:62;;;-1:-1:-1;;;;;30364:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30364:62:0;-1:-1:-1;;;30364:62:0;;;30337:90;;30357:5;;30337:19;:90::i;15132:196::-;15235:12;15267:53;15290:6;15298:4;15304:1;15307:12;15267:22;:53::i;:::-;15260:60;15132:196;-1:-1:-1;;;;15132:196:0:o;7454:136::-;7512:7;7539:43;7543:1;7546;7539:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7532:50;;7454:136;;;;;:::o;8344:471::-;8402:7;8647:6;8643:47;;-1:-1:-1;8677:1:0;8670:8;;8643:47;8714:5;;;8718:1;8714;:5;:1;8738:5;;;;;:10;8730:56;;;;-1:-1:-1;;;8730:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9291:132;9349:7;9376:39;9380:1;9383;9376:39;;;;;;;;;;;;;;;;;:3;:39::i;29154:177::-;29264:58;;;-1:-1:-1;;;;;29264:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29264:58:0;-1:-1:-1;;;29264:58:0;;;29237:86;;29257:5;;29237:19;:86::i;624:106::-;712:10;624:106;:::o;34346:120::-;33891:7;;-1:-1:-1;;;33891:7:0;;;;33883:40;;;;;-1:-1:-1;;;33883:40:0;;;;;;;;;;;;-1:-1:-1;;;33883:40:0;;;;;;;;;;;;;;;34415:5:::1;34405:15:::0;;-1:-1:-1;;;;34405:15:0::1;::::0;;34436:22:::1;34445:12;:10;:12::i;:::-;34436:22;::::0;;-1:-1:-1;;;;;34436:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;34346:120::o:0;12214:422::-;12581:20;12620:8;;;12214:422::o;44921:958::-;44963:14;44980:55;45030:4;44980:45;45022:2;38681:42;-1:-1:-1;;;;;44980:22:0;;45011:4;44980:37;;;;;;;;;;;;;-1:-1:-1;;;;;44980:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44980:37:0;;:41;:45::i;:55::-;44963:72;-1:-1:-1;;;;;;;;;;;;45046:50:0;44963:72;45105:1;45108:15;45133:4;45140:12;:3;45148;45140:7;:12::i;:::-;45046:107;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45046:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45046:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45046:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45046:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45046:107:0;;;;;;;;;;;;-1:-1:-1;45046:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;45046:107:0;;;;;;;;-1:-1:-1;;;45184:37:0;;45215:4;45184:37;;;;;45166:15;;-1:-1:-1;38592:42:0;;-1:-1:-1;45184:22:0;;-1:-1:-1;45184:37:0;;;;;-1:-1:-1;45184:37:0;;-1:-1:-1;45184:37:0;;;;;;;38592:42;45184:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45184:37:0;;-1:-1:-1;45234:15:0;45252:34;40828:4;45252:21;45184:37;40684:3;45252:11;:21::i;:34::-;45234:52;-1:-1:-1;45297:46:0;38592:42;45323:10;45234:52;45297:25;:46::i;:::-;45356:20;45379:45;45422:1;45379:38;40828:4;45379:38;:7;40732:3;45379:11;:25::i;:45::-;45356:68;-1:-1:-1;45435:49:0;38592:42;39790;45356:68;45435:25;:49::i;:::-;-1:-1:-1;;;;;;;;;;;45495:50:0;45546:12;45560:1;45563:15;39790:42;45590:12;:3;45598;45590:7;:12::i;:::-;45495:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45495:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45495:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45495:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45495:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45495:108:0;;;;;;;;;;;;-1:-1:-1;45495:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45616:18;45637:37;40828:4;45637:24;40636:3;45637:7;:11;;:24;;;;:::i;:37::-;45616:58;-1:-1:-1;45685:46:0;38592:42;39697;45616:58;45685:25;:46::i;:::-;45744:21;45768:40;40828:4;45768:27;:7;40780:3;45768:11;:27::i;:40::-;45845:10;;45744:64;;-1:-1:-1;45819:52:0;;38592:42;;-1:-1:-1;;;;;45845:10:0;45744:64;45819:25;:52::i;:::-;44921:958;;;;;;:::o;45986:713::-;46030:16;46049:44;46091:1;38681:42;-1:-1:-1;;;;;46049:22:0;;46080:4;46049:37;;;;;;;;;;;;;-1:-1:-1;;;;;46049:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46049:37:0;;:41;:44::i;:::-;46110:8;;46030:63;;-1:-1:-1;;;;;;46110:8:0;38681:42;46110:16;46106:157;;-1:-1:-1;;;;;;;;;;;46143:50:0;46194:8;46204:1;46207:14;46231:4;46238:12;:3;46246;46238:7;:12::i;:::-;46143:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46143:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46143:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46143:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46143:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46143:108:0;;;;;;;;;;;;-1:-1:-1;46143:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46106:157;46279:8;;-1:-1:-1;;;;;46279:8:0;38681:42;46279:16;46275:157;;-1:-1:-1;;;;;;;;;;;46312:50:0;46363:8;46373:1;46376:14;46400:4;46407:12;:3;46415;46407:7;:12::i;:::-;46312:108;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46312:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46312:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46312:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46312:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46312:108:0;;;;;;;;;;;;-1:-1:-1;46312:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46275:157;46468:8;;46461:41;;;-1:-1:-1;;;46461:41:0;;46496:4;46461:41;;;;;;46444:14;;-1:-1:-1;;;;;46468:8:0;;46461:26;;:41;;;;;;;;;;;;;;46468:8;46461:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46461:41:0;46537:8;;46530:41;;;-1:-1:-1;;;46530:41:0;;46565:4;46530:41;;;;;;46461;;-1:-1:-1;46513:14:0;;-1:-1:-1;;;;;46537:8:0;;;;46530:26;;:41;;;;;46461;;46530;;;;;;;;46537:8;46530:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46530:41:0;46621:8;;46631;;46530:41;;-1:-1:-1;;;;;;;;;;;;39134:42:0;46582:38;;-1:-1:-1;;;;;46621:8:0;;;;46631;46641:6;46530:41;46621:8;;46671:4;46678:12;:3;46686;46678:7;:12::i;:::-;46582:109;;;;;;;;;;;;;-1:-1:-1;;;;;46582:109:0;;;;;;-1:-1:-1;;;;;46582:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46582:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6990:181;7048:7;7080:5;;;7104:6;;;;7096:46;;;;;-1:-1:-1;;;7096:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34087:118;33615:7;;-1:-1:-1;;;33615:7:0;;;;33614:8;33606:37;;;;;-1:-1:-1;;;33606:37:0;;;;;;;;;;;;-1:-1:-1;;;33606:37:0;;;;;;;;;;;;;;;34147:7:::1;:14:::0;;-1:-1:-1;;;;34147:14:0::1;-1:-1:-1::0;;;34147:14:0::1;::::0;;34177:20:::1;34184:12;:10;:12::i;31459:761::-:0;31883:23;31909:69;31937:4;31909:69;;;;;;;;;;;;;;;;;31917:5;-1:-1:-1;;;;;31909:27:0;;;:69;;;;;:::i;:::-;31993:17;;31883:95;;-1:-1:-1;31993:21:0;31989:224;;32135:10;32124:30;;;;;;;;;;;;;;;-1:-1:-1;32124:30:0;32116:85;;;;-1:-1:-1;;;32116:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16509:979;16639:12;16672:18;16683:6;16672:10;:18::i;:::-;16664:60;;;;;-1:-1:-1;;;16664:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16798:12;16812:23;16839:6;-1:-1:-1;;;;;16839:11:0;16859:8;16870:4;16839:36;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16839:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16797:78;;;;16890:7;16886:595;;;16921:10;-1:-1:-1;16914:17:0;;-1:-1:-1;16914:17:0;16886:595;17035:17;;:21;17031:439;;17298:10;17292:17;17359:15;17346:10;17342:2;17338:19;17331:44;17246:148;17441:12;17434:20;;-1:-1:-1;;;17434:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7893:192;7979:7;8015:12;8007:6;;;;7999:29;;;;-1:-1:-1;;;7999:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8051:5:0;;;7893:192::o;9919:278::-;10005:7;10040:12;10033:5;10025:28;;;;-1:-1:-1;;;10025:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10064:9;10080:1;10076;:5;;;;;;;9919:278;-1:-1:-1;;;;;9919:278:0:o
Swarm Source
ipfs://17e05cb5eeb2adf15932f938145283e85b5454d73d60ff8e87444d3cc75df344
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.