More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 352 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Get Reward | 12282718 | 1358 days ago | IN | 0 ETH | 0.01267188 | ||||
Withdraw | 12282687 | 1358 days ago | IN | 0 ETH | 0.01610817 | ||||
Withdraw | 11523087 | 1475 days ago | IN | 0 ETH | 0.00658872 | ||||
Get Reward | 11514916 | 1476 days ago | IN | 0 ETH | 0.00438881 | ||||
Withdraw | 11506998 | 1477 days ago | IN | 0 ETH | 0.00856653 | ||||
Withdraw | 11503323 | 1478 days ago | IN | 0 ETH | 0.00603625 | ||||
Withdraw | 11503167 | 1478 days ago | IN | 0 ETH | 0.00561855 | ||||
Get Reward | 11502903 | 1478 days ago | IN | 0 ETH | 0.00376533 | ||||
Withdraw | 11502901 | 1478 days ago | IN | 0 ETH | 0.00460759 | ||||
Get Reward | 11482986 | 1481 days ago | IN | 0 ETH | 0.00410433 | ||||
Get Reward | 11441121 | 1487 days ago | IN | 0 ETH | 0.00175869 | ||||
Withdraw | 11441117 | 1487 days ago | IN | 0 ETH | 0.00222583 | ||||
Withdraw | 11430110 | 1489 days ago | IN | 0 ETH | 0.00370745 | ||||
Withdraw | 11428999 | 1489 days ago | IN | 0 ETH | 0.00584522 | ||||
Withdraw | 11428730 | 1489 days ago | IN | 0 ETH | 0.00621268 | ||||
Withdraw | 11428318 | 1489 days ago | IN | 0 ETH | 0.00514347 | ||||
Withdraw | 11426794 | 1489 days ago | IN | 0 ETH | 0.00284125 | ||||
Withdraw | 11426361 | 1490 days ago | IN | 0 ETH | 0.00700984 | ||||
Withdraw | 11426173 | 1490 days ago | IN | 0 ETH | 0.00224694 | ||||
Withdraw | 11425748 | 1490 days ago | IN | 0 ETH | 0.0058401 | ||||
Withdraw | 11424004 | 1490 days ago | IN | 0 ETH | 0.00554994 | ||||
Withdraw | 11423569 | 1490 days ago | IN | 0 ETH | 0.00246066 | ||||
Get Reward | 11423559 | 1490 days ago | IN | 0 ETH | 0.00207309 | ||||
Withdraw | 11416481 | 1491 days ago | IN | 0 ETH | 0.00584204 | ||||
Withdraw | 11415996 | 1491 days ago | IN | 0 ETH | 0.00460561 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RGRewardTSPool
Compiler Version
v0.5.8+commit.23d335f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-03 */ 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); } } pragma solidity ^0.5.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. * * _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; } } pragma solidity ^0.5.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. */ 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 pragma solidity ^0.5.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. * * 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 pragma solidity ^0.5.0; /** * @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); function mint(address account, uint256 amount) external; /** * @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 pragma solidity ^0.5.5; /** * @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 pragma solidity ^0.5.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 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" ); } } } pragma solidity ^0.5.0; contract IRewardDistributionRecipient is Ownable { address rewardDistribution; // function notifyRewardAmount(uint256 reward) external; modifier onlyRewardDistribution() { require( _msgSender() == rewardDistribution, "Caller is not reward distribution" ); _; } function setRewardDistribution(address _rewardDistribution) external onlyOwner { require( _rewardDistribution != address(0), "rewardDistribution can't be address(0) !" ); rewardDistribution = _rewardDistribution; } } pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public y = IERC20(0x622E086cf6988d90BEC734200eAa2B669363E184); 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 { _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); y.safeTransferFrom(msg.sender, address(this), amount); } function withdraw(uint256 amount) public { _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); y.safeTransfer(msg.sender, amount); } } contract RGRewardTSPool is LPTokenWrapper, IRewardDistributionRecipient { address public developer; bool isInit = true; IERC20 public yieldToken = IERC20(0x54091956C7d7b2E0fCD669D41dC8e41d464CbD76); uint256 public constant DURATION = 10 days; // init 100, total 400. 50% reduction in production every 10 days uint256 public initreward = 100 * 1e18; uint256 public starttime = 1604404800; uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; 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 onlyDeveloper() { require(msg.sender == developer); _; } constructor() public { developer = msg.sender; periodFinish = starttime.add(DURATION); } 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) checkhalve checkStart { require(amount > 0, "Cannot stake 0"); super.stake(amount); emit Staked(msg.sender, amount); } function withdraw(uint256 amount) public updateReward(msg.sender) checkhalve checkStart { require(amount > 0, "Cannot withdraw 0"); super.withdraw(amount); emit Withdrawn(msg.sender, amount); } function exit() external { withdraw(balanceOf(msg.sender)); getReward(); } function setDeveloper(address _developer) public onlyDeveloper { require(_developer != address(0), "developer can't be address(0)"); developer = _developer; } function getReward() public updateReward(msg.sender) checkhalve checkStart { uint256 reward = earned(msg.sender); if (reward > 0) { rewards[msg.sender] = 0; yieldToken.safeTransfer(msg.sender, reward); emit RewardPaid(msg.sender, reward); } } modifier checkhalve() { if (block.timestamp >= periodFinish) { initreward = initreward.mul(50).div(100); yieldToken.mint(address(this), initreward); // yieldToken.mint(developer, initreward.mul(10).div(100)); rewardRate = initreward.div(DURATION); periodFinish = block.timestamp.add(DURATION); emit RewardAdded(initreward); } _; } modifier checkStart() { require(block.timestamp > starttime, "not start"); _; } function initialization() external onlyDeveloper updateReward(address(0)) { require(isInit, "not initialization"); rewardRate = initreward.div(DURATION); yieldToken.mint(address(this), initreward); // yieldToken.mint(developer, initreward.mul(10).div(100)); isInit = false; emit RewardAdded(initreward); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"earned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"rewards","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_rewardDistribution","type":"address"}],"name":"setRewardDistribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DURATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"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":"yieldToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"starttime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initreward","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"y","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initialization","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastUpdateTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"developer","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerTokenStored","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"periodFinish","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_developer","type":"address"}],"name":"setDeveloper","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"},{"indexed":false,"name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
6080604052600080546001600160a01b031990811673622e086cf6988d90bec734200eaa2b669363e18417825560058054600160a01b60ff02191674010000000000000000000000000000000000000000179055600680549091167354091956c7d7b2e0fcd669d41dc8e41d464cbd7617905568056bc75e2d63100000600755635fa146406008556009819055600a5534801561009b57600080fd5b506100aa61012d60201b60201c565b600380546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a360058054336001600160a01b031990911617905560085461012590620d2f00610131602090811b61110b17901c565b6009556101ac565b3390565b6000828201838110156101a557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b611786806101bb6000396000f3fe608060405234801561001057600080fd5b50600436106101c35760003560e01c80638da5cb5b116100f9578063ca4b208b11610097578063e9fad8ee11610071578063e9fad8ee1461038c578063ebe2b12b14610394578063f2fde38b1461039c578063ff70fa49146103c2576101c3565b8063ca4b208b14610374578063cd3daf9d1461037c578063df136d6514610384576101c3565b8063a56dfe4a116100d3578063a56dfe4a1461033f578063a694fc3a14610347578063c172085e14610364578063c8f33c911461036c576101c3565b80638da5cb5b146103135780638f32d59b1461031b5780639c907b5814610337576101c3565b806370a08231116101665780637b0a47ee116101405780637b0a47ee146102d557806380faa57d146102dd5780638b876347146102e55780638da588971461030b576101c3565b806370a0823114610283578063715018a6146102a957806376d5de85146102b1576101c3565b806318160ddd116101a257806318160ddd1461024e5780631be05289146102565780632e1a7d4d1461025e5780633d18b9121461027b576101c3565b80628cc262146101c85780630700037d146102005780630d68b76114610226575b600080fd5b6101ee600480360360208110156101de57600080fd5b50356001600160a01b03166103e8565b60408051918252519081900360200190f35b6101ee6004803603602081101561021657600080fd5b50356001600160a01b031661046e565b61024c6004803603602081101561023c57600080fd5b50356001600160a01b0316610480565b005b6101ee610546565b6101ee61054d565b61024c6004803603602081101561027457600080fd5b5035610554565b61024c61077c565b6101ee6004803603602081101561029957600080fd5b50356001600160a01b0316610980565b61024c61099b565b6102b9610a41565b604080516001600160a01b039092168252519081900360200190f35b6101ee610a50565b6101ee610a56565b6101ee600480360360208110156102fb57600080fd5b50356001600160a01b0316610a69565b6101ee610a7b565b6102b9610a81565b610323610a90565b604080519115158252519081900360200190f35b6101ee610ab6565b6102b9610abc565b61024c6004803603602081101561035d57600080fd5b5035610acb565b61024c610cf3565b6101ee610e95565b6102b9610e9b565b6101ee610eaa565b6101ee610efe565b61024c610f04565b6101ee610f1f565b61024c600480360360208110156103b257600080fd5b50356001600160a01b0316610f25565b61024c600480360360208110156103d857600080fd5b50356001600160a01b0316610f8d565b6001600160a01b0381166000908152600e6020908152604080832054600d909252822054610468919061045c90670de0b6b3a7640000906104509061043b9061042f610eaa565b9063ffffffff61102416565b61044488610980565b9063ffffffff61106d16565b9063ffffffff6110c916565b9063ffffffff61110b16565b92915050565b600e6020526000908152604090205481565b610488610a90565b6104dc5760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661052457604051600160e51b62461bcd0281526004018080602001828103825260288152602001806117336028913960400191505060405180910390fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001545b90565b620d2f0081565b3361055d610eaa565b600c55610568610a56565b600b556001600160a01b038116156105af57610583816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6009544210610699576105d36064610450603260075461106d90919063ffffffff16565b600781905560065460408051600160e01b6340c10f190281523060048201526024810193909352516001600160a01b03909116916340c10f1991604480830192600092919082900301818387803b15801561062d57600080fd5b505af1158015610641573d6000803e3d6000fd5b505060075461065c92509050620d2f0063ffffffff6110c916565b600a5561067242620d2f0063ffffffff61110b16565b60095560075460408051918252516000805160206116c88339815191529181900360200190a15b60085442116106e15760408051600160e51b62461bcd0281526020600482015260096024820152600160ba1b681b9bdd081cdd185c9d02604482015290519081900360640190fd5b600082116107395760408051600160e51b62461bcd02815260206004820152601160248201527f43616e6e6f742077697468647261772030000000000000000000000000000000604482015290519081900360640190fd5b61074282611168565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b33610785610eaa565b600c55610790610a56565b600b556001600160a01b038116156107d7576107ab816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60095442106108c1576107fb6064610450603260075461106d90919063ffffffff16565b600781905560065460408051600160e01b6340c10f190281523060048201526024810193909352516001600160a01b03909116916340c10f1991604480830192600092919082900301818387803b15801561085557600080fd5b505af1158015610869573d6000803e3d6000fd5b505060075461088492509050620d2f0063ffffffff6110c916565b600a5561089a42620d2f0063ffffffff61110b16565b60095560075460408051918252516000805160206116c88339815191529181900360200190a15b60085442116109095760408051600160e51b62461bcd0281526020600482015260096024820152600160ba1b681b9bdd081cdd185c9d02604482015290519081900360640190fd5b6000610914336103e8565b9050801561097c57336000818152600e6020526040812055600654610945916001600160a01b0390911690836111c5565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b6001600160a01b031660009081526002602052604090205490565b6109a3610a90565b6109f75760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6006546001600160a01b031681565b600a5481565b6000610a644260095461121f565b905090565b600d6020526000908152604090205481565b60085481565b6003546001600160a01b031690565b6003546000906001600160a01b0316610aa7611235565b6001600160a01b031614905090565b60075481565b6000546001600160a01b031681565b33610ad4610eaa565b600c55610adf610a56565b600b556001600160a01b03811615610b2657610afa816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6009544210610c1057610b4a6064610450603260075461106d90919063ffffffff16565b600781905560065460408051600160e01b6340c10f190281523060048201526024810193909352516001600160a01b03909116916340c10f1991604480830192600092919082900301818387803b158015610ba457600080fd5b505af1158015610bb8573d6000803e3d6000fd5b5050600754610bd392509050620d2f0063ffffffff6110c916565b600a55610be942620d2f0063ffffffff61110b16565b60095560075460408051918252516000805160206116c88339815191529181900360200190a15b6008544211610c585760408051600160e51b62461bcd0281526020600482015260096024820152600160ba1b681b9bdd081cdd185c9d02604482015290519081900360640190fd5b60008211610cb05760408051600160e51b62461bcd02815260206004820152600e60248201527f43616e6e6f74207374616b652030000000000000000000000000000000000000604482015290519081900360640190fd5b610cb982611239565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6005546001600160a01b03163314610d0a57600080fd5b6000610d14610eaa565b600c55610d1f610a56565b600b556001600160a01b03811615610d6657610d3a816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b600554600160a01b900460ff16610dc75760408051600160e51b62461bcd02815260206004820152601260248201527f6e6f7420696e697469616c697a6174696f6e0000000000000000000000000000604482015290519081900360640190fd5b600754610ddd90620d2f0063ffffffff6110c916565b600a5560065460075460408051600160e01b6340c10f190281523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610e3957600080fd5b505af1158015610e4d573d6000803e3d6000fd5b50506005805474ff000000000000000000000000000000000000000019169055505060075460408051918252516000805160206116c88339815191529181900360200190a150565b600b5481565b6005546001600160a01b031681565b6000610eb4610546565b610ec15750600c5461054a565b610a64610eef610ecf610546565b610450670de0b6b3a7640000610444600a54610444600b5461042f610a56565b600c549063ffffffff61110b16565b600c5481565b610f15610f1033610980565b610554565b610f1d61077c565b565b60095481565b610f2d610a90565b610f815760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610f8a8161129b565b50565b6005546001600160a01b03163314610fa457600080fd5b6001600160a01b0381166110025760408051600160e51b62461bcd02815260206004820152601d60248201527f646576656c6f7065722063616e27742062652061646472657373283029000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600061106683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061133f565b9392505050565b60008261107c57506000610468565b8282028284828161108957fe5b041461106657604051600160e51b62461bcd0281526004018080602001828103825260218152602001806116e86021913960400191505060405180910390fd5b600061106683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113d9565b6000828201838110156110665760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60015461117b908263ffffffff61102416565b6001553360009081526002602052604090205461119e908263ffffffff61102416565b336000818152600260205260408120929092559054610f8a916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0316600160e01b63a9059cbb0217905261121a908490611441565b505050565b600081831061122e5781611066565b5090919050565b3390565b60015461124c908263ffffffff61110b16565b6001553360009081526002602052604090205461126f908263ffffffff61110b16565b336000818152600260205260408120929092559054610f8a916001600160a01b03909116903084611608565b6001600160a01b0381166112e357604051600160e51b62461bcd0281526004018080602001828103825260268152602001806116a26026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156113d157604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561139657818101518382015260200161137e565b50505050905090810190601f1680156113c35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361142b57604051600160e51b62461bcd02815260206004820181815283516024840152835190928392604490910191908501908083836000831561139657818101518382015260200161137e565b50600083858161143757fe5b0495945050505050565b611453826001600160a01b0316611665565b6114a75760408051600160e51b62461bcd02815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106114e55780518252601f1990920191602091820191016114c6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b5091509150816115a65760408051600160e51b62461bcd02815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611602578080602001905160208110156115c257600080fd5b505161160257604051600160e51b62461bcd02815260040180806020018281038252602a815260200180611709602a913960400191505060405180910390fd5b50505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b0316600160e01b6323b872dd02179052611602908590611441565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906116995750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373de88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564726577617264446973747269627574696f6e2063616e277420626520616464726573732830292021a165627a7a7230582043af54e9314b6a0f082361d746d34d375c4e37ad24cd7554276f9ab2b0d1278a0029
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c35760003560e01c80638da5cb5b116100f9578063ca4b208b11610097578063e9fad8ee11610071578063e9fad8ee1461038c578063ebe2b12b14610394578063f2fde38b1461039c578063ff70fa49146103c2576101c3565b8063ca4b208b14610374578063cd3daf9d1461037c578063df136d6514610384576101c3565b8063a56dfe4a116100d3578063a56dfe4a1461033f578063a694fc3a14610347578063c172085e14610364578063c8f33c911461036c576101c3565b80638da5cb5b146103135780638f32d59b1461031b5780639c907b5814610337576101c3565b806370a08231116101665780637b0a47ee116101405780637b0a47ee146102d557806380faa57d146102dd5780638b876347146102e55780638da588971461030b576101c3565b806370a0823114610283578063715018a6146102a957806376d5de85146102b1576101c3565b806318160ddd116101a257806318160ddd1461024e5780631be05289146102565780632e1a7d4d1461025e5780633d18b9121461027b576101c3565b80628cc262146101c85780630700037d146102005780630d68b76114610226575b600080fd5b6101ee600480360360208110156101de57600080fd5b50356001600160a01b03166103e8565b60408051918252519081900360200190f35b6101ee6004803603602081101561021657600080fd5b50356001600160a01b031661046e565b61024c6004803603602081101561023c57600080fd5b50356001600160a01b0316610480565b005b6101ee610546565b6101ee61054d565b61024c6004803603602081101561027457600080fd5b5035610554565b61024c61077c565b6101ee6004803603602081101561029957600080fd5b50356001600160a01b0316610980565b61024c61099b565b6102b9610a41565b604080516001600160a01b039092168252519081900360200190f35b6101ee610a50565b6101ee610a56565b6101ee600480360360208110156102fb57600080fd5b50356001600160a01b0316610a69565b6101ee610a7b565b6102b9610a81565b610323610a90565b604080519115158252519081900360200190f35b6101ee610ab6565b6102b9610abc565b61024c6004803603602081101561035d57600080fd5b5035610acb565b61024c610cf3565b6101ee610e95565b6102b9610e9b565b6101ee610eaa565b6101ee610efe565b61024c610f04565b6101ee610f1f565b61024c600480360360208110156103b257600080fd5b50356001600160a01b0316610f25565b61024c600480360360208110156103d857600080fd5b50356001600160a01b0316610f8d565b6001600160a01b0381166000908152600e6020908152604080832054600d909252822054610468919061045c90670de0b6b3a7640000906104509061043b9061042f610eaa565b9063ffffffff61102416565b61044488610980565b9063ffffffff61106d16565b9063ffffffff6110c916565b9063ffffffff61110b16565b92915050565b600e6020526000908152604090205481565b610488610a90565b6104dc5760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661052457604051600160e51b62461bcd0281526004018080602001828103825260288152602001806117336028913960400191505060405180910390fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001545b90565b620d2f0081565b3361055d610eaa565b600c55610568610a56565b600b556001600160a01b038116156105af57610583816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6009544210610699576105d36064610450603260075461106d90919063ffffffff16565b600781905560065460408051600160e01b6340c10f190281523060048201526024810193909352516001600160a01b03909116916340c10f1991604480830192600092919082900301818387803b15801561062d57600080fd5b505af1158015610641573d6000803e3d6000fd5b505060075461065c92509050620d2f0063ffffffff6110c916565b600a5561067242620d2f0063ffffffff61110b16565b60095560075460408051918252516000805160206116c88339815191529181900360200190a15b60085442116106e15760408051600160e51b62461bcd0281526020600482015260096024820152600160ba1b681b9bdd081cdd185c9d02604482015290519081900360640190fd5b600082116107395760408051600160e51b62461bcd02815260206004820152601160248201527f43616e6e6f742077697468647261772030000000000000000000000000000000604482015290519081900360640190fd5b61074282611168565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b33610785610eaa565b600c55610790610a56565b600b556001600160a01b038116156107d7576107ab816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b60095442106108c1576107fb6064610450603260075461106d90919063ffffffff16565b600781905560065460408051600160e01b6340c10f190281523060048201526024810193909352516001600160a01b03909116916340c10f1991604480830192600092919082900301818387803b15801561085557600080fd5b505af1158015610869573d6000803e3d6000fd5b505060075461088492509050620d2f0063ffffffff6110c916565b600a5561089a42620d2f0063ffffffff61110b16565b60095560075460408051918252516000805160206116c88339815191529181900360200190a15b60085442116109095760408051600160e51b62461bcd0281526020600482015260096024820152600160ba1b681b9bdd081cdd185c9d02604482015290519081900360640190fd5b6000610914336103e8565b9050801561097c57336000818152600e6020526040812055600654610945916001600160a01b0390911690836111c5565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b6001600160a01b031660009081526002602052604090205490565b6109a3610a90565b6109f75760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b6006546001600160a01b031681565b600a5481565b6000610a644260095461121f565b905090565b600d6020526000908152604090205481565b60085481565b6003546001600160a01b031690565b6003546000906001600160a01b0316610aa7611235565b6001600160a01b031614905090565b60075481565b6000546001600160a01b031681565b33610ad4610eaa565b600c55610adf610a56565b600b556001600160a01b03811615610b2657610afa816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b6009544210610c1057610b4a6064610450603260075461106d90919063ffffffff16565b600781905560065460408051600160e01b6340c10f190281523060048201526024810193909352516001600160a01b03909116916340c10f1991604480830192600092919082900301818387803b158015610ba457600080fd5b505af1158015610bb8573d6000803e3d6000fd5b5050600754610bd392509050620d2f0063ffffffff6110c916565b600a55610be942620d2f0063ffffffff61110b16565b60095560075460408051918252516000805160206116c88339815191529181900360200190a15b6008544211610c585760408051600160e51b62461bcd0281526020600482015260096024820152600160ba1b681b9bdd081cdd185c9d02604482015290519081900360640190fd5b60008211610cb05760408051600160e51b62461bcd02815260206004820152600e60248201527f43616e6e6f74207374616b652030000000000000000000000000000000000000604482015290519081900360640190fd5b610cb982611239565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6005546001600160a01b03163314610d0a57600080fd5b6000610d14610eaa565b600c55610d1f610a56565b600b556001600160a01b03811615610d6657610d3a816103e8565b6001600160a01b0382166000908152600e6020908152604080832093909355600c54600d909152919020555b600554600160a01b900460ff16610dc75760408051600160e51b62461bcd02815260206004820152601260248201527f6e6f7420696e697469616c697a6174696f6e0000000000000000000000000000604482015290519081900360640190fd5b600754610ddd90620d2f0063ffffffff6110c916565b600a5560065460075460408051600160e01b6340c10f190281523060048201526024810192909252516001600160a01b03909216916340c10f199160448082019260009290919082900301818387803b158015610e3957600080fd5b505af1158015610e4d573d6000803e3d6000fd5b50506005805474ff000000000000000000000000000000000000000019169055505060075460408051918252516000805160206116c88339815191529181900360200190a150565b600b5481565b6005546001600160a01b031681565b6000610eb4610546565b610ec15750600c5461054a565b610a64610eef610ecf610546565b610450670de0b6b3a7640000610444600a54610444600b5461042f610a56565b600c549063ffffffff61110b16565b600c5481565b610f15610f1033610980565b610554565b610f1d61077c565b565b60095481565b610f2d610a90565b610f815760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610f8a8161129b565b50565b6005546001600160a01b03163314610fa457600080fd5b6001600160a01b0381166110025760408051600160e51b62461bcd02815260206004820152601d60248201527f646576656c6f7065722063616e27742062652061646472657373283029000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600061106683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061133f565b9392505050565b60008261107c57506000610468565b8282028284828161108957fe5b041461106657604051600160e51b62461bcd0281526004018080602001828103825260218152602001806116e86021913960400191505060405180910390fd5b600061106683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113d9565b6000828201838110156110665760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60015461117b908263ffffffff61102416565b6001553360009081526002602052604090205461119e908263ffffffff61102416565b336000818152600260205260408120929092559054610f8a916001600160a01b0390911690835b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0316600160e01b63a9059cbb0217905261121a908490611441565b505050565b600081831061122e5781611066565b5090919050565b3390565b60015461124c908263ffffffff61110b16565b6001553360009081526002602052604090205461126f908263ffffffff61110b16565b336000818152600260205260408120929092559054610f8a916001600160a01b03909116903084611608565b6001600160a01b0381166112e357604051600160e51b62461bcd0281526004018080602001828103825260268152602001806116a26026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b600081848411156113d157604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561139657818101518382015260200161137e565b50505050905090810190601f1680156113c35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000818361142b57604051600160e51b62461bcd02815260206004820181815283516024840152835190928392604490910191908501908083836000831561139657818101518382015260200161137e565b50600083858161143757fe5b0495945050505050565b611453826001600160a01b0316611665565b6114a75760408051600160e51b62461bcd02815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106114e55780518252601f1990920191602091820191016114c6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b5091509150816115a65760408051600160e51b62461bcd02815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611602578080602001905160208110156115c257600080fd5b505161160257604051600160e51b62461bcd02815260040180806020018281038252602a815260200180611709602a913960400191505060405180910390fd5b50505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b0316600160e01b6323b872dd02179052611602908590611441565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906116995750808214155b94935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373de88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564726577617264446973747269627574696f6e2063616e277420626520616464726573732830292021a165627a7a7230582043af54e9314b6a0f082361d746d34d375c4e37ad24cd7554276f9ab2b0d1278a0029
Deployed Bytecode Sourcemap
22454:4487:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22454:4487:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24499:265;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24499:265:0;-1:-1:-1;;;;;24499:265:0;;:::i;:::-;;;;;;;;;;;;;;;;23108:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23108:42:0;-1:-1:-1;;;;;23108:42:0;;:::i;21188:295::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21188:295:0;-1:-1:-1;;;;;21188:295:0;;:::i;:::-;;21782:91;;;:::i;22681:42::-;;;:::i;25117:266::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25117:266:0;;:::i;25685:313::-;;;:::i;21881:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21881:110:0;-1:-1:-1;;;;;21881:110:0;;:::i;9253:140::-;;;:::i;22595:77::-;;;:::i;:::-;;;;-1:-1:-1;;;;;22595:77:0;;;;;;;;;;;;;;22930:29;;;:::i;23932:131::-;;;:::i;23044:57::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23044:57:0;-1:-1:-1;;;;;23044:57:0;;:::i;22848:37::-;;;:::i;8442:79::-;;;:::i;8808:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;22803:38;;;:::i;21616:68::-;;;:::i;24855:254::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24855:254:0;;:::i;26570:368::-;;;:::i;22966:29::-;;;:::i;22535:24::-;;;:::i;24071:420::-;;;:::i;23002:35::-;;;:::i;25391:97::-;;;:::i;22892:31::-;;;:::i;9548:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9548:109:0;-1:-1:-1;;;;;9548:109:0;;:::i;25496:181::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25496:181:0;-1:-1:-1;;;;;25496:181:0;;:::i;24499:265::-;-1:-1:-1;;;;;24739:16:0;;24553:7;24739:16;;;:7;:16;;;;;;;;;24655:22;:31;;;;;;24593:163;;24739:16;24593:123;;24711:4;;24593:95;;24634:53;;:16;:14;:16::i;:::-;:20;:53;:20;:53;:::i;:::-;24593:18;24603:7;24593:9;:18::i;:::-;:40;:95;:40;:95;:::i;:::-;:117;:123;:117;:123;:::i;:::-;:145;:163;:145;:163;:::i;:::-;24573:183;24499:265;-1:-1:-1;;24499:265:0:o;23108:42::-;;;;;;;;;;;;;:::o;21188:295::-;8654:9;:7;:9::i;:::-;8646:54;;;;;-1:-1:-1;;;;;8646:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21323:33:0;;21301:123;;;;-1:-1:-1;;;;;21301:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21435:18;:40;;-1:-1:-1;;;;;;21435:40:0;-1:-1:-1;;;;;21435:40:0;;;;;;;;;;21188:295::o;21782:91::-;21853:12;;21782:91;;:::o;22681:42::-;22716:7;22681:42;:::o;25117:266::-;25189:10;23667:16;:14;:16::i;:::-;23644:20;:39;23711:26;:24;:26::i;:::-;23694:14;:43;-1:-1:-1;;;;;23752:21:0;;;23748:157;;23809:15;23816:7;23809:6;:15::i;:::-;-1:-1:-1;;;;;23790:16:0;;;;;;:7;:16;;;;;;;;:34;;;;23873:20;;23839:22;:31;;;;;;:54;23748:157;26062:12;;26043:15;:31;26039:390;;26104:27;26127:3;26104:18;26119:2;26104:10;;:14;;:18;;;;:::i;:27::-;26091:10;:40;;;26146:10;;:42;;;-1:-1:-1;;;;;26146:42:0;;26170:4;26146:42;;;;;;;;;;;;-1:-1:-1;;;;;26146:10:0;;;;:15;;:42;;;;;:10;;:42;;;;;;;:10;;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;26146:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26291:10:0;;:24;;-1:-1:-1;26291:10:0;-1:-1:-1;22716:7:0;26291:24;:14;:24;:::i;:::-;26278:10;:37;26345:29;:15;22716:7;26345:29;:19;:29;:::i;:::-;26330:12;:44;26406:10;;26394:23;;;;;;;-1:-1:-1;;;;;;;;;;;26394:23:0;;;;;;;;26039:390;26519:9;;26501:15;:27;26493:49;;;;;-1:-1:-1;;;;;26493:49:0;;;;;;;;;;;;-1:-1:-1;;;;;26493:49:0;;;;;;;;;;;;;;;25274:1;25265:6;:10;25257:40;;;;;-1:-1:-1;;;;;25257:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25308:22;25323:6;25308:14;:22::i;:::-;25346:29;;;;;;;;25356:10;;25346:29;;;;;;;;;;25117:266;;:::o;25685:313::-;25726:10;23667:16;:14;:16::i;:::-;23644:20;:39;23711:26;:24;:26::i;:::-;23694:14;:43;-1:-1:-1;;;;;23752:21:0;;;23748:157;;23809:15;23816:7;23809:6;:15::i;:::-;-1:-1:-1;;;;;23790:16:0;;;;;;:7;:16;;;;;;;;:34;;;;23873:20;;23839:22;:31;;;;;;:54;23748:157;26062:12;;26043:15;:31;26039:390;;26104:27;26127:3;26104:18;26119:2;26104:10;;:14;;:18;;;;:::i;:27::-;26091:10;:40;;;26146:10;;:42;;;-1:-1:-1;;;;;26146:42:0;;26170:4;26146:42;;;;;;;;;;;;-1:-1:-1;;;;;26146:10:0;;;;:15;;:42;;;;;:10;;:42;;;;;;;:10;;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;26146:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26291:10:0;;:24;;-1:-1:-1;26291:10:0;-1:-1:-1;22716:7:0;26291:24;:14;:24;:::i;:::-;26278:10;:37;26345:29;:15;22716:7;26345:29;:19;:29;:::i;:::-;26330:12;:44;26406:10;;26394:23;;;;;;;-1:-1:-1;;;;;;;;;;;26394:23:0;;;;;;;;26039:390;26519:9;;26501:15;:27;26493:49;;;;;-1:-1:-1;;;;;26493:49:0;;;;;;;;;;;;-1:-1:-1;;;;;26493:49:0;;;;;;;;;;;;;;;25771:14;25788:18;25795:10;25788:6;:18::i;:::-;25771:35;-1:-1:-1;25821:10:0;;25817:174;;25856:10;25870:1;25848:19;;;:7;:19;;;;;:23;25886:10;;:43;;-1:-1:-1;;;;;25886:10:0;;;;25922:6;25886:23;:43::i;:::-;25949:30;;;;;;;;25960:10;;25949:30;;;;;;;;;;25817:174;26553:1;25685:313;:::o;21881:110::-;-1:-1:-1;;;;;21965:18:0;21938:7;21965:18;;;:9;:18;;;;;;;21881:110::o;9253:140::-;8654:9;:7;:9::i;:::-;8646:54;;;;;-1:-1:-1;;;;;8646:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9336:6;;9315:40;;9352:1;;-1:-1:-1;;;;;9336:6:0;;9315:40;;9352:1;;9315:40;9366:6;:19;;-1:-1:-1;;;;;;9366:19:0;;;9253:140::o;22595:77::-;;;-1:-1:-1;;;;;22595:77:0;;:::o;22930:29::-;;;;:::o;23932:131::-;23989:7;24016:39;24025:15;24042:12;;24016:8;:39::i;:::-;24009:46;;23932:131;:::o;23044:57::-;;;;;;;;;;;;;:::o;22848:37::-;;;;:::o;8442:79::-;8507:6;;-1:-1:-1;;;;;8507:6:0;8442:79;:::o;8808:94::-;8888:6;;8848:4;;-1:-1:-1;;;;;8888:6:0;8872:12;:10;:12::i;:::-;-1:-1:-1;;;;;8872:22:0;;8865:29;;8808:94;:::o;22803:38::-;;;;:::o;21616:68::-;;;-1:-1:-1;;;;;21616:68:0;;:::o;24855:254::-;24924:10;23667:16;:14;:16::i;:::-;23644:20;:39;23711:26;:24;:26::i;:::-;23694:14;:43;-1:-1:-1;;;;;23752:21:0;;;23748:157;;23809:15;23816:7;23809:6;:15::i;:::-;-1:-1:-1;;;;;23790:16:0;;;;;;:7;:16;;;;;;;;:34;;;;23873:20;;23839:22;:31;;;;;;:54;23748:157;26062:12;;26043:15;:31;26039:390;;26104:27;26127:3;26104:18;26119:2;26104:10;;:14;;:18;;;;:::i;:27::-;26091:10;:40;;;26146:10;;:42;;;-1:-1:-1;;;;;26146:42:0;;26170:4;26146:42;;;;;;;;;;;;-1:-1:-1;;;;;26146:10:0;;;;:15;;:42;;;;;:10;;:42;;;;;;;:10;;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;26146:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26291:10:0;;:24;;-1:-1:-1;26291:10:0;-1:-1:-1;22716:7:0;26291:24;:14;:24;:::i;:::-;26278:10;:37;26345:29;:15;22716:7;26345:29;:19;:29;:::i;:::-;26330:12;:44;26406:10;;26394:23;;;;;;;-1:-1:-1;;;;;;;;;;;26394:23:0;;;;;;;;26039:390;26519:9;;26501:15;:27;26493:49;;;;;-1:-1:-1;;;;;26493:49:0;;;;;;;;;;;;-1:-1:-1;;;;;26493:49:0;;;;;;;;;;;;;;;25009:1;25000:6;:10;24992:37;;;;;-1:-1:-1;;;;;24992:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25040:19;25052:6;25040:11;:19::i;:::-;25075:26;;;;;;;;25082:10;;25075:26;;;;;;;;;;24855:254;;:::o;26570:368::-;23437:9;;-1:-1:-1;;;;;23437:9:0;23423:10;:23;23415:32;;;;;;26640:1;23667:16;:14;:16::i;:::-;23644:20;:39;23711:26;:24;:26::i;:::-;23694:14;:43;-1:-1:-1;;;;;23752:21:0;;;23748:157;;23809:15;23816:7;23809:6;:15::i;:::-;-1:-1:-1;;;;;23790:16:0;;;;;;:7;:16;;;;;;;;:34;;;;23873:20;;23839:22;:31;;;;;;:54;23748:157;26663:6;;-1:-1:-1;;;26663:6:0;;;;26655:37;;;;;-1:-1:-1;;;;;26655:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26718:10;;:24;;22716:7;26718:24;:14;:24;:::i;:::-;26705:10;:37;26753:10;;26784;;26753:42;;;-1:-1:-1;;;;;26753:42:0;;26777:4;26753:42;;;;;;;;;;;;-1:-1:-1;;;;;26753:10:0;;;;:15;;:42;;;;;:10;;:42;;;;;;;;:10;;:42;;;5:2:-1;;;;30:1;27;20:12;5:2;26753:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26877:6:0;:14;;-1:-1:-1;;26877:14:0;;;-1:-1:-1;;26919:10:0;;26907:23;;;;;;;-1:-1:-1;;;;;;;;;;;26907:23:0;;;;;;;;23458:1;26570:368::o;22966:29::-;;;;:::o;22535:24::-;;;-1:-1:-1;;;;;22535:24:0;;:::o;24071:420::-;24118:7;24142:13;:11;:13::i;:::-;24138:78;;-1:-1:-1;24184:20:0;;24177:27;;24138:78;24246:237;24289:179;24454:13;:11;:13::i;:::-;24289:138;24422:4;24289:106;24384:10;;24289:68;24342:14;;24289:26;:24;:26::i;:179::-;24246:20;;;:237;:24;:237;:::i;23002:35::-;;;;:::o;25391:97::-;25427:31;25436:21;25446:10;25436:9;:21::i;:::-;25427:8;:31::i;:::-;25469:11;:9;:11::i;:::-;25391:97::o;22892:31::-;;;;:::o;9548:109::-;8654:9;:7;:9::i;:::-;8646:54;;;;;-1:-1:-1;;;;;8646:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9621:28;9640:8;9621:18;:28::i;:::-;9548:109;:::o;25496:181::-;23437:9;;-1:-1:-1;;;;;23437:9:0;23423:10;:23;23415:32;;;;;;-1:-1:-1;;;;;25578:24:0;;25570:66;;;;;-1:-1:-1;;;;;25570:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25647:9;:22;;-1:-1:-1;;;;;;25647:22:0;-1:-1:-1;;;;;25647:22:0;;;;;;;;;;25496:181::o;2118:136::-;2176:7;2203:43;2207:1;2210;2203:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2196:50;2118:136;-1:-1:-1;;;2118:136:0:o;3068:471::-;3126:7;3371:6;3367:47;;-1:-1:-1;3401:1:0;3394:8;;3367:47;3438:5;;;3442:1;3438;:5;:1;3462:5;;;;;:10;3454:56;;;;-1:-1:-1;;;;;3454:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4007:132;4065:7;4092:39;4096:1;4099;4092:39;;;;;;;;;;;;;;;;;:3;:39::i;1662:181::-;1720:7;1752:5;;;1776:6;;;;1768:46;;;;;-1:-1:-1;;;;;1768:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22235:212;22302:12;;:24;;22319:6;22302:24;:16;:24;:::i;:::-;22287:12;:39;22371:10;22361:21;;;;:9;:21;;;;;;:33;;22387:6;22361:33;:25;:33;:::i;:::-;22347:10;22337:21;;;;:9;:21;;;;;:57;;;;22405:1;;:34;;-1:-1:-1;;;;;22405:1:0;;;;22432:6;17023:247;17193:58;;;-1:-1:-1;;;;;17193:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;17193:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;17140:122:0;;17173:5;;17140:18;:122::i;:::-;17023:247;;;:::o;374:106::-;432:7;463:1;459;:5;:13;;471:1;459:13;;;-1:-1:-1;467:1:0;;374:106;-1:-1:-1;374:106:0:o;7167:98::-;7247:10;7167:98;:::o;21999:228::-;22063:12;;:24;;22080:6;22063:24;:16;:24;:::i;:::-;22048:12;:39;22132:10;22122:21;;;;:9;:21;;;;;;:33;;22148:6;22122:33;:25;:33;:::i;:::-;22108:10;22098:21;;;;:9;:21;;;;;:57;;;;22166:1;;:53;;-1:-1:-1;;;;;22166:1:0;;;;22205:4;22212:6;22166:18;:53::i;9763:266::-;-1:-1:-1;;;;;9851:22:0;;9829:110;;;;-1:-1:-1;;;;;9829:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9976:6;;9955:38;;-1:-1:-1;;;;;9955:38:0;;;;9976:6;;9955:38;;9976:6;;9955:38;10004:6;:17;;-1:-1:-1;;;;;;10004:17:0;-1:-1:-1;;;;;10004:17:0;;;;;;;;;;9763:266::o;2591:226::-;2711:7;2747:12;2739:6;;;;2731:29;;;;-1:-1:-1;;;;;2731: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;2731:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2783:5:0;;;2591:226::o;4669:379::-;4789:7;4891:12;4884:5;4876:28;;;;-1:-1:-1;;;;;4876:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4876:28:0;;4915:9;4931:1;4927;:5;;;;;;;4669:379;-1:-1:-1;;;;;4669:379:0:o;19633:1176::-;20237:27;20245:5;-1:-1:-1;;;;;20237:25:0;;:27::i;:::-;20229:71;;;;;-1:-1:-1;;;;;20229:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20374:12;20388:23;20423:5;-1:-1:-1;;;;;20415:19:0;20435:4;20415: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;;;20415: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;;20373:67:0;;;;20459:7;20451:52;;;;;-1:-1:-1;;;;;20451:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20520:17;;:21;20516:286;;20693:10;20682:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20682:30:0;20656:134;;;;-1:-1:-1;;;;;20656:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19633:1176;;;;:::o;17278:284::-;17475:68;;;-1:-1:-1;;;;;17475:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;17475:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;179:29;160:49;;17422:132:0;;17455:5;;17422:18;:132::i;13721:850::-;13781:4;14471:20;;14301:66;14520:15;;;;;:42;;;14551:11;14539:8;:23;;14520:42;14512:51;13721:850;-1:-1:-1;;;;13721:850:0:o
Swarm Source
bzzr://43af54e9314b6a0f082361d746d34d375c4e37ad24cd7554276f9ab2b0d1278a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.