More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 134 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Leave | 11325494 | 1547 days ago | IN | 0 ETH | 0.00577156 | ||||
Enter | 11305734 | 1550 days ago | IN | 0 ETH | 0.00656817 | ||||
Leave | 11293387 | 1552 days ago | IN | 0 ETH | 0.01152322 | ||||
Leave | 11208226 | 1565 days ago | IN | 0 ETH | 0.01551574 | ||||
Leave | 11092333 | 1583 days ago | IN | 0 ETH | 0.00686932 | ||||
Leave | 11079898 | 1584 days ago | IN | 0 ETH | 0.01504595 | ||||
Leave | 11077969 | 1585 days ago | IN | 0 ETH | 0.00677033 | ||||
Leave | 11071439 | 1586 days ago | IN | 0 ETH | 0.00824887 | ||||
Leave | 11070276 | 1586 days ago | IN | 0 ETH | 0.01194664 | ||||
Enter | 11068320 | 1586 days ago | IN | 0 ETH | 0.0161006 | ||||
Leave | 11063653 | 1587 days ago | IN | 0 ETH | 0.01222483 | ||||
Leave | 11061613 | 1587 days ago | IN | 0 ETH | 0.03823562 | ||||
Leave | 11037459 | 1591 days ago | IN | 0 ETH | 0.00909781 | ||||
Leave | 11025199 | 1593 days ago | IN | 0 ETH | 0.02264163 | ||||
Change Router | 11021408 | 1593 days ago | IN | 0 ETH | 0.00426132 | ||||
Change Router | 11018685 | 1594 days ago | IN | 0 ETH | 0.00213066 | ||||
Leave | 11011509 | 1595 days ago | IN | 0 ETH | 0.01504556 | ||||
Leave | 11009872 | 1595 days ago | IN | 0 ETH | 0.01399664 | ||||
Leave | 11004477 | 1596 days ago | IN | 0 ETH | 0.04184655 | ||||
Leave | 11002744 | 1596 days ago | IN | 0 ETH | 0.05783287 | ||||
Leave | 11002550 | 1596 days ago | IN | 0 ETH | 0.04939992 | ||||
Leave | 11002020 | 1597 days ago | IN | 0 ETH | 0.04396239 | ||||
Leave | 10999612 | 1597 days ago | IN | 0 ETH | 0.01732263 | ||||
Leave | 10998172 | 1597 days ago | IN | 0 ETH | 0.02261329 | ||||
Leave | 10998150 | 1597 days ago | IN | 0 ETH | 0.01605497 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
LpBar
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-25 */ // Copyright (c) 2020 SashimiProject. All rights reserved. // 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/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/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/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: contracts/interfaces/IMasterChef.sol pragma solidity 0.6.12; interface IMasterChef { function deposit(uint256, uint256) external; function withdraw(uint256, uint256) external; function pendingSashimi(uint256, address) external view returns (uint256); } // File: contracts/interfaces/IStakingRewards.sol pragma solidity 0.6.12; interface IStakingRewards { function stakingToken() external view returns (address); function lastTimeRewardApplicable() external view returns (uint256); function rewardPerToken() external view returns (uint256); function earned(address account) external view returns (uint256); function getRewardForDuration() external view returns (uint256); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function stake(uint256 amount) external; function withdraw(uint256 amount) external; function getReward() external; function exit() external; } // File: contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: contracts/interfaces/IUni.sol pragma solidity 0.6.12; interface IUni { function balanceOf(address account) external view returns(uint256); function approve(address spender, uint rawAmount) external returns (bool); } // File: contracts/LpBar.sol // Copyright (c) 2020 SashimiProject. pragma solidity 0.6.12; contract LpBar is ERC20("LpBar", "xLP"), Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public lp; IERC20 public sashimi; IMasterChef public masterChef; uint256 public pid; IStakingRewards public uniStake; uint256 public totalLp; IUni public uni; IUniswapV2Router02 public router; uint256 public perShareForUniHarvest; uint256 public perShareForChefHarvest; address public wETH; mapping(address => uint256) public lpBalance; mapping(address => uint256) public xLPBalance; // address => amount mapping(address => uint256) public rewardDebtsFromUni; // address => sashimi reward debt mapping(address => uint256) public rewardDebtsFromChef; // address => sashimi reward debt constructor(IERC20 _sashimi, IERC20 _lp, IUni _uni, IMasterChef _masterChef, IUniswapV2Router02 _router, IStakingRewards _uniStake, address _wETH) public { require(_uniStake.stakingToken() == address(_lp), "Staking token not matched."); lp = _lp; masterChef = _masterChef; uniStake = _uniStake; sashimi = _sashimi; uni = _uni; router = _router; wETH = _wETH; } function setPid(uint256 _pid) public onlyOwner{ require(pid == 0, "Pid already set."); pid = _pid; approveMax(); } function approveMax() public onlyOwner{ uni.approve(address(router), type(uint256).max); this.approve(address(masterChef), type(uint256).max); lp.approve(address(uniStake), type(uint256).max); } function enter(uint256 _amount) public { updatePerShareForUniHarvest(); lp.transferFrom(msg.sender, address(this), _amount); uint256 lpBal = lpBalance[msg.sender]; uint256 sashimiHarvestFromUni = 0; if (lpBal > 0) { uint256 debt = rewardDebtsFromUni[msg.sender]; sashimiHarvestFromUni = lpBal.mul(perShareForUniHarvest).div(1e12).sub(debt); } // stake lp uniStake.stake(_amount); // update rewardDebtsFromUnit lpBal = lpBal.add(_amount); rewardDebtsFromUni[msg.sender] = lpBal.mul(perShareForUniHarvest).div(1e12); // update balance lpBalance[msg.sender] = lpBal; uint xLpAmount = _amount; uint256 totalShares = totalSupply(); totalLp = totalLp.add(_amount); // mint lpx _mint(address(this), xLpAmount); updatePerShareForChefHarvest(xLpAmount, true, totalShares); uint256 xLpBal = xLPBalance[msg.sender]; uint256 sashimiHarvestFromChef = 0; if (xLpBal > 0) { uint256 debt = rewardDebtsFromChef[msg.sender]; sashimiHarvestFromChef = xLpBal.mul(perShareForChefHarvest).div(1e12).sub(debt); } xLpBal = xLpBal.add(xLpAmount); xLPBalance[msg.sender] = xLpBal; // update rewardDebtsFromChef rewardDebtsFromChef[msg.sender] = xLpBal.mul(perShareForChefHarvest).div(1e12); transferSashimi(msg.sender, sashimiHarvestFromUni.add(sashimiHarvestFromChef)); } function leave(uint256 _xLpShare) public { uint256 xLpBal = xLPBalance[msg.sender]; require(xLpBal >= _xLpShare, "Insufficient balance."); updatePerShareForUniHarvest(); uint256 lpBal = lpBalance[msg.sender]; uint256 debtFromUni = rewardDebtsFromUni[msg.sender]; uint256 sashimiHarvestFromUni = lpBal.mul(perShareForUniHarvest).div(1e12).sub(debtFromUni); // withdraw lpx uint256 totalShares = totalSupply(); updatePerShareForChefHarvest(_xLpShare, false, totalShares); uint256 debtFromChef = rewardDebtsFromChef[msg.sender]; uint256 sashimiHarvestFromChef = xLpBal.mul(perShareForChefHarvest).div(1e12).sub(debtFromChef); transferSashimi(msg.sender, sashimiHarvestFromUni.add(sashimiHarvestFromChef)); uint256 returnLpAmount = _xLpShare; if (returnLpAmount > 0) { // transfer lp uniStake.withdraw(returnLpAmount); lp.transfer(msg.sender, returnLpAmount); } // update lp balance lpBal = lpBal.sub(returnLpAmount); lpBalance[msg.sender] = lpBal; totalLp = totalLp.sub(returnLpAmount); // update rewardDebtsFromUnit rewardDebtsFromUni[msg.sender] = lpBal.mul(perShareForUniHarvest).div(1e12); // update rewardDebtsFromUnit xLpBal = xLpBal.sub(_xLpShare); xLPBalance[msg.sender] = xLpBal; _burn(address(this), _xLpShare); rewardDebtsFromChef[msg.sender] = xLpBal.mul(perShareForChefHarvest).div(1e12); } function changeRouter(IUniswapV2Router02 _router) onlyOwner public{ router = _router; uni.approve(address(_router), type(uint256).max); } function harvestFromUniStake() private returns (uint256){ uint256 beforeBalance = uni.balanceOf(address(this)); uniStake.getReward(); uint256 afterBalance = uni.balanceOf(address(this)); return afterBalance.sub(beforeBalance); } function updatePerShareForUniHarvest() private{ uint256 curPerShare = perShareForUniHarvest; if (totalLp == 0) return; uint256 uniHarvest = harvestFromUniStake(); if (uniHarvest > 0) { address[] memory path = new address[](3); path[0] = address(uni); path[1] = wETH; path[2] = address(sashimi); uint[] memory amounts = router.swapExactTokensForTokens(uniHarvest, 0, path, address(this), block.timestamp + 3); uint256 reward = amounts[amounts.length - 1]; perShareForUniHarvest = curPerShare.add(reward.mul(1e12).div(totalLp)); } } function updatePerShareForChefHarvest(uint256 _amount, bool _deposit, uint256 _totalShares) private { uint256 beforeBalance = sashimi.balanceOf(address(this)); if (_deposit) { // deposit lpx masterChef.deposit(pid, _amount); } else masterChef.withdraw(pid, _amount); uint256 afterBalance = sashimi.balanceOf(address(this)); uint256 chefHarvest = afterBalance.sub(beforeBalance); if (_totalShares > 0 && chefHarvest > 0) { uint256 curPerShare = perShareForChefHarvest; perShareForChefHarvest = curPerShare.add(chefHarvest.mul(1e12).div(_totalShares)); } } function transferSashimi(address receipt, uint256 amount) private { if (amount > 0) { uint256 bal = IERC20(sashimi).balanceOf(address(this)); sashimi.transfer(receipt, amount > bal ? bal : amount); } } function earned(address account) public view returns(uint256){ return earnedFromUniStaking(account).add(earnedFromChef(account)); } function earnedFromUniStaking(address account) public view returns(uint256){ uint256 totalShares = totalSupply(); if (totalShares == 0) return 0; uint256 earnedUni = uniStake.earned(address(this)); address[] memory path = new address[](3); path[0] = address(uni); path[1] = wETH; path[2] = address(sashimi); uint256[] memory amounts = router.getAmountsOut(earnedUni, path); uint256 perShareForUniHarvestUpdate = perShareForUniHarvest.add(amounts[amounts.length - 1].mul(1e12).div(totalLp)); uint256 debtFromUni = rewardDebtsFromUni[account]; uint256 lpBal = lpBalance[account]; uint256 sashimiHarvest = lpBal.mul(perShareForUniHarvestUpdate).div(1e12).sub(debtFromUni); return sashimiHarvest; } function earnedFromChef(address account) public view returns(uint256){ uint256 totalShares = totalSupply(); if (totalShares == 0) return 0; uint256 earnedChef = masterChef.pendingSashimi(pid, address(this)); uint256 perShareForChefHarvestUpdate = perShareForChefHarvest.add(earnedChef.mul(1e12).div(totalShares)); uint256 debtFromChef = rewardDebtsFromChef[account]; uint256 xLpBal = xLPBalance[account]; uint256 sashimiHarvest = xLpBal.mul(perShareForChefHarvestUpdate).div(1e12).sub(debtFromChef); return sashimiHarvest; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_sashimi","type":"address"},{"internalType":"contract IERC20","name":"_lp","type":"address"},{"internalType":"contract IUni","name":"_uni","type":"address"},{"internalType":"contract IMasterChef","name":"_masterChef","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"_router","type":"address"},{"internalType":"contract IStakingRewards","name":"_uniStake","type":"address"},{"internalType":"address","name":"_wETH","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approveMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_router","type":"address"}],"name":"changeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earnedFromChef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earnedFromUniStaking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_xLpShare","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lp","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lpBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterChef","outputs":[{"internalType":"contract IMasterChef","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perShareForChefHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perShareForUniHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardDebtsFromChef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardDebtsFromUni","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sashimi","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"setPid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uni","outputs":[{"internalType":"contract IUni","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniStake","outputs":[{"internalType":"contract IStakingRewards","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"xLPBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002ba238038062002ba2833981810160405260e08110156200003757600080fd5b5080516020808301516040808501516060860151608087015160a088015160c09098015184518086018652600581526426382130b960d91b81890190815286518088019097526003808852620784c560ec1b998801999099528151999a979995989497939693959294919392620000b092919062000290565b508051620000c690600490602084019062000290565b50506005805460ff19166012179055506000620000e26200028c565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350856001600160a01b0316826001600160a01b03166372f702f36040518163ffffffff1660e01b815260040160206040518083038186803b1580156200017c57600080fd5b505afa15801562000191573d6000803e3d6000fd5b505050506040513d6020811015620001a857600080fd5b50516001600160a01b03161462000206576040805162461bcd60e51b815260206004820152601a60248201527f5374616b696e6720746f6b656e206e6f74206d6174636865642e000000000000604482015290519081900360640190fd5b600680546001600160a01b03199081166001600160a01b039889161790915560088054821695881695909517909455600a805485169287169290921790915560078054841696861696909617909555600c8054831693851693909317909255600d805482169284169290921790915560108054909116929091169190911790556200032c565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000315565b5090565b5b8082111562000311576000815560010162000316565b612866806200033c6000396000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c806370a0823111610130578063dd62ed3e116100b8578063f1e4793f1161007c578063f1e4793f146105ef578063f242862114610615578063f2fde38b1461061d578063f887ea4014610643578063fc0afb6f1461064b57610226565b8063dd62ed3e14610565578063e29e097414610593578063edc9af95146105b9578063f1068454146105c1578063f1409241146105c957610226565b806395d89b41116100ff57806395d89b41146104e0578063a457c2d7146104e8578063a59f3e0c14610514578063a9059cbb14610531578063c2ac71261461055d57610226565b806370a0823114610484578063715018a6146104aa57806378090ecd146104b25780638da5cb5b146104d857610226565b8063313ce567116101b35780634bbcf035116101825780634bbcf03514610429578063575a86b214610431578063679307ed1461043957806367dfd4c9146104415780636ba272c41461045e57610226565b8063313ce567146103b1578063340ac20f146103cf57806339509351146103f557806345d661ac1461042157610226565b80631b0d8aab116101fa5780631b0d8aab1461032857806323b872dd14610347578063242c135d1461037d57806324325ee214610385578063313c06a01461038d57610226565b80628cc2621461022b57806306fdde0314610263578063095ea7b3146102e057806318160ddd14610320575b600080fd5b6102516004803603602081101561024157600080fd5b50356001600160a01b0316610671565b60408051918252519081900360200190f35b61026b610696565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61030c600480360360408110156102f657600080fd5b506001600160a01b03813516906020013561072c565b604080519115158252519081900360200190f35b61025161074a565b6103456004803603602081101561033e57600080fd5b5035610750565b005b61030c6004803603606081101561035d57600080fd5b506001600160a01b03813581169160208101359091169060400135610805565b61025161088c565b610251610892565b610395610898565b604080516001600160a01b039092168252519081900360200190f35b6103b96108a7565b6040805160ff9092168252519081900360200190f35b610345600480360360208110156103e557600080fd5b50356001600160a01b03166108b0565b61030c6004803603604081101561040b57600080fd5b506001600160a01b0381351690602001356109a8565b6103956109f6565b610251610a05565b610395610a0b565b610395610a1a565b6103456004803603602081101561045757600080fd5b5035610a29565b6102516004803603602081101561047457600080fd5b50356001600160a01b0316610cdf565b6102516004803603602081101561049a57600080fd5b50356001600160a01b0316610cf1565b610345610d0c565b610251600480360360208110156104c857600080fd5b50356001600160a01b0316610db9565b610395610dcb565b61026b610ddf565b61030c600480360360408110156104fe57600080fd5b506001600160a01b038135169060200135610e40565b6103456004803603602081101561052a57600080fd5b5035610ea8565b61030c6004803603604081101561054757600080fd5b506001600160a01b038135169060200135611117565b61034561112b565b6102516004803603604081101561057b57600080fd5b506001600160a01b0381358116916020013516611315565b610251600480360360208110156105a957600080fd5b50356001600160a01b0316611340565b610395611352565b610251611361565b610251600480360360208110156105df57600080fd5b50356001600160a01b0316611367565b6102516004803603602081101561060557600080fd5b50356001600160a01b031661168d565b61039561169f565b6103456004803603602081101561063357600080fd5b50356001600160a01b03166116ae565b6103956117b7565b6102516004803603602081101561066157600080fd5b50356001600160a01b03166117c6565b600061068e61067f836117c6565b61068884611367565b906118d2565b90505b919050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b6000610740610739611933565b8484611937565b5060015b92915050565b60025490565b610758611933565b60055461010090046001600160a01b039081169116146107ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b600954156107f5576040805162461bcd60e51b815260206004820152601060248201526f2834b21030b63932b0b23c9039b2ba1760811b604482015290519081900360640190fd5b600981905561080261112b565b50565b6000610812848484611a23565b6108828461081e611933565b61087d8560405180606001604052806028815260200161275a602891396001600160a01b038a1660009081526001602052604081209061085c611933565b6001600160a01b031681526020810191909152604001600020549190611b7e565b611937565b5060019392505050565b600b5481565b600f5481565b6006546001600160a01b031681565b60055460ff1690565b6108b8611933565b60055461010090046001600160a01b0390811691161461090d576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b03838116918217909255600c546040805163095ea7b360e01b8152600481019390935260001960248401525192169163095ea7b3916044808201926020929091908290030181600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b505050506040513d60208110156109a357600080fd5b505050565b60006107406109b5611933565b8461087d85600160006109c6611933565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906118d2565b600a546001600160a01b031681565b600e5481565b6008546001600160a01b031681565b6007546001600160a01b031681565b3360009081526012602052604090205481811015610a86576040805162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b604482015290519081900360640190fd5b610a8e611c15565b336000908152601160209081526040808320546013909252822054600e5491929091610ad8908390610ad29064e8d4a5100090610acc908890611eaa565b90611f03565b90611f45565b90506000610ae461074a565b9050610af286600083611f87565b33600090815260146020526040812054600f54909190610b24908390610ad29064e8d4a5100090610acc908c90611eaa565b9050610b3933610b3486846118d2565b6121b3565b878015610c2657600a5460408051632e1a7d4d60e01b81526004810184905290516001600160a01b0390921691632e1a7d4d9160248082019260009290919082900301818387803b158015610b8d57600080fd5b505af1158015610ba1573d6000803e3d6000fd5b50506006546040805163a9059cbb60e01b81523360048201526024810186905290516001600160a01b03909216935063a9059cbb92506044808201926020929091908290030181600087803b158015610bf957600080fd5b505af1158015610c0d573d6000803e3d6000fd5b505050506040513d6020811015610c2357600080fd5b50505b610c308782611f45565b336000908152601160205260409020819055600b54909750610c529082611f45565b600b55600e54610c6e9064e8d4a5100090610acc908a90611eaa565b33600090815260136020526040902055610c88888a611f45565b3360009081526012602052604090208190559750610ca6308a6122cb565b610cc464e8d4a51000610acc600f548b611eaa90919063ffffffff16565b33600090815260146020526040902055505050505050505050565b60126020526000908152604090205481565b6001600160a01b031660009081526020819052604090205490565b610d14611933565b60055461010090046001600160a01b03908116911614610d69576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60136020526000908152604090205481565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107225780601f106106f757610100808354040283529160200191610722565b6000610740610e4d611933565b8461087d8560405180606001604052806025815260200161280c6025913960016000610e77611933565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b7e565b610eb0611c15565b600654604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015610f0a57600080fd5b505af1158015610f1e573d6000803e3d6000fd5b505050506040513d6020811015610f3457600080fd5b505033600090815260116020526040812054908115610f805733600090815260136020526040902054600e54610f7c908290610ad29064e8d4a5100090610acc908890611eaa565b9150505b600a546040805163534a7e1d60e11b81526004810186905290516001600160a01b039092169163a694fc3a9160248082019260009290919082900301818387803b158015610fcd57600080fd5b505af1158015610fe1573d6000803e3d6000fd5b50505050610ff883836118d290919063ffffffff16565b915061101864e8d4a51000610acc600e5485611eaa90919063ffffffff16565b3360009081526013602090815260408083209390935560119052908120839055839061104261074a565b600b5490915061105290866118d2565b600b5561105f30836123c7565b61106b82600183611f87565b336000908152601260205260408120549081156110b55733600090815260146020526040902054600f546110b1908290610ad29064e8d4a5100090610acc908890611eaa565b9150505b6110bf82856118d2565b336000908152601260205260409020819055600f549092506110ed9064e8d4a5100090610acc908590611eaa565b3360008181526014602052604090209190915561110e90610b3487846118d2565b50505050505050565b6000610740611124611933565b8484611a23565b611133611933565b60055461010090046001600160a01b03908116911614611188576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b600c54600d546040805163095ea7b360e01b81526001600160a01b03928316600482015260001960248201529051919092169163095ea7b39160448083019260209291908290030181600087803b1580156111e257600080fd5b505af11580156111f6573d6000803e3d6000fd5b505050506040513d602081101561120c57600080fd5b50506008546040805163095ea7b360e01b81526001600160a01b039092166004830152600019602483015251309163095ea7b39160448083019260209291908290030181600087803b15801561126157600080fd5b505af1158015611275573d6000803e3d6000fd5b505050506040513d602081101561128b57600080fd5b5050600654600a546040805163095ea7b360e01b81526001600160a01b03928316600482015260001960248201529051919092169163095ea7b39160448083019260209291908290030181600087803b1580156112e757600080fd5b505af11580156112fb573d6000803e3d6000fd5b505050506040513d602081101561131157600080fd5b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60116020526000908152604090205481565b600c546001600160a01b031681565b60095481565b60008061137261074a565b905080611383576000915050610691565b600a54604080516246613160e11b815230600482015290516000926001600160a01b031691628cc262916024808301926020929190829003018186803b1580156113cc57600080fd5b505afa1580156113e0573d6000803e3d6000fd5b505050506040513d60208110156113f657600080fd5b505160408051600380825260808201909252919250606091906020820183803683375050600c5482519293506001600160a01b03169183915060009061143857fe5b6001600160a01b03928316602091820292909201015260105482519116908290600190811061146357fe5b6001600160a01b03928316602091820292909201015260075482519116908290600290811061148e57fe5b6001600160a01b03928316602091820292909201810191909152600d546040805163d06ca61f60e01b81526004810187815260248201928352865160448301528651606096949094169463d06ca61f94899489949092606490910191858201910280838360005b8381101561150d5781810151838201526020016114f5565b50505050905001935050505060006040518083038186803b15801561153157600080fd5b505afa158015611545573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561156e57600080fd5b810190808051604051939291908464010000000082111561158e57600080fd5b9083019060208201858111156115a357600080fd5b82518660208202830111640100000000821117156115c057600080fd5b82525081516020918201928201910280838360005b838110156115ed5781810151838201526020016115d5565b505050509050016040525050509050600061163f611636600b54610acc64e8d4a510008660018851038151811061162057fe5b6020026020010151611eaa90919063ffffffff16565b600e54906118d2565b6001600160a01b0388166000908152601360209081526040808320546011909252822054929350919061167f83610ad264e8d4a51000610acc8689611eaa565b9a9950505050505050505050565b60146020526000908152604090205481565b6010546001600160a01b031681565b6116b6611933565b60055461010090046001600160a01b0390811691161461170b576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b6001600160a01b0381166117505760405162461bcd60e51b81526004018080602001828103825260268152602001806126cb6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600d546001600160a01b031681565b6000806117d161074a565b9050806117e2576000915050610691565b6008546009546040805163b3594f8760e01b81526004810192909252306024830152516000926001600160a01b03169163b3594f87916044808301926020929190829003018186803b15801561183757600080fd5b505afa15801561184b573d6000803e3d6000fd5b505050506040513d602081101561186157600080fd5b50519050600061188661187d84610acc8564e8d4a51000611eaa565b600f54906118d2565b6001600160a01b038616600090815260146020908152604080832054601290925282205492935091906118c683610ad264e8d4a51000610acc8689611eaa565b98975050505050505050565b60008282018381101561192c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661197c5760405162461bcd60e51b81526004018080602001828103825260248152602001806127e86024913960400191505060405180910390fd5b6001600160a01b0382166119c15760405162461bcd60e51b81526004018080602001828103825260228152602001806126f16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a685760405162461bcd60e51b81526004018080602001828103825260258152602001806127c36025913960400191505060405180910390fd5b6001600160a01b038216611aad5760405162461bcd60e51b81526004018080602001828103825260238152602001806126866023913960400191505060405180910390fd5b611ab88383836109a3565b611af581604051806060016040528060268152602001612713602691396001600160a01b0386166000908152602081905260409020549190611b7e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b2490826118d2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c0d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bd2578181015183820152602001611bba565b50505050905090810190601f168015611bff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600e54600b54611c255750611ea8565b6000611c2f6124b7565b9050801561131157604080516003808252608082019092526060916020820183803683375050600c5482519293506001600160a01b031691839150600090611c7357fe5b6001600160a01b039283166020918202929092010152601054825191169082906001908110611c9e57fe5b6001600160a01b039283166020918202929092010152600754825191169082906002908110611cc957fe5b6001600160a01b03928316602091820292909201810191909152600d546040516338ed173960e01b8152600481018681526000602483018190523060648401819052600342016084850181905260a060448601908152895160a4870152895160609997909716976338ed1739978c9795968c9690939260c49091019187820191028083838b5b83811015611d67578181015183820152602001611d4f565b505050509050019650505050505050600060405180830381600087803b158015611d9057600080fd5b505af1158015611da4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611dcd57600080fd5b8101908080516040519392919084640100000000821115611ded57600080fd5b908301906020820185811115611e0257600080fd5b8251866020820283011164010000000082111715611e1f57600080fd5b82525081516020918201928201910280838360005b83811015611e4c578181015183820152602001611e34565b505050509050016040525050509050600081600183510381518110611e6d57fe5b60200260200101519050611e9f611e98600b54610acc64e8d4a5100085611eaa90919063ffffffff16565b86906118d2565b600e5550505050505b565b600082611eb957506000610744565b82820282848281611ec657fe5b041461192c5760405162461bcd60e51b81526004018080602001828103825260218152602001806127396021913960400191505060405180910390fd5b600061192c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612620565b600061192c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b7e565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611fd257600080fd5b505afa158015611fe6573d6000803e3d6000fd5b505050506040513d6020811015611ffc57600080fd5b50519050821561207a5760085460095460408051631c57762b60e31b8152600481019290925260248201879052516001600160a01b039092169163e2bbb1589160448082019260009290919082900301818387803b15801561205d57600080fd5b505af1158015612071573d6000803e3d6000fd5b505050506120ea565b60085460095460408051630441a3e760e41b8152600481019290925260248201879052516001600160a01b039092169163441a3e709160448082019260009290919082900301818387803b1580156120d157600080fd5b505af11580156120e5573d6000803e3d6000fd5b505050505b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561213557600080fd5b505afa158015612149573d6000803e3d6000fd5b505050506040513d602081101561215f57600080fd5b50519050600061216f8284611f45565b90506000841180156121815750600081115b156121ab57600f546121a661219f86610acc8564e8d4a51000611eaa565b82906118d2565b600f55505b505050505050565b801561131157600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561220457600080fd5b505afa158015612218573d6000803e3d6000fd5b505050506040513d602081101561222e57600080fd5b50516007549091506001600160a01b031663a9059cbb848385116122525784612254565b835b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561229a57600080fd5b505af11580156122ae573d6000803e3d6000fd5b505050506040513d60208110156122c457600080fd5b5050505050565b6001600160a01b0382166123105760405162461bcd60e51b81526004018080602001828103825260218152602001806127a26021913960400191505060405180910390fd5b61231c826000836109a3565b612359816040518060600160405280602281526020016126a9602291396001600160a01b0385166000908152602081905260409020549190611b7e565b6001600160a01b03831660009081526020819052604090205560025461237f9082611f45565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216612422576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61242e600083836109a3565b60025461243b90826118d2565b6002556001600160a01b03821660009081526020819052604090205461246190826118d2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600c54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561250757600080fd5b505afa15801561251b573d6000803e3d6000fd5b505050506040513d602081101561253157600080fd5b5051600a5460408051631e8c5c8960e11b815290519293506001600160a01b0390911691633d18b9129160048082019260009290919082900301818387803b15801561257c57600080fd5b505af1158015612590573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b1580156125e157600080fd5b505afa1580156125f5573d6000803e3d6000fd5b505050506040513d602081101561260b57600080fd5b505190506126198183611f45565b9250505090565b6000818361266f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bd2578181015183820152602001611bba565b50600083858161267b57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220399ebb725359435f911d2eb0c251b04e1bef67185afc500c2f5f84ff637f313464736f6c634300060c0033000000000000000000000000c28e27870558cf22add83540d2126da2e4b464c2000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000001f9840a85d5af5bf1d1762f925bdaddc4201f9840000000000000000000000001daed74ed1dd7c9dabbe51361ac90a69d851234d0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000007fba4b8dc5e7616e59622806932dbea72537a56b000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102265760003560e01c806370a0823111610130578063dd62ed3e116100b8578063f1e4793f1161007c578063f1e4793f146105ef578063f242862114610615578063f2fde38b1461061d578063f887ea4014610643578063fc0afb6f1461064b57610226565b8063dd62ed3e14610565578063e29e097414610593578063edc9af95146105b9578063f1068454146105c1578063f1409241146105c957610226565b806395d89b41116100ff57806395d89b41146104e0578063a457c2d7146104e8578063a59f3e0c14610514578063a9059cbb14610531578063c2ac71261461055d57610226565b806370a0823114610484578063715018a6146104aa57806378090ecd146104b25780638da5cb5b146104d857610226565b8063313ce567116101b35780634bbcf035116101825780634bbcf03514610429578063575a86b214610431578063679307ed1461043957806367dfd4c9146104415780636ba272c41461045e57610226565b8063313ce567146103b1578063340ac20f146103cf57806339509351146103f557806345d661ac1461042157610226565b80631b0d8aab116101fa5780631b0d8aab1461032857806323b872dd14610347578063242c135d1461037d57806324325ee214610385578063313c06a01461038d57610226565b80628cc2621461022b57806306fdde0314610263578063095ea7b3146102e057806318160ddd14610320575b600080fd5b6102516004803603602081101561024157600080fd5b50356001600160a01b0316610671565b60408051918252519081900360200190f35b61026b610696565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61030c600480360360408110156102f657600080fd5b506001600160a01b03813516906020013561072c565b604080519115158252519081900360200190f35b61025161074a565b6103456004803603602081101561033e57600080fd5b5035610750565b005b61030c6004803603606081101561035d57600080fd5b506001600160a01b03813581169160208101359091169060400135610805565b61025161088c565b610251610892565b610395610898565b604080516001600160a01b039092168252519081900360200190f35b6103b96108a7565b6040805160ff9092168252519081900360200190f35b610345600480360360208110156103e557600080fd5b50356001600160a01b03166108b0565b61030c6004803603604081101561040b57600080fd5b506001600160a01b0381351690602001356109a8565b6103956109f6565b610251610a05565b610395610a0b565b610395610a1a565b6103456004803603602081101561045757600080fd5b5035610a29565b6102516004803603602081101561047457600080fd5b50356001600160a01b0316610cdf565b6102516004803603602081101561049a57600080fd5b50356001600160a01b0316610cf1565b610345610d0c565b610251600480360360208110156104c857600080fd5b50356001600160a01b0316610db9565b610395610dcb565b61026b610ddf565b61030c600480360360408110156104fe57600080fd5b506001600160a01b038135169060200135610e40565b6103456004803603602081101561052a57600080fd5b5035610ea8565b61030c6004803603604081101561054757600080fd5b506001600160a01b038135169060200135611117565b61034561112b565b6102516004803603604081101561057b57600080fd5b506001600160a01b0381358116916020013516611315565b610251600480360360208110156105a957600080fd5b50356001600160a01b0316611340565b610395611352565b610251611361565b610251600480360360208110156105df57600080fd5b50356001600160a01b0316611367565b6102516004803603602081101561060557600080fd5b50356001600160a01b031661168d565b61039561169f565b6103456004803603602081101561063357600080fd5b50356001600160a01b03166116ae565b6103956117b7565b6102516004803603602081101561066157600080fd5b50356001600160a01b03166117c6565b600061068e61067f836117c6565b61068884611367565b906118d2565b90505b919050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b6000610740610739611933565b8484611937565b5060015b92915050565b60025490565b610758611933565b60055461010090046001600160a01b039081169116146107ad576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b600954156107f5576040805162461bcd60e51b815260206004820152601060248201526f2834b21030b63932b0b23c9039b2ba1760811b604482015290519081900360640190fd5b600981905561080261112b565b50565b6000610812848484611a23565b6108828461081e611933565b61087d8560405180606001604052806028815260200161275a602891396001600160a01b038a1660009081526001602052604081209061085c611933565b6001600160a01b031681526020810191909152604001600020549190611b7e565b611937565b5060019392505050565b600b5481565b600f5481565b6006546001600160a01b031681565b60055460ff1690565b6108b8611933565b60055461010090046001600160a01b0390811691161461090d576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b03838116918217909255600c546040805163095ea7b360e01b8152600481019390935260001960248401525192169163095ea7b3916044808201926020929091908290030181600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b505050506040513d60208110156109a357600080fd5b505050565b60006107406109b5611933565b8461087d85600160006109c6611933565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906118d2565b600a546001600160a01b031681565b600e5481565b6008546001600160a01b031681565b6007546001600160a01b031681565b3360009081526012602052604090205481811015610a86576040805162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b604482015290519081900360640190fd5b610a8e611c15565b336000908152601160209081526040808320546013909252822054600e5491929091610ad8908390610ad29064e8d4a5100090610acc908890611eaa565b90611f03565b90611f45565b90506000610ae461074a565b9050610af286600083611f87565b33600090815260146020526040812054600f54909190610b24908390610ad29064e8d4a5100090610acc908c90611eaa565b9050610b3933610b3486846118d2565b6121b3565b878015610c2657600a5460408051632e1a7d4d60e01b81526004810184905290516001600160a01b0390921691632e1a7d4d9160248082019260009290919082900301818387803b158015610b8d57600080fd5b505af1158015610ba1573d6000803e3d6000fd5b50506006546040805163a9059cbb60e01b81523360048201526024810186905290516001600160a01b03909216935063a9059cbb92506044808201926020929091908290030181600087803b158015610bf957600080fd5b505af1158015610c0d573d6000803e3d6000fd5b505050506040513d6020811015610c2357600080fd5b50505b610c308782611f45565b336000908152601160205260409020819055600b54909750610c529082611f45565b600b55600e54610c6e9064e8d4a5100090610acc908a90611eaa565b33600090815260136020526040902055610c88888a611f45565b3360009081526012602052604090208190559750610ca6308a6122cb565b610cc464e8d4a51000610acc600f548b611eaa90919063ffffffff16565b33600090815260146020526040902055505050505050505050565b60126020526000908152604090205481565b6001600160a01b031660009081526020819052604090205490565b610d14611933565b60055461010090046001600160a01b03908116911614610d69576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60136020526000908152604090205481565b60055461010090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107225780601f106106f757610100808354040283529160200191610722565b6000610740610e4d611933565b8461087d8560405180606001604052806025815260200161280c6025913960016000610e77611933565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b7e565b610eb0611c15565b600654604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b158015610f0a57600080fd5b505af1158015610f1e573d6000803e3d6000fd5b505050506040513d6020811015610f3457600080fd5b505033600090815260116020526040812054908115610f805733600090815260136020526040902054600e54610f7c908290610ad29064e8d4a5100090610acc908890611eaa565b9150505b600a546040805163534a7e1d60e11b81526004810186905290516001600160a01b039092169163a694fc3a9160248082019260009290919082900301818387803b158015610fcd57600080fd5b505af1158015610fe1573d6000803e3d6000fd5b50505050610ff883836118d290919063ffffffff16565b915061101864e8d4a51000610acc600e5485611eaa90919063ffffffff16565b3360009081526013602090815260408083209390935560119052908120839055839061104261074a565b600b5490915061105290866118d2565b600b5561105f30836123c7565b61106b82600183611f87565b336000908152601260205260408120549081156110b55733600090815260146020526040902054600f546110b1908290610ad29064e8d4a5100090610acc908890611eaa565b9150505b6110bf82856118d2565b336000908152601260205260409020819055600f549092506110ed9064e8d4a5100090610acc908590611eaa565b3360008181526014602052604090209190915561110e90610b3487846118d2565b50505050505050565b6000610740611124611933565b8484611a23565b611133611933565b60055461010090046001600160a01b03908116911614611188576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b600c54600d546040805163095ea7b360e01b81526001600160a01b03928316600482015260001960248201529051919092169163095ea7b39160448083019260209291908290030181600087803b1580156111e257600080fd5b505af11580156111f6573d6000803e3d6000fd5b505050506040513d602081101561120c57600080fd5b50506008546040805163095ea7b360e01b81526001600160a01b039092166004830152600019602483015251309163095ea7b39160448083019260209291908290030181600087803b15801561126157600080fd5b505af1158015611275573d6000803e3d6000fd5b505050506040513d602081101561128b57600080fd5b5050600654600a546040805163095ea7b360e01b81526001600160a01b03928316600482015260001960248201529051919092169163095ea7b39160448083019260209291908290030181600087803b1580156112e757600080fd5b505af11580156112fb573d6000803e3d6000fd5b505050506040513d602081101561131157600080fd5b5050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60116020526000908152604090205481565b600c546001600160a01b031681565b60095481565b60008061137261074a565b905080611383576000915050610691565b600a54604080516246613160e11b815230600482015290516000926001600160a01b031691628cc262916024808301926020929190829003018186803b1580156113cc57600080fd5b505afa1580156113e0573d6000803e3d6000fd5b505050506040513d60208110156113f657600080fd5b505160408051600380825260808201909252919250606091906020820183803683375050600c5482519293506001600160a01b03169183915060009061143857fe5b6001600160a01b03928316602091820292909201015260105482519116908290600190811061146357fe5b6001600160a01b03928316602091820292909201015260075482519116908290600290811061148e57fe5b6001600160a01b03928316602091820292909201810191909152600d546040805163d06ca61f60e01b81526004810187815260248201928352865160448301528651606096949094169463d06ca61f94899489949092606490910191858201910280838360005b8381101561150d5781810151838201526020016114f5565b50505050905001935050505060006040518083038186803b15801561153157600080fd5b505afa158015611545573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561156e57600080fd5b810190808051604051939291908464010000000082111561158e57600080fd5b9083019060208201858111156115a357600080fd5b82518660208202830111640100000000821117156115c057600080fd5b82525081516020918201928201910280838360005b838110156115ed5781810151838201526020016115d5565b505050509050016040525050509050600061163f611636600b54610acc64e8d4a510008660018851038151811061162057fe5b6020026020010151611eaa90919063ffffffff16565b600e54906118d2565b6001600160a01b0388166000908152601360209081526040808320546011909252822054929350919061167f83610ad264e8d4a51000610acc8689611eaa565b9a9950505050505050505050565b60146020526000908152604090205481565b6010546001600160a01b031681565b6116b6611933565b60055461010090046001600160a01b0390811691161461170b576040805162461bcd60e51b81526020600482018190526024820152600080516020612782833981519152604482015290519081900360640190fd5b6001600160a01b0381166117505760405162461bcd60e51b81526004018080602001828103825260268152602001806126cb6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600d546001600160a01b031681565b6000806117d161074a565b9050806117e2576000915050610691565b6008546009546040805163b3594f8760e01b81526004810192909252306024830152516000926001600160a01b03169163b3594f87916044808301926020929190829003018186803b15801561183757600080fd5b505afa15801561184b573d6000803e3d6000fd5b505050506040513d602081101561186157600080fd5b50519050600061188661187d84610acc8564e8d4a51000611eaa565b600f54906118d2565b6001600160a01b038616600090815260146020908152604080832054601290925282205492935091906118c683610ad264e8d4a51000610acc8689611eaa565b98975050505050505050565b60008282018381101561192c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03831661197c5760405162461bcd60e51b81526004018080602001828103825260248152602001806127e86024913960400191505060405180910390fd5b6001600160a01b0382166119c15760405162461bcd60e51b81526004018080602001828103825260228152602001806126f16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611a685760405162461bcd60e51b81526004018080602001828103825260258152602001806127c36025913960400191505060405180910390fd5b6001600160a01b038216611aad5760405162461bcd60e51b81526004018080602001828103825260238152602001806126866023913960400191505060405180910390fd5b611ab88383836109a3565b611af581604051806060016040528060268152602001612713602691396001600160a01b0386166000908152602081905260409020549190611b7e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b2490826118d2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c0d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bd2578181015183820152602001611bba565b50505050905090810190601f168015611bff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600e54600b54611c255750611ea8565b6000611c2f6124b7565b9050801561131157604080516003808252608082019092526060916020820183803683375050600c5482519293506001600160a01b031691839150600090611c7357fe5b6001600160a01b039283166020918202929092010152601054825191169082906001908110611c9e57fe5b6001600160a01b039283166020918202929092010152600754825191169082906002908110611cc957fe5b6001600160a01b03928316602091820292909201810191909152600d546040516338ed173960e01b8152600481018681526000602483018190523060648401819052600342016084850181905260a060448601908152895160a4870152895160609997909716976338ed1739978c9795968c9690939260c49091019187820191028083838b5b83811015611d67578181015183820152602001611d4f565b505050509050019650505050505050600060405180830381600087803b158015611d9057600080fd5b505af1158015611da4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611dcd57600080fd5b8101908080516040519392919084640100000000821115611ded57600080fd5b908301906020820185811115611e0257600080fd5b8251866020820283011164010000000082111715611e1f57600080fd5b82525081516020918201928201910280838360005b83811015611e4c578181015183820152602001611e34565b505050509050016040525050509050600081600183510381518110611e6d57fe5b60200260200101519050611e9f611e98600b54610acc64e8d4a5100085611eaa90919063ffffffff16565b86906118d2565b600e5550505050505b565b600082611eb957506000610744565b82820282848281611ec657fe5b041461192c5760405162461bcd60e51b81526004018080602001828103825260218152602001806127396021913960400191505060405180910390fd5b600061192c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612620565b600061192c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b7e565b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611fd257600080fd5b505afa158015611fe6573d6000803e3d6000fd5b505050506040513d6020811015611ffc57600080fd5b50519050821561207a5760085460095460408051631c57762b60e31b8152600481019290925260248201879052516001600160a01b039092169163e2bbb1589160448082019260009290919082900301818387803b15801561205d57600080fd5b505af1158015612071573d6000803e3d6000fd5b505050506120ea565b60085460095460408051630441a3e760e41b8152600481019290925260248201879052516001600160a01b039092169163441a3e709160448082019260009290919082900301818387803b1580156120d157600080fd5b505af11580156120e5573d6000803e3d6000fd5b505050505b600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561213557600080fd5b505afa158015612149573d6000803e3d6000fd5b505050506040513d602081101561215f57600080fd5b50519050600061216f8284611f45565b90506000841180156121815750600081115b156121ab57600f546121a661219f86610acc8564e8d4a51000611eaa565b82906118d2565b600f55505b505050505050565b801561131157600754604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561220457600080fd5b505afa158015612218573d6000803e3d6000fd5b505050506040513d602081101561222e57600080fd5b50516007549091506001600160a01b031663a9059cbb848385116122525784612254565b835b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561229a57600080fd5b505af11580156122ae573d6000803e3d6000fd5b505050506040513d60208110156122c457600080fd5b5050505050565b6001600160a01b0382166123105760405162461bcd60e51b81526004018080602001828103825260218152602001806127a26021913960400191505060405180910390fd5b61231c826000836109a3565b612359816040518060600160405280602281526020016126a9602291396001600160a01b0385166000908152602081905260409020549190611b7e565b6001600160a01b03831660009081526020819052604090205560025461237f9082611f45565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216612422576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61242e600083836109a3565b60025461243b90826118d2565b6002556001600160a01b03821660009081526020819052604090205461246190826118d2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600c54604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561250757600080fd5b505afa15801561251b573d6000803e3d6000fd5b505050506040513d602081101561253157600080fd5b5051600a5460408051631e8c5c8960e11b815290519293506001600160a01b0390911691633d18b9129160048082019260009290919082900301818387803b15801561257c57600080fd5b505af1158015612590573d6000803e3d6000fd5b5050600c54604080516370a0823160e01b81523060048201529051600094506001600160a01b0390921692506370a08231916024808301926020929190829003018186803b1580156125e157600080fd5b505afa1580156125f5573d6000803e3d6000fd5b505050506040513d602081101561260b57600080fd5b505190506126198183611f45565b9250505090565b6000818361266f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bd2578181015183820152602001611bba565b50600083858161267b57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220399ebb725359435f911d2eb0c251b04e1bef67185afc500c2f5f84ff637f313464736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c28e27870558cf22add83540d2126da2e4b464c2000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc0000000000000000000000001f9840a85d5af5bf1d1762f925bdaddc4201f9840000000000000000000000001daed74ed1dd7c9dabbe51361ac90a69d851234d0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000007fba4b8dc5e7616e59622806932dbea72537a56b000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _sashimi (address): 0xC28E27870558cF22ADD83540d2126da2e4b464c2
Arg [1] : _lp (address): 0xB4e16d0168e52d35CaCD2c6185b44281Ec28C9Dc
Arg [2] : _uni (address): 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984
Arg [3] : _masterChef (address): 0x1DaeD74ed1dD7C9Dabbe51361ac90A69d851234D
Arg [4] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [5] : _uniStake (address): 0x7FBa4B8Dc5E7616e59622806932DBea72537A56b
Arg [6] : _wETH (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000c28e27870558cf22add83540d2126da2e4b464c2
Arg [1] : 000000000000000000000000b4e16d0168e52d35cacd2c6185b44281ec28c9dc
Arg [2] : 0000000000000000000000001f9840a85d5af5bf1d1762f925bdaddc4201f984
Arg [3] : 0000000000000000000000001daed74ed1dd7c9dabbe51361ac90a69d851234d
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 0000000000000000000000007fba4b8dc5e7616e59622806932dbea72537a56b
Arg [6] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode Sourcemap
38758:8585:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45734:145;;;;;;;;;;;;;;;;-1:-1:-1;45734:145:0;-1:-1:-1;;;;;45734:145:0;;:::i;:::-;;;;;;;;;;;;;;;;17467:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19573:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19573:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18542:100;;;:::i;39999:146::-;;;;;;;;;;;;;;;;-1:-1:-1;39999:146:0;;:::i;:::-;;20216:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20216:321:0;;;;;;;;;;;;;;;;;:::i;39032:22::-;;;:::i;39167:37::-;;;:::i;38882:16::-;;;:::i;:::-;;;;-1:-1:-1;;;;;38882:16:0;;;;;;;;;;;;;;18394:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43591:160;;;;;;;;;;;;;;;;-1:-1:-1;43591:160:0;-1:-1:-1;;;;;43591:160:0;;:::i;20946:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20946:218:0;;;;;;;;:::i;38994:31::-;;;:::i;39124:36::-;;;:::i;38933:29::-;;;:::i;38905:21::-;;;:::i;41980:1603::-;;;;;;;;;;;;;;;;-1:-1:-1;41980:1603:0;;:::i;39290:45::-;;;;;;;;;;;;;;;;-1:-1:-1;39290:45:0;-1:-1:-1;;;;;39290:45:0;;:::i;18705:119::-;;;;;;;;;;;;;;;;-1:-1:-1;18705:119:0;-1:-1:-1;;;;;18705:119:0;;:::i;31749:148::-;;;:::i;39363:53::-;;;;;;;;;;;;;;;;-1:-1:-1;39363:53:0;-1:-1:-1;;;;;39363:53:0;;:::i;31107:79::-;;;:::i;17669:87::-;;;:::i;21667:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21667:269:0;;;;;;;;:::i;40387:1585::-;;;;;;;;;;;;;;;;-1:-1:-1;40387:1585:0;;:::i;19037:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19037:175:0;;;;;;;;:::i;40153:226::-;;;:::i;19275:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19275:151:0;;;;;;;;;;:::i;39239:44::-;;;;;;;;;;;;;;;;-1:-1:-1;39239:44:0;-1:-1:-1;;;;;39239:44:0;;:::i;39061:15::-;;;:::i;38969:18::-;;;:::i;45887:831::-;;;;;;;;;;;;;;;;-1:-1:-1;45887:831:0;-1:-1:-1;;;;;45887:831:0;;:::i;39457:54::-;;;;;;;;;;;;;;;;-1:-1:-1;39457:54:0;-1:-1:-1;;;;;39457:54:0;;:::i;39211:19::-;;;:::i;32052:244::-;;;;;;;;;;;;;;;;-1:-1:-1;32052:244:0;-1:-1:-1;;;;;32052:244:0;;:::i;39083:32::-;;;:::i;46726:614::-;;;;;;;;;;;;;;;;-1:-1:-1;46726:614:0;-1:-1:-1;;;;;46726:614:0;;:::i;45734:145::-;45787:7;45813:58;45847:23;45862:7;45847:14;:23::i;:::-;45813:29;45834:7;45813:20;:29::i;:::-;:33;;:58::i;:::-;45806:65;;45734:145;;;;:::o;17467:83::-;17537:5;17530:12;;;;;;;;-1:-1:-1;;17530:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17504:13;;17530:12;;17537:5;;17530:12;;17537:5;17530:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17467:83;:::o;19573:169::-;19656:4;19673:39;19682:12;:10;:12::i;:::-;19696:7;19705:6;19673:8;:39::i;:::-;-1:-1:-1;19730:4:0;19573:169;;;;;:::o;18542:100::-;18622:12;;18542:100;:::o;39999:146::-;31329:12;:10;:12::i;:::-;31319:6;;;;;-1:-1:-1;;;;;31319:6:0;;;:22;;;31311:67;;;;;-1:-1:-1;;;31311:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31311:67:0;;;;;;;;;;;;;;;40064:3:::1;::::0;:8;40056:37:::1;;;::::0;;-1:-1:-1;;;40056:37:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40056:37:0;;;;;;;;;;;;;::::1;;40104:3;:10:::0;;;40125:12:::1;:10;:12::i;:::-;39999:146:::0;:::o;20216:321::-;20322:4;20339:36;20349:6;20357:9;20368:6;20339:9;:36::i;:::-;20386:121;20395:6;20403:12;:10;:12::i;:::-;20417:89;20455:6;20417:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20417:19:0;;;;;;:11;:19;;;;;;20437:12;:10;:12::i;:::-;-1:-1:-1;;;;;20417:33:0;;;;;;;;;;;;-1:-1:-1;20417:33:0;;;:89;:37;:89::i;:::-;20386:8;:121::i;:::-;-1:-1:-1;20525:4:0;20216:321;;;;;:::o;39032:22::-;;;;:::o;39167:37::-;;;;:::o;38882:16::-;;;-1:-1:-1;;;;;38882:16:0;;:::o;18394:83::-;18460:9;;;;18394:83;:::o;43591:160::-;31329:12;:10;:12::i;:::-;31319:6;;;;;-1:-1:-1;;;;;31319:6:0;;;:22;;;31311:67;;;;;-1:-1:-1;;;31311:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31311:67:0;;;;;;;;;;;;;;;43668:6:::1;:16:::0;;-1:-1:-1;;;;;;43668:16:0::1;-1:-1:-1::0;;;;;43668:16:0;;::::1;::::0;;::::1;::::0;;;43695:3:::1;::::0;:48:::1;::::0;;-1:-1:-1;;;43695:48:0;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;43695:48:0;;;;;:3;::::1;::::0;:11:::1;::::0;:48;;;;;::::1;::::0;;;;;;;;;-1:-1:-1;43695:3:0;:48;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;43591:160:0:o;20946:218::-;21034:4;21051:83;21060:12;:10;:12::i;:::-;21074:7;21083:50;21122:10;21083:11;:25;21095:12;:10;:12::i;:::-;-1:-1:-1;;;;;21083:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21083:25:0;;;:34;;;;;;;;;;;:38;:50::i;38994:31::-;;;-1:-1:-1;;;;;38994:31:0;;:::o;39124:36::-;;;;:::o;38933:29::-;;;-1:-1:-1;;;;;38933:29:0;;:::o;38905:21::-;;;-1:-1:-1;;;;;38905:21:0;;:::o;41980:1603::-;42060:10;42032:14;42049:22;;;:10;:22;;;;;;42090:19;;;;42082:53;;;;;-1:-1:-1;;;42082:53:0;;;;;;;;;;;;-1:-1:-1;;;42082:53:0;;;;;;;;;;;;;;;42148:29;:27;:29::i;:::-;42214:10;42188:13;42204:21;;;:9;:21;;;;;;;;;42258:18;:30;;;;;;42341:21;;42204;;42258:30;;42331:59;;42258:30;;42331:42;;42368:4;;42331:32;;42204:21;;42331:9;:32::i;:::-;:36;;:42::i;:::-;:46;;:59::i;:::-;42299:91;;42428:19;42450:13;:11;:13::i;:::-;42428:35;;42474:59;42503:9;42514:5;42521:11;42474:28;:59::i;:::-;42587:10;42544:20;42567:31;;;:19;:31;;;;;;42653:22;;42567:31;;42544:20;42642:62;;42567:31;;42642:44;;42681:4;;42642:34;;:6;;:10;:34::i;:62::-;42609:95;-1:-1:-1;42717:78:0;42733:10;42745:49;:21;42609:95;42745:25;:49::i;:::-;42717:15;:78::i;:::-;42833:9;42859:18;;42855:175;;42931:8;;:33;;;-1:-1:-1;;;42931:33:0;;;;;;;;;;-1:-1:-1;;;;;42931:8:0;;;;:17;;:33;;;;;:8;;:33;;;;;;;;:8;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42979:2:0;;:39;;;-1:-1:-1;;;42979:39:0;;42991:10;42979:39;;;;;;;;;;;;-1:-1:-1;;;;;42979:2:0;;;;-1:-1:-1;42979:11:0;;-1:-1:-1;42979:39:0;;;;;;;;;;;;;;;:2;;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42855:175:0;43080:25;:5;43090:14;43080:9;:25::i;:::-;43126:10;43116:21;;;;:9;:21;;;;;:29;;;43166:7;;43072:33;;-1:-1:-1;43166:27:0;;43178:14;43166:11;:27::i;:::-;43156:7;:37;43288:21;;43278:42;;43315:4;;43278:32;;:5;;:9;:32::i;:42::-;43264:10;43245:30;;;;:18;:30;;;;;:75;43381:21;:6;43392:9;43381:10;:21::i;:::-;43424:10;43413:22;;;;:10;:22;;;;;:31;;;43372:30;-1:-1:-1;43455:31:0;43469:4;43476:9;43455:5;:31::i;:::-;43531:44;43570:4;43531:34;43542:22;;43531:6;:10;;:34;;;;:::i;:44::-;43517:10;43497:31;;;;:19;:31;;;;;:78;-1:-1:-1;;;;;;;;;41980:1603:0:o;39290:45::-;;;;;;;;;;;;;:::o;18705:119::-;-1:-1:-1;;;;;18798:18:0;18771:7;18798:18;;;;;;;;;;;;18705:119::o;31749:148::-;31329:12;:10;:12::i;:::-;31319:6;;;;;-1:-1:-1;;;;;31319:6:0;;;:22;;;31311:67;;;;;-1:-1:-1;;;31311:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31311:67:0;;;;;;;;;;;;;;;31840:6:::1;::::0;31819:40:::1;::::0;31856:1:::1;::::0;31840:6:::1;::::0;::::1;-1:-1:-1::0;;;;;31840:6:0::1;::::0;31819:40:::1;::::0;31856:1;;31819:40:::1;31870:6;:19:::0;;-1:-1:-1;;;;;;31870:19:0::1;::::0;;31749:148::o;39363:53::-;;;;;;;;;;;;;:::o;31107:79::-;31172:6;;;;;-1:-1:-1;;;;;31172:6:0;;31107:79::o;17669:87::-;17741:7;17734:14;;;;;;;;-1:-1:-1;;17734:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17708:13;;17734:14;;17741:7;;17734:14;;17741:7;17734:14;;;;;;;;;;;;;;;;;;;;;;;;21667:269;21760:4;21777:129;21786:12;:10;:12::i;:::-;21800:7;21809:96;21848:15;21809:96;;;;;;;;;;;;;;;;;:11;:25;21821:12;:10;:12::i;:::-;-1:-1:-1;;;;;21809:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21809:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;40387:1585::-;40437:29;:27;:29::i;:::-;40477:2;;:51;;;-1:-1:-1;;;40477:51:0;;40493:10;40477:51;;;;40513:4;40477:51;;;;;;;;;;;;-1:-1:-1;;;;;40477:2:0;;;;:15;;:51;;;;;;;;;;;;;;;:2;;:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40565:10:0;40539:13;40555:21;;;:9;40477:51;40555:21;;;;;;40637:9;;40633:187;;40706:10;40672:12;40687:30;;;:18;:30;;;;;;40766:21;;40756:52;;40687:30;;40756:42;;40793:4;;40756:32;;:5;;:9;:32::i;:52::-;40732:76;;40633:187;;40851:8;;:23;;;-1:-1:-1;;;40851:23:0;;;;;;;;;;-1:-1:-1;;;;;40851:8:0;;;;:14;;:23;;;;;:8;;:23;;;;;;;;:8;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40934:18;40944:7;40934:5;:9;;:18;;;;:::i;:::-;40926:26;;40996:42;41033:4;40996:32;41006:21;;40996:5;:9;;:32;;;;:::i;:42::-;40982:10;40963:30;;;;:18;:30;;;;;;;;:75;;;;41076:9;:21;;;;;:29;;;41135:7;;41175:13;:11;:13::i;:::-;41209:7;;41153:35;;-1:-1:-1;41209:20:0;;41221:7;41209:11;:20::i;:::-;41199:7;:30;41263:31;41277:4;41284:9;41263:5;:31::i;:::-;41305:58;41334:9;41345:4;41351:11;41305:28;:58::i;:::-;41404:10;41376:14;41393:22;;;:10;:22;;;;;;;41475:10;;41471:192;;41546:10;41511:12;41526:31;;;:19;:31;;;;;;41608:22;;41597:54;;41526:31;;41597:44;;41636:4;;41597:34;;:6;;:10;:34::i;:54::-;41572:79;;41471:192;;41684:21;:6;41695:9;41684:10;:21::i;:::-;41727:10;41716:22;;;;:10;:22;;;;;:31;;;41842:22;;41675:30;;-1:-1:-1;41831:44:0;;41870:4;;41831:34;;41675:30;;41831:10;:34::i;:44::-;41817:10;41797:31;;;;:19;:31;;;;;:78;;;;41886;;41914:49;:21;41940:22;41914:25;:49::i;41886:78::-;40387:1585;;;;;;;:::o;19037:175::-;19123:4;19140:42;19150:12;:10;:12::i;:::-;19164:9;19175:6;19140:9;:42::i;40153:226::-;31329:12;:10;:12::i;:::-;31319:6;;;;;-1:-1:-1;;;;;31319:6:0;;;:22;;;31311:67;;;;;-1:-1:-1;;;31311:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31311:67:0;;;;;;;;;;;;;;;40202:3:::1;::::0;40222:6:::1;::::0;40202:47:::1;::::0;;-1:-1:-1;;;40202:47:0;;-1:-1:-1;;;;;40222:6:0;;::::1;40202:47;::::0;::::1;::::0;-1:-1:-1;;40202:47:0;;;;;;:3;;;::::1;::::0;:11:::1;::::0;:47;;;;;::::1;::::0;;;;;;;;:3:::1;::::0;:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;40281:10:0::1;::::0;40260:52:::1;::::0;;-1:-1:-1;;;40260:52:0;;-1:-1:-1;;;;;40281:10:0;;::::1;40260:52;::::0;::::1;::::0;-1:-1:-1;;40260:52:0;;;;;:4:::1;::::0;:12:::1;::::0;:52;;;;;40202:47:::1;::::0;40260:52;;;;;;;-1:-1:-1;40260:4:0;:52;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;40323:2:0::1;::::0;40342:8:::1;::::0;40323:48:::1;::::0;;-1:-1:-1;;;40323:48:0;;-1:-1:-1;;;;;40342:8:0;;::::1;40323:48;::::0;::::1;::::0;-1:-1:-1;;40323:48:0;;;;;;:2;;;::::1;::::0;:10:::1;::::0;:48;;;;;40260:52:::1;::::0;40323:48;;;;;;;:2:::1;::::0;:48;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;40153:226:0:o;19275:151::-;-1:-1:-1;;;;;19391:18:0;;;19364:7;19391:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19275:151::o;39239:44::-;;;;;;;;;;;;;:::o;39061:15::-;;;-1:-1:-1;;;;;39061:15:0;;:::o;38969:18::-;;;;:::o;45887:831::-;45954:7;45973:19;45995:13;:11;:13::i;:::-;45973:35;-1:-1:-1;46023:16:0;46019:43;;46061:1;46054:8;;;;;46019:43;46093:8;;:30;;;-1:-1:-1;;;46093:30:0;;46117:4;46093:30;;;;;;46073:17;;-1:-1:-1;;;;;46093:8:0;;:15;;:30;;;;;;;;;;;;;;:8;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46093:30:0;46158:16;;;46172:1;46158:16;;;;;;;;;46093:30;;-1:-1:-1;46134:21:0;;46158:16;;;;46134:21;;46158:16;;;-1:-1:-1;;46203:3:0;;46185:7;;;;-1:-1:-1;;;;;;46203:3:0;;46185:7;;-1:-1:-1;46203:3:0;;46185:7;;;;-1:-1:-1;;;;;46185:22:0;;;:7;;;;;;;;;:22;46228:4;;46218:7;;46228:4;;;46218;;46228;;46218:7;;;;;;-1:-1:-1;;;;;46218:14:0;;;:7;;;;;;;;;:14;46261:7;;46243;;46261;;;46243:4;;46248:1;;46243:7;;;;;;-1:-1:-1;;;;;46243:26:0;;;:7;;;;;;;;;;:26;;;;46307:6;;:37;;;-1:-1:-1;;;46307:37:0;;;;;;;;;;;;;;;;;;;;;;46280:24;;46307:6;;;;;:20;;46328:9;;46339:4;;46307:37;;;;;;;;;;;;;;;:6;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46307:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46307:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46280:64;;46357:35;46395:77;46421:50;46463:7;;46421:37;46453:4;46421:7;46446:1;46429:7;:14;:18;46421:27;;;;;;;;;;;;;;:31;;:37;;;;:::i;:50::-;46395:21;;;:25;:77::i;:::-;-1:-1:-1;;;;;46505:27:0;;46483:19;46505:27;;;:18;:27;;;;;;;;;46559:9;:18;;;;;;46357:115;;-1:-1:-1;46505:27:0;46559:18;46613:65;46505:27;46613:48;46656:4;46613:38;46559:18;46357:115;46613:9;:38::i;:65::-;46588:90;45887:831;-1:-1:-1;;;;;;;;;;45887:831:0:o;39457:54::-;;;;;;;;;;;;;:::o;39211:19::-;;;-1:-1:-1;;;;;39211:19:0;;:::o;32052:244::-;31329:12;:10;:12::i;:::-;31319:6;;;;;-1:-1:-1;;;;;31319:6:0;;;:22;;;31311:67;;;;;-1:-1:-1;;;31311:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31311:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32141:22:0;::::1;32133:73;;;;-1:-1:-1::0;;;32133:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32243:6;::::0;32222:38:::1;::::0;-1:-1:-1;;;;;32222:38:0;;::::1;::::0;32243:6:::1;::::0;::::1;;::::0;32222:38:::1;::::0;;;::::1;32271:6;:17:::0;;-1:-1:-1;;;;;32271:17:0;;::::1;;;-1:-1:-1::0;;;;;;32271:17:0;;::::1;::::0;;;::::1;::::0;;32052:244::o;39083:32::-;;;-1:-1:-1;;;;;39083:32:0;;:::o;46726:614::-;46787:7;46806:19;46828:13;:11;:13::i;:::-;46806:35;-1:-1:-1;46856:16:0;46852:43;;46894:1;46887:8;;;;;46852:43;46927:10;;46953:3;;46927:45;;;-1:-1:-1;;;46927:45:0;;;;;;;;;46966:4;46927:45;;;;;46906:18;;-1:-1:-1;;;;;46927:10:0;;:25;;:45;;;;;;;;;;;;;;:10;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46927:45:0;;-1:-1:-1;46983:36:0;47022:65;47049:37;47074:11;47049:20;46927:45;47064:4;47049:14;:20::i;:37::-;47022:22;;;:26;:65::i;:::-;-1:-1:-1;;;;;47121:28:0;;47098:20;47121:28;;;:19;:28;;;;;;;;;47177:10;:19;;;;;;46983:104;;-1:-1:-1;47121:28:0;47177:19;47232:68;47121:28;47232:50;47277:4;47232:40;47177:19;46983:104;47232:10;:40::i;:68::-;47207:93;46726:614;-1:-1:-1;;;;;;;;46726:614:0:o;4770:181::-;4828:7;4860:5;;;4884:6;;;;4876:46;;;;;-1:-1:-1;;;4876:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4942:1;4770:181;-1:-1:-1;;;4770:181:0:o;3491:106::-;3579:10;3491:106;:::o;24812:346::-;-1:-1:-1;;;;;24914:19:0;;24906:68;;;;-1:-1:-1;;;24906:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24993:21:0;;24985:68;;;;-1:-1:-1;;;24985:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25066:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25118:32;;;;;;;;;;;;;;;;;24812:346;;;:::o;22426:539::-;-1:-1:-1;;;;;22532:20:0;;22524:70;;;;-1:-1:-1;;;22524:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22613:23:0;;22605:71;;;;-1:-1:-1;;;22605:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22689:47;22710:6;22718:9;22729:6;22689:20;:47::i;:::-;22769:71;22791:6;22769:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22769:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22749:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22874:20;;;;;;;:32;;22899:6;22874:24;:32::i;:::-;-1:-1:-1;;;;;22851:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22922:35;;;;;;;22851:20;;22922:35;;;;;;;;;;;;;22426:539;;;:::o;5673:192::-;5759:7;5795:12;5787:6;;;;5779:29;;;;-1:-1:-1;;;5779:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5831:5:0;;;5673:192::o;44036:695::-;44115:21;;44151:7;;44147:38;;44178:7;;;44147:38;44197:18;44218:21;:19;:21::i;:::-;44197:42;-1:-1:-1;44254:14:0;;44250:474;;44318:16;;;44332:1;44318:16;;;;;;;;;44294:21;;44318:16;;;44294:21;;44318:16;;;-1:-1:-1;;44367:3:0;;44349:7;;;;-1:-1:-1;;;;;;44367:3:0;;44349:7;;-1:-1:-1;44367:3:0;;44349:7;;;;-1:-1:-1;;;;;44349:22:0;;;:7;;;;;;;;;:22;44396:4;;44386:7;;44396:4;;;44386;;44396;;44386:7;;;;;;-1:-1:-1;;;;;44386:14:0;;;:7;;;;;;;;;:14;44433:7;;44415;;44433;;;44415:4;;44420:1;;44415:7;;;;;;-1:-1:-1;;;;;44415:26:0;;;:7;;;;;;;;;;:26;;;;44480:6;;:88;;-1:-1:-1;;;44480:88:0;;;;;;;;:6;:88;;;;;;44541:4;44480:88;;;;;;44566:1;44548:15;:19;44480:88;;;;;;;;;;;;;;;;;;;;;44456:21;;44480:6;;;;;:31;;44512:10;;44480:6;;44527:4;;44480:88;;;;;;;;;;;;;;;;:6;:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44480:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44480:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44456:112;;44583:14;44600:7;44625:1;44608:7;:14;:18;44600:27;;;;;;;;;;;;;;44583:44;;44666:46;44682:29;44703:7;;44682:16;44693:4;44682:6;:10;;:16;;;;:::i;:29::-;44666:11;;:15;:46::i;:::-;44642:21;:70;-1:-1:-1;;;44036:695:0;;;:::o;6124:471::-;6182:7;6427:6;6423:47;;-1:-1:-1;6457:1:0;6450:8;;6423:47;6494:5;;;6498:1;6494;:5;:1;6518:5;;;;;:10;6510:56;;;;-1:-1:-1;;;6510:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7071:132;7129:7;7156:39;7160:1;7163;7156:39;;;;;;;;;;;;;;;;;:3;:39::i;5234:136::-;5292:7;5319:43;5323:1;5326;5319:43;;;;;;;;;;;;;;;;;:3;:43::i;44739:720::-;44874:7;;:32;;;-1:-1:-1;;;44874:32:0;;44900:4;44874:32;;;;;;44850:21;;-1:-1:-1;;;;;44874:7:0;;:17;;:32;;;;;;;;;;;;;;:7;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44874:32:0;;-1:-1:-1;44919:171:0;;;;44985:10;;45004:3;;44985:32;;;-1:-1:-1;;;44985:32:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44985:10:0;;;;:18;;:32;;;;;:10;;:32;;;;;;;;:10;;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44919:171;;;45057:10;;45077:3;;45057:33;;;-1:-1:-1;;;45057:33:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45057:10:0;;;;:19;;:33;;;;;:10;;:33;;;;;;;;:10;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44919:171;45126:7;;:32;;;-1:-1:-1;;;45126:32:0;;45152:4;45126:32;;;;;;45103:20;;-1:-1:-1;;;;;45126:7:0;;:17;;:32;;;;;;;;;;;;;;:7;:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45126:32:0;;-1:-1:-1;45169:19:0;45191:31;45126:32;45208:13;45191:16;:31::i;:::-;45169:53;;45254:1;45239:12;:16;:35;;;;;45273:1;45259:11;:15;45239:35;45235:217;;;45322:22;;45384:56;45400:39;45426:12;45400:21;:11;45416:4;45400:15;:21::i;:39::-;45384:11;;:15;:56::i;:::-;45359:22;:81;-1:-1:-1;45235:217:0;44739:720;;;;;;:::o;45467:259::-;45548:10;;45544:175;;45605:7;;45598:40;;;-1:-1:-1;;;45598:40:0;;45632:4;45598:40;;;;;;45584:11;;-1:-1:-1;;;;;45605:7:0;;45598:25;;:40;;;;;;;;;;;;;;45605:7;45598:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45598:40:0;45653:7;;45598:40;;-1:-1:-1;;;;;;45653:7:0;:16;45670:7;45679:12;;;:27;;45700:6;45679:27;;;45694:3;45679:27;45653:54;;;;;;;;;;;;;-1:-1:-1;;;;;45653:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;45467:259:0;;:::o;23956:418::-;-1:-1:-1;;;;;24040:21:0;;24032:67;;;;-1:-1:-1;;;24032:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24112:49;24133:7;24150:1;24154:6;24112:20;:49::i;:::-;24195:68;24218:6;24195:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24195:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;24174:18:0;;:9;:18;;;;;;;;;;:89;24289:12;;:24;;24306:6;24289:16;:24::i;:::-;24274:12;:39;24329:37;;;;;;;;24355:1;;-1:-1:-1;;;;;24329:37:0;;;;;;;;;;;;23956:418;;:::o;23246:378::-;-1:-1:-1;;;;;23330:21:0;;23322:65;;;;;-1:-1:-1;;;23322:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;23400:49;23429:1;23433:7;23442:6;23400:20;:49::i;:::-;23477:12;;:24;;23494:6;23477:16;:24::i;:::-;23462:12;:39;-1:-1:-1;;;;;23533:18:0;;:9;:18;;;;;;;;;;;:30;;23556:6;23533:22;:30::i;:::-;-1:-1:-1;;;;;23512:18:0;;:9;:18;;;;;;;;;;;:51;;;;23579:37;;;;;;;23512:18;;:9;;23579:37;;;;;;;;;;23246:378;;:::o;43759:269::-;43850:3;;:28;;;-1:-1:-1;;;43850:28:0;;43872:4;43850:28;;;;;;43807:7;;;;-1:-1:-1;;;;;43850:3:0;;;;:13;;:28;;;;;;;;;;;;;;;:3;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43850:28:0;43889:8;;:20;;;-1:-1:-1;;;43889:20:0;;;;43850:28;;-1:-1:-1;;;;;;43889:8:0;;;;:18;;:20;;;;;:8;;:20;;;;;;;;:8;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43943:3:0;;:28;;;-1:-1:-1;;;43943:28:0;;43965:4;43943:28;;;;;;43920:20;;-1:-1:-1;;;;;;43943:3:0;;;;-1:-1:-1;43943:13:0;;:28;;;;;;;;;;;;;;:3;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43943:28:0;;-1:-1:-1;43989:31:0;43943:28;44006:13;43989:16;:31::i;:::-;43982:38;;;;43759:269;:::o;7699:278::-;7785:7;7820:12;7813:5;7805:28;;;;-1:-1:-1;;;7805:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7844:9;7860:1;7856;:5;;;;;;;7699:278;-1:-1:-1;;;;;7699:278:0:o
Swarm Source
ipfs://399ebb725359435f911d2eb0c251b04e1bef67185afc500c2f5f84ff637f3134
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.