Source Code
Latest 25 from a total of 29 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Exit | 11044112 | 1960 days ago | IN | 0 ETH | 0.00240345 | ||||
| Exit | 11022188 | 1964 days ago | IN | 0 ETH | 0.01578736 | ||||
| Get Reward | 11022126 | 1964 days ago | IN | 0 ETH | 0.01200353 | ||||
| Boostx10 | 11022105 | 1964 days ago | IN | 0.06 ETH | 0.00446976 | ||||
| Get Reward | 11012918 | 1965 days ago | IN | 0 ETH | 0.00540489 | ||||
| Boostx10 | 11012913 | 1965 days ago | IN | 0.03 ETH | 0.00178612 | ||||
| Get Reward | 11011969 | 1965 days ago | IN | 0 ETH | 0.00314774 | ||||
| Get Reward | 11011300 | 1966 days ago | IN | 0 ETH | 0.00598989 | ||||
| Boostx10 | 11011098 | 1966 days ago | IN | 0.015 ETH | 0.00281409 | ||||
| Stake | 11011076 | 1966 days ago | IN | 0 ETH | 0.00541425 | ||||
| Get Reward | 11002747 | 1967 days ago | IN | 0 ETH | 0.00442651 | ||||
| Withdraw | 10998851 | 1968 days ago | IN | 0 ETH | 0.00342685 | ||||
| Exit | 10998841 | 1968 days ago | IN | 0 ETH | 0.01012282 | ||||
| Stake | 10990237 | 1969 days ago | IN | 0 ETH | 0.01056344 | ||||
| Get Reward | 10989658 | 1969 days ago | IN | 0 ETH | 0.00354121 | ||||
| Get Reward | 10982694 | 1970 days ago | IN | 0 ETH | 0.00900815 | ||||
| Boostx8 | 10982470 | 1970 days ago | IN | 0.03 ETH | 0.00253812 | ||||
| Get Reward | 10982338 | 1970 days ago | IN | 0 ETH | 0.00734511 | ||||
| Boostx10 | 10982083 | 1970 days ago | IN | 0.03 ETH | 0.00229609 | ||||
| Get Reward | 10981383 | 1970 days ago | IN | 0 ETH | 0.00512771 | ||||
| Boostx8 | 10981140 | 1970 days ago | IN | 0.015 ETH | 0.00248664 | ||||
| Get Reward | 10981045 | 1970 days ago | IN | 0 ETH | 0.007755 | ||||
| Boostx10 | 10980829 | 1970 days ago | IN | 0.015 ETH | 0.00487775 | ||||
| Stake | 10980815 | 1970 days ago | IN | 0 ETH | 0.00742692 | ||||
| Transfer Ownersh... | 10966190 | 1973 days ago | IN | 0 ETH | 0.00263126 |
Latest 7 internal transactions
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
VEGETALENDETHPool
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-30
*/
/*
____ __ __ __ _
/ __/__ __ ___ / /_ / / ___ / /_ (_)__ __
_\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ /
/___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\
/___/
* Synthetix: VEGETARewards.sol
*
* Docs: https://docs.synthetix.io/
*
*
* MIT License
* ===========
*
* Copyright (c) 2020 Synthetix
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
// File: @openzeppelin/contracts/math/Math.sol
pragma solidity ^0.5.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
/**
* @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.
*
* _Available since v2.4.0._
*/
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.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
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.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
/*
* @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.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view 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/ownership/Ownable.sol
/**
* @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.
*
* 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 {
_owner = _msgSender();
emit OwnershipTransferred(address(0), _owner);
}
/**
* @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(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return _msgSender() == _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 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 onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
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/utils/Address.sol
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* This test is non-exhaustive, and there may be false-negatives: during the
* execution of a contract's constructor, its address will be reported as
* not containing 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.
*/
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.
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != 0x0 && codehash != accountHash);
}
/**
* @dev Converts an `address` into `address payable`. Note that this is
* simply a type cast: the actual underlying value is not changed.
*
* _Available since v2.4.0._
*/
function toPayable(address account) internal pure returns (address payable) {
return address(uint160(account));
}
/**
* @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].
*
* _Available since v2.4.0._
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-call-value
(bool success, ) = recipient.call.value(amount)("");
require(success, "Address: unable to send value, recipient may have reverted");
}
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
/**
* @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 ERC20;` 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));
}
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.
// A Solidity high level call has three parts:
// 1. The target address is checked to verify it contains contract code
// 2. The call itself is made, and success asserted
// 3. The return value is decoded, which in turn checks the size of the returned data.
// solhint-disable-next-line max-line-length
require(address(token).isContract(), "SafeERC20: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = address(token).call(data);
require(success, "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: contracts/IRewardDistributionRecipient.sol
contract IRewardDistributionRecipient is Ownable {
address public rewardDistribution;
function notifyRewardAmount(uint256 reward) external;
modifier onlyRewardDistribution() {
require(_msgSender() == rewardDistribution, "Caller is not reward distribution");
_;
}
function setRewardDistribution(address _rewardDistribution)
external
onlyOwner
{
rewardDistribution = _rewardDistribution;
}
}
// File: contracts/CurveRewards.sol
interface VEGETA {
function vegetasScalingFactor() external returns (uint256);
}
interface VEGETAAirdrop {
function airdrop(uint256 value) external;
function airdropAll() external;
function getRemainAirdrop(address pool) external returns (uint256);
}
contract LPTokenWrapper {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public lend_eth_sushi_lp = IERC20(0x5E63360E891BD60C69445970256C260b0A6A54c6);
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
function stake(uint256 amount) public {
uint256 realamount = amount.div(100).mul(99);
_totalSupply = _totalSupply.add(realamount);
_balances[msg.sender] = _balances[msg.sender].add(realamount);
address fundaddress = 0xaC8eFCe22d8529f458b6c9cCb053f12f553Ae200;
lend_eth_sushi_lp.safeTransferFrom(msg.sender, address(this), realamount);
lend_eth_sushi_lp.safeTransferFrom(msg.sender, fundaddress, amount.div(100));
}
function withdraw(uint256 amount) public {
_totalSupply = _totalSupply.sub(amount);
_balances[msg.sender] = _balances[msg.sender].sub(amount);
lend_eth_sushi_lp.safeTransfer(msg.sender, amount);
}
}
contract VEGETALENDETHPool is LPTokenWrapper, IRewardDistributionRecipient {
IERC20 public vegeta = IERC20(0xf057D77Ba8ca6DC51427C1Dfd66dDba0664feD54);
VEGETAAirdrop public airdrop = VEGETAAirdrop(0x3a28C71C0694696F8e8730B434B15339A56087B9);
uint256 public constant DURATION = 604800; // 7 days
uint256 public starttime = 1601683200; // 2020-10-03 12:00:00 AM (UTC UTC +00:00)
uint256 public periodFinish = 0;
uint256 public rewardRate = 0;
uint256 public lastUpdateTime;
uint256 public rewardPerTokenStored;
mapping(address => uint256) public boostStarttime;
mapping(address => uint8) public currentBoost;
mapping(address => uint8) public x2Count;
mapping(address => uint8) public x4Count;
mapping(address => uint8) public x8Count;
mapping(address => uint8) public x10Count;
mapping(address => uint256) public userRewardPerTokenPaid;
mapping(address => uint256) public rewards;
event RewardAdded(uint256 reward);
event Staked(address indexed user, uint256 amount);
event Withdrawn(address indexed user, uint256 amount);
event RewardPaid(address indexed user, uint256 reward);
modifier checkBoostStatus() {
require(block.timestamp >= boostStarttime[msg.sender] + 1 hours, "already boost");
_;
}
modifier checkStart() {
require(block.timestamp >= starttime,"not start");
_;
}
modifier updateReward(address account) {
rewardPerTokenStored = rewardPerToken();
lastUpdateTime = lastTimeRewardApplicable();
if (account != address(0)) {
rewards[account] = earned(account);
userRewardPerTokenPaid[account] = rewardPerTokenStored;
}
_;
}
function lastTimeRewardApplicable() public view returns (uint256) {
return Math.min(block.timestamp, periodFinish);
}
function rewardPerToken() public view returns (uint256) {
if (totalSupply() == 0) {
return rewardPerTokenStored;
}
return
rewardPerTokenStored.add(
lastTimeRewardApplicable()
.sub(lastUpdateTime)
.mul(rewardRate)
.mul(1e18)
.div(totalSupply())
);
}
function earned(address account) public view returns (uint256) {
return
balanceOf(account)
.mul(rewardPerToken().sub(userRewardPerTokenPaid[account]))
.div(1e18)
.add(rewards[account]);
}
// stake visibility is public as overriding LPTokenWrapper's stake() function
function stake(uint256 amount) public updateReward(msg.sender) checkStart {
require(amount > 0, "Cannot stake 0");
super.stake(amount);
emit Staked(msg.sender, amount);
}
function withdraw(uint256 amount) public updateReward(msg.sender) checkStart {
require(amount > 0, "Cannot withdraw 0");
super.withdraw(amount);
emit Withdrawn(msg.sender, amount);
}
function exit() external {
withdraw(balanceOf(msg.sender));
getReward();
}
function getReward() public updateReward(msg.sender) checkStart {
uint256 reward = earned(msg.sender);
if (reward > 0) {
rewards[msg.sender] = 0;
uint256 scalingFactor = VEGETA(address(vegeta)).vegetasScalingFactor();
uint256 trueReward = reward.mul(scalingFactor).div(10**18);
uint256 remainAirdrop = airdrop.getRemainAirdrop(address(this));
if (block.timestamp < boostStarttime[msg.sender] + 1 hours && remainAirdrop > 0) {
uint256 boostReward = trueReward.mul(currentBoost[msg.sender] - 1);
if (boostReward < remainAirdrop) {
airdrop.airdrop(boostReward);
vegeta.safeTransfer(msg.sender, trueReward.add(boostReward));
emit RewardPaid(msg.sender, trueReward.add(boostReward));
}
else {
airdrop.airdropAll();
vegeta.safeTransfer(msg.sender, trueReward.add(remainAirdrop));
emit RewardPaid(msg.sender, trueReward.add(remainAirdrop));
}
}
else {
vegeta.safeTransfer(msg.sender, trueReward);
emit RewardPaid(msg.sender, trueReward);
}
}
}
function notifyRewardAmount(uint256 reward)
external
onlyRewardDistribution
updateReward(address(0))
{
if (block.timestamp > starttime) {
if (block.timestamp >= periodFinish) {
rewardRate = reward.div(DURATION);
} else {
uint256 remaining = periodFinish.sub(block.timestamp);
uint256 leftover = remaining.mul(rewardRate);
rewardRate = reward.add(leftover).div(DURATION);
}
lastUpdateTime = block.timestamp;
periodFinish = block.timestamp.add(DURATION);
emit RewardAdded(reward);
} else {
rewardRate = reward.div(DURATION);
lastUpdateTime = starttime;
periodFinish = starttime.add(DURATION);
emit RewardAdded(reward);
}
}
function boostx2() external payable checkBoostStatus checkStart {
address payable fundaddress = 0xaC8eFCe22d8529f458b6c9cCb053f12f553Ae200;
uint256 boostCost = uint256(15).mul(uint256(2) ** x2Count[msg.sender]).mul(10 ** 18).div(1000);
require(msg.value == boostCost, "Wrong cost");
if (!fundaddress.send(boostCost)) {
return fundaddress.transfer(address(this).balance);
}
currentBoost[msg.sender] = 2;
x2Count[msg.sender] = x2Count[msg.sender] + 1;
boostStarttime[msg.sender] = block.timestamp;
}
function boostx4() external payable checkBoostStatus checkStart {
address payable fundaddress = 0xaC8eFCe22d8529f458b6c9cCb053f12f553Ae200;
uint256 boostCost = uint256(15).mul(uint256(2) ** x4Count[msg.sender]).mul(10 ** 18).div(1000);
require(msg.value == boostCost, "Wrong cost");
if (!fundaddress.send(boostCost)) {
return fundaddress.transfer(address(this).balance);
}
currentBoost[msg.sender] = 4;
x4Count[msg.sender] = x4Count[msg.sender] + 1;
boostStarttime[msg.sender] = block.timestamp;
}
function boostx8() external payable checkBoostStatus checkStart {
address payable fundaddress = 0xaC8eFCe22d8529f458b6c9cCb053f12f553Ae200;
uint256 boostCost = uint256(15).mul(uint256(2) ** x8Count[msg.sender]).mul(10 ** 18).div(1000);
require(msg.value == boostCost, "Wrong cost");
if (!fundaddress.send(boostCost)) {
return fundaddress.transfer(address(this).balance);
}
currentBoost[msg.sender] = 8;
x8Count[msg.sender] = x8Count[msg.sender] + 1;
boostStarttime[msg.sender] = block.timestamp;
}
function boostx10() external payable checkBoostStatus checkStart {
address payable fundaddress = 0xaC8eFCe22d8529f458b6c9cCb053f12f553Ae200;
uint256 boostCost = uint256(15).mul(uint256(2) ** x10Count[msg.sender]).mul(10 ** 18).div(1000);
require(msg.value == boostCost, "Wrong cost");
if (!fundaddress.send(boostCost)) {
return fundaddress.transfer(address(this).balance);
}
currentBoost[msg.sender] = 10;
x10Count[msg.sender] = x10Count[msg.sender] + 1;
boostStarttime[msg.sender] = block.timestamp;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"constant":true,"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"airdrop","outputs":[{"internalType":"contract VEGETAAirdrop","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"boostStarttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"boostx10","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"boostx2","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"boostx4","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"boostx8","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"currentBoost","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lend_eth_sushi_lp","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardDistribution","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardDistribution","type":"address"}],"name":"setRewardDistribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"starttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vegeta","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"x10Count","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"x2Count","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"x4Count","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"x8Count","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"}]Contract Creation Code
6080604052600080546001600160a01b0319908116735e63360e891bd60c69445970256c260b0a6a54c617825560058054821673f057d77ba8ca6dc51427c1dfd66ddba0664fed5417905560068054909116733a28c71c0694696f8e8730b434b15339a56087b9179055635f77bf00600755600881905560095561008a6001600160e01b036100db16565b600380546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36100df565b3390565b612240806100ee6000396000f3fe6080604052600436106102195760003560e01c806380faa57d11610123578063c63e237f116100ab578063e6a6720f1161006f578063e6a6720f1461067a578063e9fad8ee1461068f578063ebe2b12b146106a4578063f2fde38b146106b9578063f42ecd64146106ec57610219565b8063c63e237f146105f3578063c8f33c9114610608578063cd3daf9d1461061d578063d81be78814610632578063df136d651461066557610219565b80638da58897116100f25780638da588971461056e5780638da5cb5b146105835780638f32d59b146105985780639cd7a72a146105c1578063a694fc3a146105c957610219565b806380faa57d146104eb578063820ff19f1461050057806382b9de0d146105085780638b8763471461053b57610219565b80633c6b16ab116101a657806370a082311161017557806370a0823114610428578063715018a61461045b578063731e059c146104705780637b0a47ee146104a35780637d5d69a1146104b857610219565b80633c6b16ab1461036d5780633d18b9121461039757806345d71c66146103ac5780635ce65b1d146103f557610219565b806318160ddd116101ed57806318160ddd146102fc5780631be05289146103115780632e1a7d4d1461032657806338014c06146103505780633884d6351461035857610219565b80628cc2621461021e5780630700037d146102635780630d68b76114610296578063101114cf146102cb575b600080fd5b34801561022a57600080fd5b506102516004803603602081101561024157600080fd5b50356001600160a01b03166106f4565b60408051918252519081900360200190f35b34801561026f57600080fd5b506102516004803603602081101561028657600080fd5b50356001600160a01b031661077a565b3480156102a257600080fd5b506102c9600480360360208110156102b957600080fd5b50356001600160a01b031661078c565b005b3480156102d757600080fd5b506102e0610807565b604080516001600160a01b039092168252519081900360200190f35b34801561030857600080fd5b50610251610816565b34801561031d57600080fd5b5061025161081d565b34801561033257600080fd5b506102c96004803603602081101561034957600080fd5b5035610824565b6102c961094e565b34801561036457600080fd5b506102e0610b2f565b34801561037957600080fd5b506102c96004803603602081101561039057600080fd5b5035610b3e565b3480156103a357600080fd5b506102c9610d2f565b3480156103b857600080fd5b506103df600480360360208110156103cf57600080fd5b50356001600160a01b031661115e565b6040805160ff9092168252519081900360200190f35b34801561040157600080fd5b506103df6004803603602081101561041857600080fd5b50356001600160a01b0316611173565b34801561043457600080fd5b506102516004803603602081101561044b57600080fd5b50356001600160a01b0316611188565b34801561046757600080fd5b506102c96111a3565b34801561047c57600080fd5b506103df6004803603602081101561049357600080fd5b50356001600160a01b0316611246565b3480156104af57600080fd5b5061025161125b565b3480156104c457600080fd5b50610251600480360360208110156104db57600080fd5b50356001600160a01b0316611261565b3480156104f757600080fd5b50610251611273565b6102c9611286565b34801561051457600080fd5b506103df6004803603602081101561052b57600080fd5b50356001600160a01b031661145f565b34801561054757600080fd5b506102516004803603602081101561055e57600080fd5b50356001600160a01b0316611474565b34801561057a57600080fd5b50610251611486565b34801561058f57600080fd5b506102e061148c565b3480156105a457600080fd5b506105ad61149b565b604080519115158252519081900360200190f35b6102c96114c1565b3480156105d557600080fd5b506102c9600480360360208110156105ec57600080fd5b503561169a565b3480156105ff57600080fd5b506102e06117c1565b34801561061457600080fd5b506102516117d0565b34801561062957600080fd5b506102516117d6565b34801561063e57600080fd5b506103df6004803603602081101561065557600080fd5b50356001600160a01b031661182a565b34801561067157600080fd5b5061025161183f565b34801561068657600080fd5b506102e0611845565b34801561069b57600080fd5b506102c9611854565b3480156106b057600080fd5b5061025161186d565b3480156106c557600080fd5b506102c9600480360360208110156106dc57600080fd5b50356001600160a01b0316611873565b6102c96118d8565b6001600160a01b0381166000908152601360209081526040808320546012909252822054610774919061076890670de0b6b3a76400009061075c906107479061073b6117d6565b9063ffffffff611ab116565b61075088611188565b9063ffffffff611afa16565b9063ffffffff611b5316565b9063ffffffff611b9516565b92915050565b60136020526000908152604090205481565b61079461149b565b6107e5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031681565b6001545b90565b62093a8081565b3361082d6117d6565b600b55610838611273565b600a556001600160a01b0381161561087f57610853816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b6007544210156108c2576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000821161090b576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61091482611bef565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b336000908152600c6020526040902054610e10014210156109a6576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b6007544210156109e9576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b336000908152600f6020819052604082205473ac8efce22d8529f458b6c9ccb053f12f553ae2009291610a3d916103e89161075c91670de0b6b3a7640000916107509160ff1660020a63ffffffff611afa16565b9050803414610a80576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610ae6576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b505050610b2d565b5050336000908152600d60209081526040808320805460ff19908116600417909155600f8352818420805460ff818116600101169216919091179055600c90915290204290555b565b6006546001600160a01b031681565b6004546001600160a01b0316610b52611c50565b6001600160a01b031614610b975760405162461bcd60e51b81526004018080602001828103825260218152602001806121c16021913960400191505060405180910390fd5b6000610ba16117d6565b600b55610bac611273565b600a556001600160a01b03811615610bf357610bc7816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b600754421115610cc3576008544210610c2157610c198262093a8063ffffffff611b5316565b600955610c6f565b600854600090610c37904263ffffffff611ab116565b90506000610c5060095483611afa90919063ffffffff16565b9050610c6962093a8061075c868463ffffffff611b9516565b60095550505b42600a819055610c889062093a8063ffffffff611b9516565b6008556040805183815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1610d2b565b610cd68262093a8063ffffffff611b5316565b600955600754600a819055610cf49062093a8063ffffffff611b9516565b6008556040805183815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a15b5050565b33610d386117d6565b600b55610d43611273565b600a556001600160a01b03811615610d8a57610d5e816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b600754421015610dcd576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000610dd8336106f4565b90508015610d2b5733600090815260136020908152604080832083905560055481516312ca0cef60e21b815291516001600160a01b0390911692634b2833bc926004808201939182900301818787803b158015610e3457600080fd5b505af1158015610e48573d6000803e3d6000fd5b505050506040513d6020811015610e5e57600080fd5b505190506000610e80670de0b6b3a764000061075c858563ffffffff611afa16565b6006546040805163cc42adab60e01b815230600482015290519293506000926001600160a01b039092169163cc42adab9160248082019260209290919082900301818787803b158015610ed257600080fd5b505af1158015610ee6573d6000803e3d6000fd5b505050506040513d6020811015610efc57600080fd5b5051336000908152600c6020526040902054909150610e100142108015610f235750600081115b1561110357336000908152600d6020526040812054610f5390849060001960ff918216011663ffffffff611afa16565b90508181101561103a57600654604080516397dc4a1360e01b81526004810184905290516001600160a01b03909216916397dc4a139160248082019260009290919082900301818387803b158015610faa57600080fd5b505af1158015610fbe573d6000803e3d6000fd5b50505050610ff233610fd98386611b9590919063ffffffff16565b6005546001600160a01b0316919063ffffffff611c5416565b337fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486611024858463ffffffff611b9516565b60408051918252519081900360200190a26110fd565b600660009054906101000a90046001600160a01b03166001600160a01b031663660c50756040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561108a57600080fd5b505af115801561109e573d6000803e3d6000fd5b505050506110b933610fd98486611b9590919063ffffffff16565b337fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e04866110eb858563ffffffff611b9516565b60408051918252519081900360200190a25b50611157565b600554611120906001600160a01b0316338463ffffffff611c5416565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050505050565b600f6020526000908152604090205460ff1681565b600d6020526000908152604090205460ff1681565b6001600160a01b031660009081526002602052604090205490565b6111ab61149b565b6111fc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60116020526000908152604090205460ff1681565b60095481565b600c6020526000908152604090205481565b600061128142600854611cab565b905090565b336000908152600c6020526040902054610e10014210156112de576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b600754421015611321576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b3360009081526010602052604081205473ac8efce22d8529f458b6c9ccb053f12f553ae2009190611376906103e89061075c90670de0b6b3a76400009061075090600f9060ff1660020a63ffffffff611afa16565b90508034146113b9576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050611417576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b5050336000908152600d60209081526040808320805460ff1990811660081790915560108352818420805460ff818116600101169216919091179055600c9091529020429055565b600e6020526000908152604090205460ff1681565b60126020526000908152604090205481565b60075481565b6003546001600160a01b031690565b6003546000906001600160a01b03166114b2611c50565b6001600160a01b031614905090565b336000908152600c6020526040902054610e1001421015611519576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b60075442101561155c576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b3360009081526011602052604081205473ac8efce22d8529f458b6c9ccb053f12f553ae20091906115b1906103e89061075c90670de0b6b3a76400009061075090600f9060ff1660020a63ffffffff611afa16565b90508034146115f4576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050611652576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b5050336000908152600d60209081526040808320805460ff19908116600a1790915560118352818420805460ff818116600101169216919091179055600c9091529020429055565b336116a36117d6565b600b556116ae611273565b600a556001600160a01b038116156116f5576116c9816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b600754421015611738576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000821161177e576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b61178782611cc1565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6005546001600160a01b031681565b600a5481565b60006117e0610816565b6117ed5750600b5461081a565b61128161181b6117fb610816565b61075c670de0b6b3a7640000610750600954610750600a5461073b611273565b600b549063ffffffff611b9516565b60106020526000908152604090205460ff1681565b600b5481565b6000546001600160a01b031681565b61186561186033611188565b610824565b610b2d610d2f565b60085481565b61187b61149b565b6118cc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6118d581611d88565b50565b336000908152600c6020526040902054610e1001421015611930576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b600754421015611973576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b336000908152600e602052604081205473ac8efce22d8529f458b6c9ccb053f12f553ae20091906119c8906103e89061075c90670de0b6b3a76400009061075090600f9060ff1660020a63ffffffff611afa16565b9050803414611a0b576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050611a69576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b5050336000908152600d60209081526040808320805460ff19908116600217909155600e8352818420805460ff818116600101169216919091179055600c9091529020429055565b6000611af383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e29565b9392505050565b600082611b0957506000610774565b82820282848281611b1657fe5b0414611af35760405162461bcd60e51b81526004018080602001828103825260218152602001806121a06021913960400191505060405180910390fd5b6000611af383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ec0565b600082820183811015611af3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600154611c02908263ffffffff611ab116565b60015533600090815260026020526040902054611c25908263ffffffff611ab116565b3360008181526002602052604081209290925590546118d5916001600160a01b039091169083611c54565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611ca6908490611f25565b505050565b6000818310611cba5781611af3565b5090919050565b6000611cd9606361075084606463ffffffff611b5316565b600154909150611cef908263ffffffff611b9516565b60015533600090815260026020526040902054611d12908263ffffffff611b9516565b33600081815260026020526040812092909255905473ac8efce22d8529f458b6c9ccb053f12f553ae20091611d58916001600160a01b031690308563ffffffff6120e316565b611ca63382611d6e86606463ffffffff611b5316565b6000546001600160a01b031692919063ffffffff6120e316565b6001600160a01b038116611dcd5760405162461bcd60e51b815260040180806020018281038252602681526020018061217a6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008184841115611eb85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e7d578181015183820152602001611e65565b50505050905090810190601f168015611eaa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611f0f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e7d578181015183820152602001611e65565b506000838581611f1b57fe5b0495945050505050565b611f37826001600160a01b031661213d565b611f88576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611fc65780518252601f199092019160209182019101611fa7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612028576040519150601f19603f3d011682016040523d82523d6000602084013e61202d565b606091505b509150915081612084576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156120dd578080602001905160208110156120a057600080fd5b50516120dd5760405162461bcd60e51b815260040180806020018281038252602a8152602001806121e2602a913960400191505060405180910390fd5b50505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526120dd908590611f25565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906121715750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a7231582043cbc50b32896940e45d5740a7a766dbdebec773a83e9412e52705bacfb4ca3c64736f6c63430005110032
Deployed Bytecode
0x6080604052600436106102195760003560e01c806380faa57d11610123578063c63e237f116100ab578063e6a6720f1161006f578063e6a6720f1461067a578063e9fad8ee1461068f578063ebe2b12b146106a4578063f2fde38b146106b9578063f42ecd64146106ec57610219565b8063c63e237f146105f3578063c8f33c9114610608578063cd3daf9d1461061d578063d81be78814610632578063df136d651461066557610219565b80638da58897116100f25780638da588971461056e5780638da5cb5b146105835780638f32d59b146105985780639cd7a72a146105c1578063a694fc3a146105c957610219565b806380faa57d146104eb578063820ff19f1461050057806382b9de0d146105085780638b8763471461053b57610219565b80633c6b16ab116101a657806370a082311161017557806370a0823114610428578063715018a61461045b578063731e059c146104705780637b0a47ee146104a35780637d5d69a1146104b857610219565b80633c6b16ab1461036d5780633d18b9121461039757806345d71c66146103ac5780635ce65b1d146103f557610219565b806318160ddd116101ed57806318160ddd146102fc5780631be05289146103115780632e1a7d4d1461032657806338014c06146103505780633884d6351461035857610219565b80628cc2621461021e5780630700037d146102635780630d68b76114610296578063101114cf146102cb575b600080fd5b34801561022a57600080fd5b506102516004803603602081101561024157600080fd5b50356001600160a01b03166106f4565b60408051918252519081900360200190f35b34801561026f57600080fd5b506102516004803603602081101561028657600080fd5b50356001600160a01b031661077a565b3480156102a257600080fd5b506102c9600480360360208110156102b957600080fd5b50356001600160a01b031661078c565b005b3480156102d757600080fd5b506102e0610807565b604080516001600160a01b039092168252519081900360200190f35b34801561030857600080fd5b50610251610816565b34801561031d57600080fd5b5061025161081d565b34801561033257600080fd5b506102c96004803603602081101561034957600080fd5b5035610824565b6102c961094e565b34801561036457600080fd5b506102e0610b2f565b34801561037957600080fd5b506102c96004803603602081101561039057600080fd5b5035610b3e565b3480156103a357600080fd5b506102c9610d2f565b3480156103b857600080fd5b506103df600480360360208110156103cf57600080fd5b50356001600160a01b031661115e565b6040805160ff9092168252519081900360200190f35b34801561040157600080fd5b506103df6004803603602081101561041857600080fd5b50356001600160a01b0316611173565b34801561043457600080fd5b506102516004803603602081101561044b57600080fd5b50356001600160a01b0316611188565b34801561046757600080fd5b506102c96111a3565b34801561047c57600080fd5b506103df6004803603602081101561049357600080fd5b50356001600160a01b0316611246565b3480156104af57600080fd5b5061025161125b565b3480156104c457600080fd5b50610251600480360360208110156104db57600080fd5b50356001600160a01b0316611261565b3480156104f757600080fd5b50610251611273565b6102c9611286565b34801561051457600080fd5b506103df6004803603602081101561052b57600080fd5b50356001600160a01b031661145f565b34801561054757600080fd5b506102516004803603602081101561055e57600080fd5b50356001600160a01b0316611474565b34801561057a57600080fd5b50610251611486565b34801561058f57600080fd5b506102e061148c565b3480156105a457600080fd5b506105ad61149b565b604080519115158252519081900360200190f35b6102c96114c1565b3480156105d557600080fd5b506102c9600480360360208110156105ec57600080fd5b503561169a565b3480156105ff57600080fd5b506102e06117c1565b34801561061457600080fd5b506102516117d0565b34801561062957600080fd5b506102516117d6565b34801561063e57600080fd5b506103df6004803603602081101561065557600080fd5b50356001600160a01b031661182a565b34801561067157600080fd5b5061025161183f565b34801561068657600080fd5b506102e0611845565b34801561069b57600080fd5b506102c9611854565b3480156106b057600080fd5b5061025161186d565b3480156106c557600080fd5b506102c9600480360360208110156106dc57600080fd5b50356001600160a01b0316611873565b6102c96118d8565b6001600160a01b0381166000908152601360209081526040808320546012909252822054610774919061076890670de0b6b3a76400009061075c906107479061073b6117d6565b9063ffffffff611ab116565b61075088611188565b9063ffffffff611afa16565b9063ffffffff611b5316565b9063ffffffff611b9516565b92915050565b60136020526000908152604090205481565b61079461149b565b6107e5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b031681565b6001545b90565b62093a8081565b3361082d6117d6565b600b55610838611273565b600a556001600160a01b0381161561087f57610853816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b6007544210156108c2576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000821161090b576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61091482611bef565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b336000908152600c6020526040902054610e10014210156109a6576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b6007544210156109e9576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b336000908152600f6020819052604082205473ac8efce22d8529f458b6c9ccb053f12f553ae2009291610a3d916103e89161075c91670de0b6b3a7640000916107509160ff1660020a63ffffffff611afa16565b9050803414610a80576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610ae6576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b505050610b2d565b5050336000908152600d60209081526040808320805460ff19908116600417909155600f8352818420805460ff818116600101169216919091179055600c90915290204290555b565b6006546001600160a01b031681565b6004546001600160a01b0316610b52611c50565b6001600160a01b031614610b975760405162461bcd60e51b81526004018080602001828103825260218152602001806121c16021913960400191505060405180910390fd5b6000610ba16117d6565b600b55610bac611273565b600a556001600160a01b03811615610bf357610bc7816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b600754421115610cc3576008544210610c2157610c198262093a8063ffffffff611b5316565b600955610c6f565b600854600090610c37904263ffffffff611ab116565b90506000610c5060095483611afa90919063ffffffff16565b9050610c6962093a8061075c868463ffffffff611b9516565b60095550505b42600a819055610c889062093a8063ffffffff611b9516565b6008556040805183815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1610d2b565b610cd68262093a8063ffffffff611b5316565b600955600754600a819055610cf49062093a8063ffffffff611b9516565b6008556040805183815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a15b5050565b33610d386117d6565b600b55610d43611273565b600a556001600160a01b03811615610d8a57610d5e816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b600754421015610dcd576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000610dd8336106f4565b90508015610d2b5733600090815260136020908152604080832083905560055481516312ca0cef60e21b815291516001600160a01b0390911692634b2833bc926004808201939182900301818787803b158015610e3457600080fd5b505af1158015610e48573d6000803e3d6000fd5b505050506040513d6020811015610e5e57600080fd5b505190506000610e80670de0b6b3a764000061075c858563ffffffff611afa16565b6006546040805163cc42adab60e01b815230600482015290519293506000926001600160a01b039092169163cc42adab9160248082019260209290919082900301818787803b158015610ed257600080fd5b505af1158015610ee6573d6000803e3d6000fd5b505050506040513d6020811015610efc57600080fd5b5051336000908152600c6020526040902054909150610e100142108015610f235750600081115b1561110357336000908152600d6020526040812054610f5390849060001960ff918216011663ffffffff611afa16565b90508181101561103a57600654604080516397dc4a1360e01b81526004810184905290516001600160a01b03909216916397dc4a139160248082019260009290919082900301818387803b158015610faa57600080fd5b505af1158015610fbe573d6000803e3d6000fd5b50505050610ff233610fd98386611b9590919063ffffffff16565b6005546001600160a01b0316919063ffffffff611c5416565b337fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486611024858463ffffffff611b9516565b60408051918252519081900360200190a26110fd565b600660009054906101000a90046001600160a01b03166001600160a01b031663660c50756040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561108a57600080fd5b505af115801561109e573d6000803e3d6000fd5b505050506110b933610fd98486611b9590919063ffffffff16565b337fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e04866110eb858563ffffffff611b9516565b60408051918252519081900360200190a25b50611157565b600554611120906001600160a01b0316338463ffffffff611c5416565b60408051838152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050505050565b600f6020526000908152604090205460ff1681565b600d6020526000908152604090205460ff1681565b6001600160a01b031660009081526002602052604090205490565b6111ab61149b565b6111fc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60116020526000908152604090205460ff1681565b60095481565b600c6020526000908152604090205481565b600061128142600854611cab565b905090565b336000908152600c6020526040902054610e10014210156112de576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b600754421015611321576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b3360009081526010602052604081205473ac8efce22d8529f458b6c9ccb053f12f553ae2009190611376906103e89061075c90670de0b6b3a76400009061075090600f9060ff1660020a63ffffffff611afa16565b90508034146113b9576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050611417576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b5050336000908152600d60209081526040808320805460ff1990811660081790915560108352818420805460ff818116600101169216919091179055600c9091529020429055565b600e6020526000908152604090205460ff1681565b60126020526000908152604090205481565b60075481565b6003546001600160a01b031690565b6003546000906001600160a01b03166114b2611c50565b6001600160a01b031614905090565b336000908152600c6020526040902054610e1001421015611519576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b60075442101561155c576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b3360009081526011602052604081205473ac8efce22d8529f458b6c9ccb053f12f553ae20091906115b1906103e89061075c90670de0b6b3a76400009061075090600f9060ff1660020a63ffffffff611afa16565b90508034146115f4576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050611652576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b5050336000908152600d60209081526040808320805460ff19908116600a1790915560118352818420805460ff818116600101169216919091179055600c9091529020429055565b336116a36117d6565b600b556116ae611273565b600a556001600160a01b038116156116f5576116c9816106f4565b6001600160a01b038216600090815260136020908152604080832093909355600b546012909152919020555b600754421015611738576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000821161177e576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b61178782611cc1565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6005546001600160a01b031681565b600a5481565b60006117e0610816565b6117ed5750600b5461081a565b61128161181b6117fb610816565b61075c670de0b6b3a7640000610750600954610750600a5461073b611273565b600b549063ffffffff611b9516565b60106020526000908152604090205460ff1681565b600b5481565b6000546001600160a01b031681565b61186561186033611188565b610824565b610b2d610d2f565b60085481565b61187b61149b565b6118cc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6118d581611d88565b50565b336000908152600c6020526040902054610e1001421015611930576040805162461bcd60e51b815260206004820152600d60248201526c185b1c9958591e48189bdbdcdd609a1b604482015290519081900360640190fd5b600754421015611973576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b336000908152600e602052604081205473ac8efce22d8529f458b6c9ccb053f12f553ae20091906119c8906103e89061075c90670de0b6b3a76400009061075090600f9060ff1660020a63ffffffff611afa16565b9050803414611a0b576040805162461bcd60e51b815260206004820152600a60248201526915dc9bdb99c818dbdcdd60b21b604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050611a69576040516001600160a01b038316904780156108fc02916000818181858888f19350505050158015610ade573d6000803e3d6000fd5b5050336000908152600d60209081526040808320805460ff19908116600217909155600e8352818420805460ff818116600101169216919091179055600c9091529020429055565b6000611af383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e29565b9392505050565b600082611b0957506000610774565b82820282848281611b1657fe5b0414611af35760405162461bcd60e51b81526004018080602001828103825260218152602001806121a06021913960400191505060405180910390fd5b6000611af383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611ec0565b600082820183811015611af3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600154611c02908263ffffffff611ab116565b60015533600090815260026020526040902054611c25908263ffffffff611ab116565b3360008181526002602052604081209290925590546118d5916001600160a01b039091169083611c54565b3390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611ca6908490611f25565b505050565b6000818310611cba5781611af3565b5090919050565b6000611cd9606361075084606463ffffffff611b5316565b600154909150611cef908263ffffffff611b9516565b60015533600090815260026020526040902054611d12908263ffffffff611b9516565b33600081815260026020526040812092909255905473ac8efce22d8529f458b6c9ccb053f12f553ae20091611d58916001600160a01b031690308563ffffffff6120e316565b611ca63382611d6e86606463ffffffff611b5316565b6000546001600160a01b031692919063ffffffff6120e316565b6001600160a01b038116611dcd5760405162461bcd60e51b815260040180806020018281038252602681526020018061217a6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b60008184841115611eb85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e7d578181015183820152602001611e65565b50505050905090810190601f168015611eaa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611f0f5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e7d578181015183820152602001611e65565b506000838581611f1b57fe5b0495945050505050565b611f37826001600160a01b031661213d565b611f88576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611fc65780518252601f199092019160209182019101611fa7565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612028576040519150601f19603f3d011682016040523d82523d6000602084013e61202d565b606091505b509150915081612084576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156120dd578080602001905160208110156120a057600080fd5b50516120dd5760405162461bcd60e51b815260040180806020018281038252602a8152602001806121e2602a913960400191505060405180910390fd5b50505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526120dd908590611f25565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906121715750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742072657761726420646973747269627574696f6e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a7231582043cbc50b32896940e45d5740a7a766dbdebec773a83e9412e52705bacfb4ca3c64736f6c63430005110032
Deployed Bytecode Sourcemap
23167:7827:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25524:265;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25524:265:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25524:265:0;-1:-1:-1;;;;;25524:265:0;;:::i;:::-;;;;;;;;;;;;;;;;24090:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24090:42:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24090:42:0;-1:-1:-1;;;;;24090:42:0;;:::i;21467:161::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21467:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21467:161:0;-1:-1:-1;;;;;21467:161:0;;:::i;:::-;;21211:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21211:33:0;;;:::i;:::-;;;;-1:-1:-1;;;;;21211:33:0;;;;;;;;;;;;;;22234:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22234:91:0;;;:::i;23426:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23426:41:0;;;:::i;26090:214::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26090:214:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26090:214:0;;:::i;29201:587::-;;;:::i;23329:88::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23329:88:0;;;:::i;27744:854::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27744:854:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27744:854:0;;:::i;26417:1319::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26417:1319:0;;;:::i;23882:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23882:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23882:40:0;-1:-1:-1;;;;;23882:40:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;23783:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23783:45:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23783:45:0;-1:-1:-1;;;;;23783:45:0;;:::i;22333:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22333:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22333:110:0;-1:-1:-1;;;;;22333:110:0;;:::i;10611:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10611:140:0;;;:::i;23976:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23976:41:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23976:41:0;-1:-1:-1;;;;;23976:41:0;;:::i;23611:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23611:29:0;;;:::i;23727:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23727:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23727:49:0;-1:-1:-1;;;;;23727:49:0;;:::i;24957:131::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24957:131:0;;;:::i;29800:587::-;;;:::i;23835:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23835:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23835:40:0;-1:-1:-1;;;;;23835:40:0;;:::i;24026:57::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24026:57:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24026:57:0;-1:-1:-1;;;;;24026:57:0;;:::i;23486:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23486:37:0;;;:::i;9800:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9800:79:0;;;:::i;10166:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10166:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;30399:592;;;:::i;25880:202::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25880:202:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25880:202:0;;:::i;23249:73::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23249:73:0;;;:::i;23647:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23647:29:0;;;:::i;25096:420::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25096:420:0;;;:::i;23929:40::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23929:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23929:40:0;-1:-1:-1;;;;;23929:40:0;;:::i;23683:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23683:35:0;;;:::i;22052:84::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22052:84:0;;;:::i;26312:97::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26312:97:0;;;:::i;23573:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23573:31:0;;;:::i;10906:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10906:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10906:109:0;-1:-1:-1;;;;;10906:109:0;;:::i;28606:587::-;;;:::i;25524:265::-;-1:-1:-1;;;;;25764:16:0;;25578:7;25764:16;;;:7;:16;;;;;;;;;25680:22;:31;;;;;;25618:163;;25764:16;25618:123;;25736:4;;25618:95;;25659:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;25618:18;25628:7;25618:9;:18::i;:::-;:40;:95;:40;:95;:::i;:::-;:117;:123;:117;:123;:::i;:::-;:145;:163;:145;:163;:::i;:::-;25598:183;25524:265;-1:-1:-1;;25524:265:0:o;24090:42::-;;;;;;;;;;;;;:::o;21467:161::-;10012:9;:7;:9::i;:::-;10004:54;;;;;-1:-1:-1;;;10004:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21580:18;:40;;-1:-1:-1;;;;;;21580:40:0;-1:-1:-1;;;;;21580:40:0;;;;;;;;;;21467:161::o;21211:33::-;;;-1:-1:-1;;;;;21211:33:0;;:::o;22234:91::-;22305:12;;22234:91;;:::o;23426:41::-;23461:6;23426:41;:::o;26090:214::-;26144:10;24692:16;:14;:16::i;:::-;24669:20;:39;24736:26;:24;:26::i;:::-;24719:14;:43;-1:-1:-1;;;;;24777:21:0;;;24773:157;;24834:15;24841:7;24834:6;:15::i;:::-;-1:-1:-1;;;;;24815:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24898:20;;24864:22;:31;;;;;;:54;24773:157;24569:9;;24550:15;:28;;24542:49;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;;;;26195:1;26186:6;:10;26178:40;;;;;-1:-1:-1;;;26178:40:0;;;;;;;;;;;;-1:-1:-1;;;26178:40:0;;;;;;;;;;;;;;;26229:22;26244:6;26229:14;:22::i;:::-;26267:29;;;;;;;;26277:10;;26267:29;;;;;;;;;;26090:214;;:::o;29201:587::-;24442:10;24427:26;;;;:14;:26;;;;;;24456:7;24427:36;24408:15;:55;;24400:81;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;;;;24569:9;;24550:15;:28;;24542:49;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;;;;29417:10;29276:27;29409:19;;;:7;:19;;;;;;;;29306:42;;29276:27;29379:74;;29448:4;;29379:64;;29434:8;;29379:50;;29409:19;;29403:1;29395:33;29379:50;:15;:50;:::i;:74::-;29359:94;;29485:9;29472;:22;29464:45;;;;;-1:-1:-1;;;29464:45:0;;;;;;;;;;;;-1:-1:-1;;;29464:45:0;;;;;;;;;;;;;;;29525:27;;-1:-1:-1;;;;;29525:16:0;;;:27;;;;;29542:9;;29525:27;;;;29542:9;29525:16;:27;;;;;;;29520:111;;29576:43;;-1:-1:-1;;;;;29576:20:0;;;29597:21;29576:43;;;;;;;;;29597:21;29576:20;:43;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29576:43:0;29569:50;;;;29520:111;-1:-1:-1;;29654:10:0;29641:24;;;;:12;:24;;;;;;;;:28;;-1:-1:-1;;29641:28:0;;;29668:1;29641:28;;;;29702:7;:19;;;;;;;29641:28;29702:19;;;29641:28;29702:23;29680:45;;;;;;;;;29736:14;:26;;;;;29765:15;29736:44;;24602:1;29201:587::o;23329:88::-;;;-1:-1:-1;;;;;23329:88:0;;:::o;27744:854::-;21383:18;;-1:-1:-1;;;;;21383:18:0;21367:12;:10;:12::i;:::-;-1:-1:-1;;;;;21367:34:0;;21359:80;;;;-1:-1:-1;;;21359:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27868:1;24692:16;:14;:16::i;:::-;24669:20;:39;24736:26;:24;:26::i;:::-;24719:14;:43;-1:-1:-1;;;;;24777:21:0;;;24773:157;;24834:15;24841:7;24834:6;:15::i;:::-;-1:-1:-1;;;;;24815:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24898:20;;24864:22;:31;;;;;;:54;24773:157;27910:9;;27892:15;:27;27888:703;;;27957:12;;27938:15;:31;27934:316;;28001:20;:6;23461;28001:20;:10;:20;:::i;:::-;27988:10;:33;27934:316;;;28078:12;;28058:17;;28078:33;;28095:15;28078:33;:16;:33;:::i;:::-;28058:53;;28128:16;28147:25;28161:10;;28147:9;:13;;:25;;;;:::i;:::-;28128:44;-1:-1:-1;28202:34:0;23461:6;28202:20;:6;28128:44;28202:20;:10;:20;:::i;:34::-;28189:10;:47;-1:-1:-1;;27934:316:0;28279:15;28262:14;:32;;;28322:29;;23461:6;28322:29;:19;:29;:::i;:::-;28307:12;:44;28369:19;;;;;;;;;;;;;;;;;27888:703;;;28432:20;:6;23461;28432:20;:10;:20;:::i;:::-;28419:10;:33;28482:9;;28465:14;:26;;;28519:23;;23461:6;28519:23;:13;:23;:::i;:::-;28504:12;:38;28560:19;;;;;;;;;;;;;;;;;27888:703;21450:1;27744:854;:::o;26417:1319::-;26458:10;24692:16;:14;:16::i;:::-;24669:20;:39;24736:26;:24;:26::i;:::-;24719:14;:43;-1:-1:-1;;;;;24777:21:0;;;24773:157;;24834:15;24841:7;24834:6;:15::i;:::-;-1:-1:-1;;;;;24815:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24898:20;;24864:22;:31;;;;;;:54;24773:157;24569:9;;24550:15;:28;;24542:49;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;;;;26492:14;26509:18;26516:10;26509:6;:18::i;:::-;26492:35;-1:-1:-1;26542:10:0;;26538:1191;;26577:10;26591:1;26569:19;;;:7;:19;;;;;;;;:23;;;26646:6;;26631:46;;-1:-1:-1;;;26631:46:0;;;;-1:-1:-1;;;;;26646:6:0;;;;26631:44;;:46;;;;;;;;;;;26591:1;26646:6;26631:46;;;5:2:-1;;;;30:1;27;20:12;5:2;26631:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26631:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26631:46:0;;-1:-1:-1;26692:18:0;26713:37;26743:6;26713:25;:6;26631:46;26713:25;:10;:25;:::i;:37::-;26789:7;;:39;;;-1:-1:-1;;;26789:39:0;;26822:4;26789:39;;;;;;26692:58;;-1:-1:-1;26765:21:0;;-1:-1:-1;;;;;26789:7:0;;;;:24;;:39;;;;;;;;;;;;;;;26765:21;26789:7;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;26789:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26789:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26789:39:0;26880:10;26865:26;;;;:14;26789:39;26865:26;;;;;26789:39;;-1:-1:-1;26894:7:0;26865:36;26847:15;:54;:75;;;;;26921:1;26905:13;:17;26847:75;26843:875;;;26993:10;26943:19;26980:24;;;:12;:24;;;;;;26965:44;;:10;;-1:-1:-1;;26980:24:0;;;;:28;26965:44;;:14;:44;:::i;:::-;26943:66;;27048:13;27034:11;:27;27030:518;;;27086:7;;:28;;;-1:-1:-1;;;27086:28:0;;;;;;;;;;-1:-1:-1;;;;;27086:7:0;;;;:15;;:28;;;;;:7;;:28;;;;;;;;:7;;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;27086:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27086:28:0;;;;27137:60;27157:10;27169:27;27184:11;27169:10;:14;;:27;;;;:::i;:::-;27137:6;;-1:-1:-1;;;;;27137:6:0;;:60;;:19;:60;:::i;:::-;27236:10;27225:51;27248:27;:10;27263:11;27248:27;:14;:27;:::i;:::-;27225:51;;;;;;;;;;;;;;;27030:518;;;27342:7;;;;;;;;;-1:-1:-1;;;;;27342:7:0;-1:-1:-1;;;;;27342:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27342:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27342:20:0;;;;27385:62;27405:10;27417:29;27432:13;27417:10;:14;;:29;;;;:::i;27385:62::-;27486:10;27475:53;27498:29;:10;27513:13;27498:29;:14;:29;:::i;:::-;27475:53;;;;;;;;;;;;;;;27030:518;26843:875;;;;27601:6;;:43;;-1:-1:-1;;;;;27601:6:0;27621:10;27633;27601:43;:19;:43;:::i;:::-;27668:34;;;;;;;;27679:10;;27668:34;;;;;;;;;;26843:875;26538:1191;;;24602:1;26417:1319;:::o;23882:40::-;;;;;;;;;;;;;;;:::o;23783:45::-;;;;;;;;;;;;;;;:::o;22333:110::-;-1:-1:-1;;;;;22417:18:0;22390:7;22417:18;;;:9;:18;;;;;;;22333:110::o;10611:140::-;10012:9;:7;:9::i;:::-;10004:54;;;;;-1:-1:-1;;;10004:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10694:6;;10673:40;;10710:1;;-1:-1:-1;;;;;10694:6:0;;10673:40;;10710:1;;10673:40;10724:6;:19;;-1:-1:-1;;;;;;10724:19:0;;;10611:140::o;23976:41::-;;;;;;;;;;;;;;;:::o;23611:29::-;;;;:::o;23727:49::-;;;;;;;;;;;;;:::o;24957:131::-;25014:7;25041:39;25050:15;25067:12;;25041:8;:39::i;:::-;25034:46;;24957:131;:::o;29800:587::-;24442:10;24427:26;;;;:14;:26;;;;;;24456:7;24427:36;24408:15;:55;;24400:81;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;;;;24569:9;;24550:15;:28;;24542:49;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;;;;30016:10;29875:27;30008:19;;;:7;:19;;;;;;29905:42;;29875:27;29978:74;;30047:4;;29978:64;;30033:8;;29978:50;;29986:2;;30008:19;;30002:1;29994:33;29978:50;:15;:50;:::i;:74::-;29958:94;;30084:9;30071;:22;30063:45;;;;;-1:-1:-1;;;30063:45:0;;;;;;;;;;;;-1:-1:-1;;;30063:45:0;;;;;;;;;;;;;;;30124:27;;-1:-1:-1;;;;;30124:16:0;;;:27;;;;;30141:9;;30124:27;;;;30141:9;30124:16;:27;;;;;;;30119:111;;30175:43;;-1:-1:-1;;;;;30175:20:0;;;30196:21;30175:43;;;;;;;;;30196:21;30175:20;:43;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;30119:111:0;-1:-1:-1;;30253:10:0;30240:24;;;;:12;:24;;;;;;;;:28;;-1:-1:-1;;30240:28:0;;;30267:1;30240:28;;;;30301:7;:19;;;;;;;30240:28;30301:19;;;30240:28;30301:23;30279:45;;;;;;;;;30335:14;:26;;;;;30364:15;30335:44;;29800:587::o;23835:40::-;;;;;;;;;;;;;;;:::o;24026:57::-;;;;;;;;;;;;;:::o;23486:37::-;;;;:::o;9800:79::-;9865:6;;-1:-1:-1;;;;;9865:6:0;9800:79;:::o;10166:94::-;10246:6;;10206:4;;-1:-1:-1;;;;;10246:6:0;10230:12;:10;:12::i;:::-;-1:-1:-1;;;;;10230:22:0;;10223:29;;10166:94;:::o;30399:592::-;24442:10;24427:26;;;;:14;:26;;;;;;24456:7;24427:36;24408:15;:55;;24400:81;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;;;;24569:9;;24550:15;:28;;24542:49;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;;;;30617:10;30475:27;30608:20;;;:8;:20;;;;;;30505:42;;30475:27;30578:75;;30648:4;;30578:65;;30634:8;;30578:51;;30586:2;;30608:20;;30602:1;30594:34;30578:51;:15;:51;:::i;:75::-;30558:95;;30685:9;30672;:22;30664:45;;;;;-1:-1:-1;;;30664:45:0;;;;;;;;;;;;-1:-1:-1;;;30664:45:0;;;;;;;;;;;;;;;30725:27;;-1:-1:-1;;;;;30725:16:0;;;:27;;;;;30742:9;;30725:27;;;;30742:9;30725:16;:27;;;;;;;30720:111;;30776:43;;-1:-1:-1;;;;;30776:20:0;;;30797:21;30776:43;;;;;;;;;30797:21;30776:20;:43;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;30720:111:0;-1:-1:-1;;30854:10:0;30841:24;;;;:12;:24;;;;;;;;:29;;-1:-1:-1;;30841:29:0;;;30868:2;30841:29;;;;30904:8;:20;;;;;;;30841:29;30904:20;;;30841:29;30904:24;30881:47;;;;;;;;;30939:14;:26;;;;;30968:15;30939:44;;30399:592::o;25880:202::-;25931:10;24692:16;:14;:16::i;:::-;24669:20;:39;24736:26;:24;:26::i;:::-;24719:14;:43;-1:-1:-1;;;;;24777:21:0;;;24773:157;;24834:15;24841:7;24834:6;:15::i;:::-;-1:-1:-1;;;;;24815:16:0;;;;;;:7;:16;;;;;;;;:34;;;;24898:20;;24864:22;:31;;;;;;:54;24773:157;24569:9;;24550:15;:28;;24542:49;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;;;;25982:1;25973:6;:10;25965:37;;;;;-1:-1:-1;;;25965:37:0;;;;;;;;;;;;-1:-1:-1;;;25965:37:0;;;;;;;;;;;;;;;26013:19;26025:6;26013:11;:19::i;:::-;26048:26;;;;;;;;26055:10;;26048:26;;;;;;;;;;25880:202;;:::o;23249:73::-;;;-1:-1:-1;;;;;23249:73:0;;:::o;23647:29::-;;;;:::o;25096:420::-;25143:7;25167:13;:11;:13::i;:::-;25163:78;;-1:-1:-1;25209:20:0;;25202:27;;25163:78;25271:237;25314:179;25479:13;:11;:13::i;:::-;25314:138;25447:4;25314:106;25409:10;;25314:68;25367:14;;25314:26;:24;:26::i;:179::-;25271:20;;;:237;:24;:237;:::i;23929:40::-;;;;;;;;;;;;;;;:::o;23683:35::-;;;;:::o;22052:84::-;;;-1:-1:-1;;;;;22052:84:0;;:::o;26312:97::-;26348:31;26357:21;26367:10;26357:9;:21::i;:::-;26348:8;:31::i;:::-;26390:11;:9;:11::i;23573:31::-;;;;:::o;10906:109::-;10012:9;:7;:9::i;:::-;10004:54;;;;;-1:-1:-1;;;10004:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10979:28;10998:8;10979:18;:28::i;:::-;10906:109;:::o;28606:587::-;24442:10;24427:26;;;;:14;:26;;;;;;24456:7;24427:36;24408:15;:55;;24400:81;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;-1:-1:-1;;;24400:81:0;;;;;;;;;;;;;;;24569:9;;24550:15;:28;;24542:49;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;-1:-1:-1;;;24542:49:0;;;;;;;;;;;;;;;28822:10;28681:27;28814:19;;;:7;:19;;;;;;28711:42;;28681:27;28784:74;;28853:4;;28784:64;;28839:8;;28784:50;;28792:2;;28814:19;;28808:1;28800:33;28784:50;:15;:50;:::i;:74::-;28764:94;;28890:9;28877;:22;28869:45;;;;;-1:-1:-1;;;28869:45:0;;;;;;;;;;;;-1:-1:-1;;;28869:45:0;;;;;;;;;;;;;;;28930:27;;-1:-1:-1;;;;;28930:16:0;;;:27;;;;;28947:9;;28930:27;;;;28947:9;28930:16;:27;;;;;;;28925:111;;28981:43;;-1:-1:-1;;;;;28981:20:0;;;29002:21;28981:43;;;;;;;;;29002:21;28981:20;:43;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;28925:111:0;-1:-1:-1;;29059:10:0;29046:24;;;;:12;:24;;;;;;;;:28;;-1:-1:-1;;29046:28:0;;;29073:1;29046:28;;;;29107:7;:19;;;;;;;29046:28;29107:19;;;29046:28;29107:23;29085:45;;;;;;;;;29141:14;:26;;;;;29170:15;29141:44;;28606:587::o;3604:136::-;3662:7;3689:43;3693:1;3696;3689:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3682:50;3604:136;-1:-1:-1;;;3604:136:0:o;4520:471::-;4578:7;4823:6;4819:47;;-1:-1:-1;4853:1:0;4846:8;;4819:47;4890:5;;;4894:1;4890;:5;:1;4914:5;;;;;:10;4906:56;;;;-1:-1:-1;;;4906:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5459:132;5517:7;5544:39;5548:1;5551;5544:39;;;;;;;;;;;;;;;;;:3;:39::i;3148:181::-;3206:7;3238:5;;;3262:6;;;;3254:46;;;;;-1:-1:-1;;;3254:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22932:228;22999:12;;:24;;23016:6;22999:24;:16;:24;:::i;:::-;22984:12;:39;23068:10;23058:21;;;;:9;:21;;;;;;:33;;23084:6;23058:33;:25;:33;:::i;:::-;23044:10;23034:21;;;;:9;:21;;;;;:57;;;;23102:17;;:50;;-1:-1:-1;;;;;23102:17:0;;;;23145:6;23102:30;:50::i;8576:98::-;8656:10;8576:98;:::o;17940:176::-;18049:58;;;-1:-1:-1;;;;;18049:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18049:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18023:85:0;;18042:5;;18023:18;:85::i;:::-;17940:176;;;:::o;1837:106::-;1895:7;1926:1;1922;:5;:13;;1934:1;1922:13;;;-1:-1:-1;1930:1:0;;1837:106;-1:-1:-1;1837:106:0:o;22451:473::-;22500:18;22521:23;22541:2;22521:15;:6;22532:3;22521:15;:10;:15;:::i;:23::-;22570:12;;22500:44;;-1:-1:-1;22570:28:0;;22500:44;22570:28;:16;:28;:::i;:::-;22555:12;:43;22643:10;22633:21;;;;:9;:21;;;;;;:37;;22659:10;22633:37;:25;:37;:::i;:::-;22619:10;22609:21;;;;:9;:21;;;;;:61;;;;22756:17;;22703:42;;22756:73;;-1:-1:-1;;;;;22756:17:0;;22811:4;22818:10;22756:73;:34;:73;:::i;:::-;22840:76;22875:10;22887:11;22900:15;:6;22911:3;22900:15;:10;:15;:::i;:::-;22840:17;;-1:-1:-1;;;;;22840:17:0;;:76;;;:34;:76;:::i;11121:229::-;-1:-1:-1;;;;;11195:22:0;;11187:73;;;;-1:-1:-1;;;11187:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11297:6;;11276:38;;-1:-1:-1;;;;;11276:38:0;;;;11297:6;;11276:38;;11297:6;;11276:38;11325:6;:17;;-1:-1:-1;;;;;;11325:17:0;-1:-1:-1;;;;;11325:17:0;;;;;;;;;;11121:229::o;4077:192::-;4163:7;4199:12;4191:6;;;;4183:29;;;;-1:-1:-1;;;4183:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4183:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4235:5:0;;;4077:192::o;6121:345::-;6207:7;6309:12;6302:5;6294:28;;;;-1:-1:-1;;;6294:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6294:28:0;;6333:9;6349:1;6345;:5;;;;;;;6121:345;-1:-1:-1;;;;;6121:345:0:o;19979:1114::-;20583:27;20591:5;-1:-1:-1;;;;;20583:25:0;;:27::i;:::-;20575:71;;;;;-1:-1:-1;;;20575:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20720:12;20734:23;20769:5;-1:-1:-1;;;;;20761:19:0;20781:4;20761:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;20761:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;20719:67:0;;;;20805:7;20797:52;;;;;-1:-1:-1;;;20797:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20866:17;;:21;20862:224;;21008:10;20997:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20997:30:0;20989:85;;;;-1:-1:-1;;;20989:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19979:1114;;;;:::o;18124:204::-;18251:68;;;-1:-1:-1;;;;;18251:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18251:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18225:95:0;;18244:5;;18225:18;:95::i;14811:810::-;14871:4;15530:20;;15373:66;15570:15;;;;;:42;;;15601:11;15589:8;:23;;15570:42;15562:51;14811:810;-1:-1:-1;;;;14811:810:0:o
Swarm Source
bzzr://43cbc50b32896940e45d5740a7a766dbdebec773a83e9412e52705bacfb4ca3c
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.