Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DVaultStaking
Compiler Version
v0.7.5+commit.eb77ed08
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-11-01
*/
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity 0.7.5;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
}
library LowGasSafeMath {
/// @notice Returns x + y, reverts if sum overflows uint256
/// @param x The augend
/// @param y The addend
/// @return z The sum of x and y
function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
require((z = x + y) >= x);
}
function add32(uint32 x, uint32 y) internal pure returns (uint32 z) {
require((z = x + y) >= x);
}
/// @notice Returns x - y, reverts if underflows
/// @param x The minuend
/// @param y The subtrahend
/// @return z The difference of x and y
function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
require((z = x - y) <= x);
}
function sub32(uint32 x, uint32 y) internal pure returns (uint32 z) {
require((z = x - y) <= x);
}
/// @notice Returns x * y, reverts if overflows
/// @param x The multiplicand
/// @param y The multiplier
/// @return z The product of x and y
function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
require(x == 0 || (z = x * y) / x == y);
}
/// @notice Returns x + y, reverts if overflows or underflows
/// @param x The augend
/// @param y The addend
/// @return z The sum of x and y
function add(int256 x, int256 y) internal pure returns (int256 z) {
require((z = x + y) >= x == (y >= 0));
}
/// @notice Returns x - y, reverts if overflows or underflows
/// @param x The minuend
/// @param y The subtrahend
/// @return z The difference of x and y
function sub(int256 x, int256 y) internal pure returns (int256 z) {
require((z = x - y) <= x == (y >= 0));
}
}
interface IERC20 {
function decimals() external view returns (uint8);
/**
* @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);
}
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard}
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _functionCallWithValue(
address target,
bytes memory data,
uint256 weiValue,
string memory errorMessage
) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.3._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.3._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
function addressToString(address _address) internal pure returns(string memory) {
bytes32 _bytes = bytes32(uint256(_address));
bytes memory HEX = "0123456789abcdef";
bytes memory _addr = new bytes(42);
_addr[0] = '0';
_addr[1] = 'x';
for(uint256 i = 0; i < 20; i++) {
_addr[2+i*2] = HEX[uint8(_bytes[i + 12] >> 4)];
_addr[3+i*2] = HEX[uint8(_bytes[i + 12] & 0x0f)];
}
return string(_addr);
}
}
library SafeERC20 {
using LowGasSafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender)
.sub(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
contract OwnableData {
address public owner;
address public pendingOwner;
}
contract Ownable is OwnableData {
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/// @notice `owner` defaults to msg.sender on construction.
constructor() {
owner = msg.sender;
emit OwnershipTransferred(address(0), msg.sender);
}
/// @notice Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner.
/// Can only be invoked by the current `owner`.
/// @param newOwner Address of the new owner.
/// @param direct True if `newOwner` should be set immediately. False if `newOwner` needs to use `claimOwnership`.
/// @param renounce Allows the `newOwner` to be `address(0)` if `direct` and `renounce` is True. Has no effect otherwise.
function transferOwnership(
address newOwner,
bool direct,
bool renounce
) public onlyOwner {
if (direct) {
// Checks
require(newOwner != address(0) || renounce, "Ownable: zero address");
// Effects
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
pendingOwner = address(0);
} else {
// Effects
pendingOwner = newOwner;
}
}
/// @notice Needs to be called by `pendingOwner` to claim ownership.
function claimOwnership() public {
address _pendingOwner = pendingOwner;
// Checks
require(msg.sender == _pendingOwner, "Ownable: caller != pending owner");
// Effects
emit OwnershipTransferred(owner, _pendingOwner);
owner = _pendingOwner;
pendingOwner = address(0);
}
/// @notice Only allows the `owner` to execute the function.
modifier onlyOwner() {
require(msg.sender == owner, "Ownable: caller is not the owner");
_;
}
}
interface IdVault is IERC20 {
function rebase( uint256 DVaultProfit_, uint epoch_) external returns (uint256);
function circulatingSupply() external view returns (uint256);
function balanceOf(address who) external view override returns (uint256);
function gonsForBalance( uint amount ) external view returns ( uint );
function balanceForGons( uint gons ) external view returns ( uint );
function index() external view returns ( uint );
}
interface IWarmup {
function retrieve( address staker_, uint amount_ ) external;
}
interface IDistributor {
function distribute() external returns ( bool );
}
contract DVaultStaking is Ownable {
using SafeMath for uint256;
using LowGasSafeMath for uint32;
using SafeERC20 for IERC20;
using SafeERC20 for IdVault;
IERC20 public immutable DVault;
IdVault public immutable dVault;
struct Epoch {
uint number;
uint distribute;
uint32 length;
uint32 endTime;
}
Epoch public epoch;
IDistributor public distributor;
uint public totalBonus;
IWarmup public warmupContract;
uint public warmupPeriod;
enum LOCKUPS { NONE, MONTH1, MONTH3, MONTH6 }
struct Lockup{
uint gonsWarmup;
uint gonsAccount;
uint initialDeposit;
uint256 multiplier;
uint256 lockTimestamp;
}
mapping( address => Lockup) public lockupInfo;
uint internal month = 2629746;
event LogStake(address indexed recipient, uint256 amount);
event LogClaim(address indexed recipient, uint256 amount);
event LogForfeit(address indexed recipient, uint256 memoAmount, uint256 timeAmount);
event LogDepositLock(address indexed user, bool locked);
event LogUnstake(address indexed recipient, uint256 amount);
event LogRebase(uint256 distribute);
event LogSetContract(CONTRACTS contractType, address indexed _contract);
event LogWarmupPeriod(uint period);
constructor (
address _DVault,
address _dVault,
uint32 _epochLength,
uint _firstEpochNumber,
uint32 _firstEpochTime
) {
require( _DVault != address(0) );
DVault = IERC20(_DVault);
require( _dVault != address(0) );
dVault = IdVault(_dVault);
epoch = Epoch({
length: _epochLength,
number: _firstEpochNumber,
endTime: _firstEpochTime,
distribute: 0
});
}
struct Claim {
uint deposit;
uint gons;
uint expiry;
bool lock; // prevents malicious delays
}
mapping( address => Claim ) public warmupInfo;
/**
@notice stake DVault to enter warmup
@param _amount uint
@return bool
*/
function stake( uint _amount, address _recipient, LOCKUPS _lockup ) external returns ( bool ) {
rebase();
DVault.safeTransferFrom( msg.sender, address(this), _amount );
Claim memory info = warmupInfo[ _recipient ];
require( !info.lock, "Deposits for account are locked" );
warmupInfo[ _recipient ] = Claim ({
deposit: info.deposit.add( _amount ),
gons: info.gons.add( dVault.gonsForBalance( _amount ) ),
expiry: epoch.number.add( warmupPeriod ),
lock: false
});
Lockup memory lock = lockupInfo[ _recipient ];
require(lock.multiplier == 0 || _lockup == LOCKUPS.NONE, "Account is already locked");
uint256 amountToTransfer = _amount;
if( _lockup == LOCKUPS.MONTH1 ) { // 1 - 1.25 Multiplier
lockupInfo[ _recipient ] = Lockup({
gonsWarmup: IdVault( dVault ).gonsForBalance( _amount.mul(25).div(100) ),
gonsAccount: IdVault( dVault ).gonsForBalance( _amount ),
initialDeposit: _amount,
multiplier: 125,
lockTimestamp: block.timestamp + month
});
amountToTransfer = _amount.mul(125)/100;
}
if( _lockup == LOCKUPS.MONTH3 ) { // 2 - 1.5 Multiplier
lockupInfo[ _recipient ] = Lockup({
gonsWarmup: IdVault( dVault ).gonsForBalance( _amount.mul(50).div(100) ),
gonsAccount: IdVault( dVault ).gonsForBalance( _amount ),
initialDeposit: _amount,
multiplier: 150,
lockTimestamp: block.timestamp + month*3
});
amountToTransfer = _amount.mul(150).div(100);
}
if( _lockup == LOCKUPS.MONTH6 ) { // 3 - 2 Multiplier
lockupInfo[ _recipient ] = Lockup({
gonsWarmup: IdVault( dVault ).gonsForBalance( _amount ),
gonsAccount: IdVault( dVault ).gonsForBalance( _amount ),
initialDeposit: _amount,
multiplier: 200,
lockTimestamp: block.timestamp + month*6
});
amountToTransfer = _amount*2;
}
dVault.safeTransfer( address(warmupContract), amountToTransfer );
emit LogStake(_recipient, _amount);
return true;
}
/**
@notice retrieve dVault from warmup
@param _recipient address
*/
function claim ( address _recipient ) external {
Claim memory info = warmupInfo[ _recipient ];
if ( epoch.number >= info.expiry && info.expiry != 0 ) {
delete warmupInfo[ _recipient ];
uint256 amount = dVault.balanceForGons( info.gons );
warmupContract.retrieve( _recipient, amount);
emit LogClaim(_recipient, amount);
}
}
/**
@notice forfeit dVault in warmup and retrieve DVault
*/
function forfeit() external {
Claim memory info = warmupInfo[ msg.sender ];
delete warmupInfo[ msg.sender ];
uint memoBalance = dVault.balanceForGons( info.gons );
warmupContract.retrieve( address(this), memoBalance);
DVault.safeTransfer( msg.sender, info.deposit);
emit LogForfeit(msg.sender, memoBalance, info.deposit);
}
/**
@notice prevent new deposits to address (protection from malicious activity)
*/
function toggleDepositLock() external {
warmupInfo[ msg.sender ].lock = !warmupInfo[ msg.sender ].lock;
emit LogDepositLock(msg.sender, warmupInfo[ msg.sender ].lock);
}
/**
@notice redeem dVault for DVault
@param _amount uint
@param _trigger bool
*/
function unstake( uint _amount, bool _trigger ) external {
if ( _trigger ) {
rebase();
}
Lockup memory lock = lockupInfo[ msg.sender ];
require(dVault.balanceOf(msg.sender) - _amount >= dVault.balanceForGons( lock.gonsAccount ), "Not enough dVault for lockup");
dVault.safeTransferFrom( msg.sender, address(this), _amount );
DVault.safeTransfer( msg.sender, _amount );
emit LogUnstake(msg.sender, _amount);
}
function unstakeLocked(bool _trigger) external{
if (_trigger){
rebase();
}
Lockup memory lock = lockupInfo[ msg.sender ];
if (lock.multiplier >0){
dVault.safeTransferFrom( msg.sender, address(this), dVault.balanceForGons( lock.gonsAccount ));
warmupContract.retrieve( address(this), dVault.balanceForGons( lock.gonsWarmup ));
if (lock.lockTimestamp <= block.timestamp){
DVault.safeTransfer( msg.sender, dVault.balanceForGons( lock.gonsWarmup + lock.gonsAccount ));
}
else{
DVault.safeTransfer( msg.sender, lock.initialDeposit );
}
delete lockupInfo[ msg.sender ];
}
}
/**
@notice returns the dVault index, which tracks rebase growth
@return uint
*/
function index() external view returns ( uint ) {
return dVault.index();
}
/**
@notice trigger rebase if epoch over
*/
function rebase() public {
if( epoch.endTime <= uint32(block.timestamp) ) {
dVault.rebase( epoch.distribute, epoch.number );
epoch.endTime = epoch.endTime.add32( epoch.length );
epoch.number++;
if ( address(distributor) != address(0) ) {
distributor.distribute();
}
uint balance = contractBalance();
uint staked = dVault.circulatingSupply();
if( balance <= staked ) {
epoch.distribute = 0;
} else {
epoch.distribute = balance.sub( staked );
}
emit LogRebase(epoch.distribute);
}
}
/**
@notice returns contract DVault holdings, including bonuses provided
@return uint
*/
function contractBalance() public view returns ( uint ) {
return DVault.balanceOf( address(this) ).add( totalBonus );
}
enum CONTRACTS { DISTRIBUTOR, WARMUP }
/**
@notice sets the contract address for LP staking
@param _contract address
*/
function setContract( CONTRACTS _contract, address _address ) external onlyOwner {
if( _contract == CONTRACTS.DISTRIBUTOR ) { // 0
distributor = IDistributor(_address);
} else if ( _contract == CONTRACTS.WARMUP ) { // 1
require( address(warmupContract) == address( 0 ), "Warmup cannot be set more than once" );
warmupContract = IWarmup(_address);
}
emit LogSetContract(_contract, _address);
}
/**
* @notice set warmup period in epoch's numbers for new stakers
* @param _warmupPeriod uint
*/
function setWarmup( uint _warmupPeriod ) external onlyOwner {
warmupPeriod = _warmupPeriod;
emit LogWarmupPeriod(_warmupPeriod);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_DVault","type":"address"},{"internalType":"address","name":"_dVault","type":"address"},{"internalType":"uint32","name":"_epochLength","type":"uint32"},{"internalType":"uint256","name":"_firstEpochNumber","type":"uint256"},{"internalType":"uint32","name":"_firstEpochTime","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"locked","type":"bool"}],"name":"LogDepositLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"memoAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timeAmount","type":"uint256"}],"name":"LogForfeit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"distribute","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum DVaultStaking.CONTRACTS","name":"contractType","type":"uint8"},{"indexed":true,"internalType":"address","name":"_contract","type":"address"}],"name":"LogSetContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogStake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogUnstake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"period","type":"uint256"}],"name":"LogWarmupPeriod","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"DVault","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dVault","outputs":[{"internalType":"contract IdVault","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distributor","outputs":[{"internalType":"contract IDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint256","name":"distribute","type":"uint256"},{"internalType":"uint32","name":"length","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forfeit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockupInfo","outputs":[{"internalType":"uint256","name":"gonsWarmup","type":"uint256"},{"internalType":"uint256","name":"gonsAccount","type":"uint256"},{"internalType":"uint256","name":"initialDeposit","type":"uint256"},{"internalType":"uint256","name":"multiplier","type":"uint256"},{"internalType":"uint256","name":"lockTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum DVaultStaking.CONTRACTS","name":"_contract","type":"uint8"},{"internalType":"address","name":"_address","type":"address"}],"name":"setContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_warmupPeriod","type":"uint256"}],"name":"setWarmup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"enum DVaultStaking.LOCKUPS","name":"_lockup","type":"uint8"}],"name":"stake","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleDepositLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"bool","name":"direct","type":"bool"},{"internalType":"bool","name":"renounce","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_trigger","type":"bool"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_trigger","type":"bool"}],"name":"unstakeLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"warmupContract","outputs":[{"internalType":"contract IWarmup","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"warmupInfo","outputs":[{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"gons","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"bool","name":"lock","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"warmupPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60c060405262282072600a553480156200001857600080fd5b5060405162003c3538038062003c35833981810160405260a08110156200003e57600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200014d57600080fd5b8473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620001bf57600080fd5b8373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250506040518060800160405280838152602001600081526020018463ffffffff1681526020018263ffffffff168152506002600082015181600001556020820151816001015560408201518160020160006101000a81548163ffffffff021916908363ffffffff16021790555060608201518160020160046101000a81548163ffffffff021916908363ffffffff160217905550905050505050505060805160601c60a05160601c6138f96200033c60003980610a2d5280610be05280610c86528061108e5280611348528061141f52806115a4528061167b528061180b52806118bc5280611a27528061207352806121245280612261528061237352806125b7528061289e528061294e52806129d45280612afe5280612e0d525080610ea75280610f185280611d5c52806122ad5280612bb45280612c085280612f7352506138f96000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638f077b83116100c3578063c9f464ff1161007c578063c9f464ff14610563578063cc7d56e814610591578063deac361a146105c1578063e30c3978146105df578063ed4acaa814610613578063f3d86e4a1461064757610158565b80638f077b8314610484578063900cf0cf1461048e5780639ebea88c146104cd578063a8dd07dc14610507578063af14052c14610525578063bfe109281461052f57610158565b80636069dead116101155780636069dead146102cd5780636746f4c214610301578063686a967914610370578063865e6fd3146103e15780638b7afe2e146104325780638da5cb5b1461045057610158565b8063078dfbe71461015d5780631e83409a146101b95780632986c0e5146101fd57806347e21bfb1461021b5780634e09e6171461024f5780634e71e0c8146102c3575b600080fd5b6101b76004803603606081101561017357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190803515159060200190929190505050610651565b005b6101fb600480360360208110156101cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061090b565b005b610205610bdc565b6040518082815260200191505060405180910390f35b610223610c84565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102916004803603602081101561026557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca8565b604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390f35b6102cb610cde565b005b6102d5610ea5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103436004803603602081101561031757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ec9565b60405180858152602001848152602001838152602001821515815260200194505050505060405180910390f35b6103c96004803603606081101561038657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff169060200190929190505050610f06565b60405180821515815260200191505060405180910390f35b610430600480360360408110156103f757600080fd5b81019080803560ff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ac7565b005b61043a611d52565b6040518082815260200191505060405180910390f35b610458611e2f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61048c611e53565b005b610496611f9e565b604051808581526020018481526020018363ffffffff1681526020018263ffffffff16815260200194505050505060405180910390f35b610505600480360360408110156104e357600080fd5b8101908080359060200190929190803515159060200190929190505050611fdc565b005b61050f612344565b6040518082815260200191505060405180910390f35b61052d61234a565b005b6105376126cd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61058f6004803603602081101561057957600080fd5b81019080803590602001909291905050506126f3565b005b6105bf600480360360208110156105a757600080fd5b810190808035151590602001909291905050506127f5565b005b6105c9612cbc565b6040518082815260200191505060405180910390f35b6105e7612cc2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61061b612ce8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61064f612d0e565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81156108c457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806107515750805b6107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4f776e61626c653a207a65726f2061646472657373000000000000000000000081525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610906565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b6109136137fc565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090508060400151600260000154101580156109b657506000816040015114155b15610bd857600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610aa057600080fd5b505afa158015610ab4573d6000803e3d6000fd5b505050506040513d6020811015610aca57600080fd5b81019080805190602001909291905050509050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66584836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015610b7057600080fd5b505af1158015610b84573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff167ffce6d5860f911bc27ece1365300332d2ddbe20c1adc46ee2eddd8f72c48053b2826040518082815260200191505060405180910390a2505b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632986c0e56040518163ffffffff1660e01b815260040160206040518083038186803b158015610c4457600080fd5b505afa158015610c58573d6000803e3d6000fd5b505050506040513d6020811015610c6e57600080fd5b8101908080519060200190929190505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60096020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16905084565b6000610f1061234a565b610f5d3330867f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613015909392919063ffffffff16565b610f656137fc565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050806060015115611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4465706f7369747320666f72206163636f756e7420617265206c6f636b65640081525060200191505060405180910390fd5b60405180608001604052806110848784600001516130d690919063ffffffff16565b815260200161114b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd39674896040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d602081101561112757600080fd5b810190808051906020019092919050505084602001516130d690919063ffffffff16565b815260200161116a6008546002600001546130d690919063ffffffff16565b815260200160001515815250600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506111fe613826565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090506000816060015114806112a557506000600381111561129757fe5b8460038111156112a357fe5b145b611317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4163636f756e7420697320616c7265616479206c6f636b65640000000000000081525060200191505060405180910390fd5b60008690506001600381111561132957fe5b85600381111561133557fe5b1415611578576040518060a001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd396746113a9606461139b60198e61315e90919063ffffffff16565b6131e490919063ffffffff16565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156113dd57600080fd5b505afa1580156113f1573d6000803e3d6000fd5b505050506040513d602081101561140757600080fd5b810190808051906020019092919050505081526020017f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561148e57600080fd5b505afa1580156114a2573d6000803e3d6000fd5b505050506040513d60208110156114b857600080fd5b81019080805190602001909291905050508152602001888152602001607d8152602001600a544201815250600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050606461156d607d8961315e90919063ffffffff16565b8161157457fe5b0490505b6002600381111561158557fe5b85600381111561159157fe5b14156117e0576040518060a001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd3967461160560646115f760328e61315e90919063ffffffff16565b6131e490919063ffffffff16565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561163957600080fd5b505afa15801561164d573d6000803e3d6000fd5b505050506040513d602081101561166357600080fd5b810190808051906020019092919050505081526020017f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156116ea57600080fd5b505afa1580156116fe573d6000803e3d6000fd5b505050506040513d602081101561171457600080fd5b81019080805190602001909291905050508152602001888152602001609681526020016003600a54024201815250600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506117dd60646117cf60968a61315e90919063ffffffff16565b6131e490919063ffffffff16565b90505b6003808111156117ec57fe5b8560038111156117f857fe5b14156119fe576040518060a001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d60208110156118a457600080fd5b810190808051906020019092919050505081526020017f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561192b57600080fd5b505afa15801561193f573d6000803e3d6000fd5b505050506040513d602081101561195557600080fd5b8101908080519060200190929190505050815260200188815260200160c881526020016006600a54024201815250600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506002870290505b611a6b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b8573ffffffffffffffffffffffffffffffffffffffff167f3dbdcfd4c1f2e08931aae3d544e149a1e643143f5234d166fe3debb783388495886040518082815260200191505060405180910390a2600193505050509392505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006001811115611b9557fe5b826001811115611ba157fe5b1415611bed5780600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611cf5565b600180811115611bf957fe5b826001811115611c0557fe5b1415611cf457600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806138566023913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b8073ffffffffffffffffffffffffffffffffffffffff167f74a3f47ee8c75a3912be4eeb0120ef2a7e6d7dfb822ea75f3f3843a3d366ae788360405180826001811115611d3e57fe5b815260200191505060405180910390a25050565b6000611e2a6006547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611de157600080fd5b505afa158015611df5573d6000803e3d6000fd5b505050506040513d6020811015611e0b57600080fd5b81019080805190602001909291905050506130d690919063ffffffff16565b905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1615600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f84980d6cdf0a9cada77d43f70d2d8419bd623f064919f2e227dbc39404866dc9600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1660405180821515815260200191505060405180910390a2565b60028060000154908060010154908060020160009054906101000a900463ffffffff16908060020160049054906101000a900463ffffffff16905084565b8015611feb57611fea61234a565b5b611ff3613826565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d82602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156120e657600080fd5b505afa1580156120fa573d6000803e3d6000fd5b505050506040513d602081101561211057600080fd5b8101908080519060200190929190505050837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121a957600080fd5b505afa1580156121bd573d6000803e3d6000fd5b505050506040513d60208110156121d357600080fd5b8101908080519060200190929190505050031015612259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4e6f7420656e6f75676820645661756c7420666f72206c6f636b75700000000081525060200191505060405180910390fd5b6122a63330857f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613015909392919063ffffffff16565b6122f133847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167faf14da4c9c7eeb91ef462950405340d31988005c789d867d3a1394f082105e89846040518082815260200191505060405180910390a2505050565b60065481565b4263ffffffff166002800160049054906101000a900463ffffffff1663ffffffff16116126cb577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663058ecdb46002600101546002600001546040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b1580156123f657600080fd5b505af115801561240a573d6000803e3d6000fd5b505050506040513d602081101561242057600080fd5b8101908080519060200190929190505050506124736002800160009054906101000a900463ffffffff166002800160049054906101000a900463ffffffff1663ffffffff166132d090919063ffffffff16565b6002800160046101000a81548163ffffffff021916908363ffffffff160217905550600260000160008154809291906001019190505550600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125a757600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561256a57600080fd5b505af115801561257e573d6000803e3d6000fd5b505050506040513d602081101561259457600080fd5b8101908080519060200190929190505050505b60006125b1611d52565b905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561261b57600080fd5b505afa15801561262f573d6000803e3d6000fd5b505050506040513d602081101561264557600080fd5b8101908080519060200190929190505050905080821161266f57600060026001018190555061268c565b61268281836132f690919063ffffffff16565b6002600101819055505b7f60633057fb2c2558942a126acc1dc7c639b6fdee660a0171f7500e2ac5918b2e6002600101546040518082815260200191505060405180910390a150505b565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806008819055507f0538aaeb1d9d528cb5e132864d95d2d7350a7a3879a90d0ce93164557c22ed31816040518082815260200191505060405180910390a150565b80156128045761280361234a565b5b61280c613826565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050600081606001511115612cb85761299333307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d85602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561291157600080fd5b505afa158015612925573d6000803e3d6000fd5b505050506040513d602081101561293b57600080fd5b81019080805190602001909291905050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613015909392919063ffffffff16565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a665307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d85600001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612a4757600080fd5b505afa158015612a5b573d6000803e3d6000fd5b505050506040513d6020811015612a7157600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015612ad557600080fd5b505af1158015612ae9573d6000803e3d6000fd5b5050505042816080015111612bfd57612bf8337f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d84602001518560000151016040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612b7757600080fd5b505afa158015612b8b573d6000803e3d6000fd5b505050506040513d6020811015612ba157600080fd5b81019080805190602001909291905050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b612c4d565b612c4c3382604001517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160009055600482016000905550505b5050565b60085481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612d166137fc565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612e8057600080fd5b505afa158015612e94573d6000803e3d6000fd5b505050506040513d6020811015612eaa57600080fd5b81019080805190602001909291905050509050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66530836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015612f5057600080fd5b505af1158015612f64573d6000803e3d6000fd5b50505050612fb73383600001517f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fed3bd88323251a29d30eb9552dda9f85957286ace369047d9b59ecccd4939e12828460000151604051808381526020018281526020019250505060405180910390a25050565b6130d0846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613340565b50505050565b600080828401905083811015613154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561317157600090506131de565b600082840290508284828161318257fe5b04146131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806138796021913960400191505060405180910390fd5b809150505b92915050565b600061322683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061342f565b905092915050565b6132cb8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613340565b505050565b60008263ffffffff1682840191508163ffffffff1610156132f057600080fd5b92915050565b600061333883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061350b565b905092915050565b60606133a2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166135cb9092919063ffffffff16565b905060008151111561342a578080602001905160208110156133c357600080fd5b8101908080519060200190929190505050613429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061389a602a913960400191505060405180910390fd5b5b505050565b600080831182906134db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134a0578082015181840152602081019050613485565b50505050905090810190601f1680156134cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816134e757fe5b0490508385816134f357fe5b0681850201851461350057fe5b809150509392505050565b60008383111582906135b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561357d578082015181840152602081019050613562565b50505050905090810190601f1680156135aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60606135da84846000856135e3565b90509392505050565b60606135ee856137e9565b613660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106136b0578051825260208201915060208101905060208303925061368d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613712576040519150601f19603f3d011682016040523d82523d6000602084013e613717565b606091505b5091509150811561372c5780925050506137e1565b60008151111561373f5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156137a657808201518184015260208101905061378b565b50505050905090810190601f1680156137d35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b905060008111915050919050565b60405180608001604052806000815260200160008152602001600081526020016000151581525090565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fe5761726d75702063616e6e6f7420626520736574206d6f7265207468616e206f6e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204d1b6de9117e229c76bf728fc78052eb31ff91505e899472597530440b1edb0564736f6c63430007050033000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609500000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf348000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000063632a64
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80638f077b83116100c3578063c9f464ff1161007c578063c9f464ff14610563578063cc7d56e814610591578063deac361a146105c1578063e30c3978146105df578063ed4acaa814610613578063f3d86e4a1461064757610158565b80638f077b8314610484578063900cf0cf1461048e5780639ebea88c146104cd578063a8dd07dc14610507578063af14052c14610525578063bfe109281461052f57610158565b80636069dead116101155780636069dead146102cd5780636746f4c214610301578063686a967914610370578063865e6fd3146103e15780638b7afe2e146104325780638da5cb5b1461045057610158565b8063078dfbe71461015d5780631e83409a146101b95780632986c0e5146101fd57806347e21bfb1461021b5780634e09e6171461024f5780634e71e0c8146102c3575b600080fd5b6101b76004803603606081101561017357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190803515159060200190929190505050610651565b005b6101fb600480360360208110156101cf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061090b565b005b610205610bdc565b6040518082815260200191505060405180910390f35b610223610c84565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102916004803603602081101561026557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca8565b604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390f35b6102cb610cde565b005b6102d5610ea5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103436004803603602081101561031757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ec9565b60405180858152602001848152602001838152602001821515815260200194505050505060405180910390f35b6103c96004803603606081101561038657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff169060200190929190505050610f06565b60405180821515815260200191505060405180910390f35b610430600480360360408110156103f757600080fd5b81019080803560ff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ac7565b005b61043a611d52565b6040518082815260200191505060405180910390f35b610458611e2f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61048c611e53565b005b610496611f9e565b604051808581526020018481526020018363ffffffff1681526020018263ffffffff16815260200194505050505060405180910390f35b610505600480360360408110156104e357600080fd5b8101908080359060200190929190803515159060200190929190505050611fdc565b005b61050f612344565b6040518082815260200191505060405180910390f35b61052d61234a565b005b6105376126cd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61058f6004803603602081101561057957600080fd5b81019080803590602001909291905050506126f3565b005b6105bf600480360360208110156105a757600080fd5b810190808035151590602001909291905050506127f5565b005b6105c9612cbc565b6040518082815260200191505060405180910390f35b6105e7612cc2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61061b612ce8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61064f612d0e565b005b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81156108c457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806107515750805b6107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4f776e61626c653a207a65726f2061646472657373000000000000000000000081525060200191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610906565b82600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b505050565b6109136137fc565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152505090508060400151600260000154101580156109b657506000816040015114155b15610bd857600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610aa057600080fd5b505afa158015610ab4573d6000803e3d6000fd5b505050506040513d6020811015610aca57600080fd5b81019080805190602001909291905050509050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66584836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015610b7057600080fd5b505af1158015610b84573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff167ffce6d5860f911bc27ece1365300332d2ddbe20c1adc46ee2eddd8f72c48053b2826040518082815260200191505060405180910390a2505b5050565b60007f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16632986c0e56040518163ffffffff1660e01b815260040160206040518083038186803b158015610c4457600080fd5b505afa158015610c58573d6000803e3d6000fd5b505050506040513d6020811015610c6e57600080fd5b8101908080519060200190929190505050905090565b7f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34881565b60096020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609581565b600b6020528060005260406000206000915090508060000154908060010154908060020154908060030160009054906101000a900460ff16905084565b6000610f1061234a565b610f5d3330867f000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609573ffffffffffffffffffffffffffffffffffffffff16613015909392919063ffffffff16565b610f656137fc565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050806060015115611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4465706f7369747320666f72206163636f756e7420617265206c6f636b65640081525060200191505060405180910390fd5b60405180608001604052806110848784600001516130d690919063ffffffff16565b815260200161114b7f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16631bd39674896040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d602081101561112757600080fd5b810190808051906020019092919050505084602001516130d690919063ffffffff16565b815260200161116a6008546002600001546130d690919063ffffffff16565b815260200160001515815250600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030160006101000a81548160ff0219169083151502179055509050506111fe613826565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090506000816060015114806112a557506000600381111561129757fe5b8460038111156112a357fe5b145b611317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4163636f756e7420697320616c7265616479206c6f636b65640000000000000081525060200191505060405180910390fd5b60008690506001600381111561132957fe5b85600381111561133557fe5b1415611578576040518060a001604052807f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16631bd396746113a9606461139b60198e61315e90919063ffffffff16565b6131e490919063ffffffff16565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156113dd57600080fd5b505afa1580156113f1573d6000803e3d6000fd5b505050506040513d602081101561140757600080fd5b810190808051906020019092919050505081526020017f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561148e57600080fd5b505afa1580156114a2573d6000803e3d6000fd5b505050506040513d60208110156114b857600080fd5b81019080805190602001909291905050508152602001888152602001607d8152602001600a544201815250600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050606461156d607d8961315e90919063ffffffff16565b8161157457fe5b0490505b6002600381111561158557fe5b85600381111561159157fe5b14156117e0576040518060a001604052807f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16631bd3967461160560646115f760328e61315e90919063ffffffff16565b6131e490919063ffffffff16565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561163957600080fd5b505afa15801561164d573d6000803e3d6000fd5b505050506040513d602081101561166357600080fd5b810190808051906020019092919050505081526020017f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156116ea57600080fd5b505afa1580156116fe573d6000803e3d6000fd5b505050506040513d602081101561171457600080fd5b81019080805190602001909291905050508152602001888152602001609681526020016003600a54024201815250600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506117dd60646117cf60968a61315e90919063ffffffff16565b6131e490919063ffffffff16565b90505b6003808111156117ec57fe5b8560038111156117f857fe5b14156119fe576040518060a001604052807f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d60208110156118a457600080fd5b810190808051906020019092919050505081526020017f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16631bd396748a6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561192b57600080fd5b505afa15801561193f573d6000803e3d6000fd5b505050506040513d602081101561195557600080fd5b8101908080519060200190929190505050815260200188815260200160c881526020016006600a54024201815250600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506002870290505b611a6b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16827f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b8573ffffffffffffffffffffffffffffffffffffffff167f3dbdcfd4c1f2e08931aae3d544e149a1e643143f5234d166fe3debb783388495886040518082815260200191505060405180910390a2600193505050509392505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60006001811115611b9557fe5b826001811115611ba157fe5b1415611bed5780600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611cf5565b600180811115611bf957fe5b826001811115611c0557fe5b1415611cf457600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806138566023913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b8073ffffffffffffffffffffffffffffffffffffffff167f74a3f47ee8c75a3912be4eeb0120ef2a7e6d7dfb822ea75f3f3843a3d366ae788360405180826001811115611d3e57fe5b815260200191505060405180910390a25050565b6000611e2a6006547f000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611de157600080fd5b505afa158015611df5573d6000803e3d6000fd5b505050506040513d6020811015611e0b57600080fd5b81019080805190602001909291905050506130d690919063ffffffff16565b905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1615600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f84980d6cdf0a9cada77d43f70d2d8419bd623f064919f2e227dbc39404866dc9600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff1660405180821515815260200191505060405180910390a2565b60028060000154908060010154908060020160009054906101000a900463ffffffff16908060020160049054906101000a900463ffffffff16905084565b8015611feb57611fea61234a565b5b611ff3613826565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505090507f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16637965d56d82602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156120e657600080fd5b505afa1580156120fa573d6000803e3d6000fd5b505050506040513d602081101561211057600080fd5b8101908080519060200190929190505050837f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156121a957600080fd5b505afa1580156121bd573d6000803e3d6000fd5b505050506040513d60208110156121d357600080fd5b8101908080519060200190929190505050031015612259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4e6f7420656e6f75676820645661756c7420666f72206c6f636b75700000000081525060200191505060405180910390fd5b6122a63330857f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16613015909392919063ffffffff16565b6122f133847f000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609573ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167faf14da4c9c7eeb91ef462950405340d31988005c789d867d3a1394f082105e89846040518082815260200191505060405180910390a2505050565b60065481565b4263ffffffff166002800160049054906101000a900463ffffffff1663ffffffff16116126cb577f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff1663058ecdb46002600101546002600001546040518363ffffffff1660e01b81526004018083815260200182815260200192505050602060405180830381600087803b1580156123f657600080fd5b505af115801561240a573d6000803e3d6000fd5b505050506040513d602081101561242057600080fd5b8101908080519060200190929190505050506124736002800160009054906101000a900463ffffffff166002800160049054906101000a900463ffffffff1663ffffffff166132d090919063ffffffff16565b6002800160046101000a81548163ffffffff021916908363ffffffff160217905550600260000160008154809291906001019190505550600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125a757600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e4fc6b6d6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561256a57600080fd5b505af115801561257e573d6000803e3d6000fd5b505050506040513d602081101561259457600080fd5b8101908080519060200190929190505050505b60006125b1611d52565b905060007f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16639358928b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561261b57600080fd5b505afa15801561262f573d6000803e3d6000fd5b505050506040513d602081101561264557600080fd5b8101908080519060200190929190505050905080821161266f57600060026001018190555061268c565b61268281836132f690919063ffffffff16565b6002600101819055505b7f60633057fb2c2558942a126acc1dc7c639b6fdee660a0171f7500e2ac5918b2e6002600101546040518082815260200191505060405180910390a150505b565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b806008819055507f0538aaeb1d9d528cb5e132864d95d2d7350a7a3879a90d0ce93164557c22ed31816040518082815260200191505060405180910390a150565b80156128045761280361234a565b5b61280c613826565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509050600081606001511115612cb85761299333307f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16637965d56d85602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561291157600080fd5b505afa158015612925573d6000803e3d6000fd5b505050506040513d602081101561293b57600080fd5b81019080805190602001909291905050507f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16613015909392919063ffffffff16565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a665307f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16637965d56d85600001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612a4757600080fd5b505afa158015612a5b573d6000803e3d6000fd5b505050506040513d6020811015612a7157600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015612ad557600080fd5b505af1158015612ae9573d6000803e3d6000fd5b5050505042816080015111612bfd57612bf8337f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16637965d56d84602001518560000151016040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612b7757600080fd5b505afa158015612b8b573d6000803e3d6000fd5b505050506040513d6020811015612ba157600080fd5b81019080805190602001909291905050507f000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609573ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b612c4d565b612c4c3382604001517f000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609573ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160009055600482016000905550505b5050565b60085481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612d166137fc565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060800160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815250509050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160006101000a81549060ff0219169055505060007f00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf34873ffffffffffffffffffffffffffffffffffffffff16637965d56d83602001516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612e8057600080fd5b505afa158015612e94573d6000803e3d6000fd5b505050506040513d6020811015612eaa57600080fd5b81019080805190602001909291905050509050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c3a2a66530836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015612f5057600080fd5b505af1158015612f64573d6000803e3d6000fd5b50505050612fb73383600001517f000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609573ffffffffffffffffffffffffffffffffffffffff1661322e9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fed3bd88323251a29d30eb9552dda9f85957286ace369047d9b59ecccd4939e12828460000151604051808381526020018281526020019250505060405180910390a25050565b6130d0846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613340565b50505050565b600080828401905083811015613154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008083141561317157600090506131de565b600082840290508284828161318257fe5b04146131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806138796021913960400191505060405180910390fd5b809150505b92915050565b600061322683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061342f565b905092915050565b6132cb8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613340565b505050565b60008263ffffffff1682840191508163ffffffff1610156132f057600080fd5b92915050565b600061333883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061350b565b905092915050565b60606133a2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166135cb9092919063ffffffff16565b905060008151111561342a578080602001905160208110156133c357600080fd5b8101908080519060200190929190505050613429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061389a602a913960400191505060405180910390fd5b5b505050565b600080831182906134db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134a0578082015181840152602081019050613485565b50505050905090810190601f1680156134cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816134e757fe5b0490508385816134f357fe5b0681850201851461350057fe5b809150509392505050565b60008383111582906135b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561357d578082015181840152602081019050613562565b50505050905090810190601f1680156135aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60606135da84846000856135e3565b90509392505050565b60606135ee856137e9565b613660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106136b0578051825260208201915060208101905060208303925061368d565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613712576040519150601f19603f3d011682016040523d82523d6000602084013e613717565b606091505b5091509150811561372c5780925050506137e1565b60008151111561373f5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156137a657808201518184015260208101905061378b565b50505050905090810190601f1680156137d35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b600080823b905060008111915050919050565b60405180608001604052806000815260200160008152602001600081526020016000151581525090565b6040518060a001604052806000815260200160008152602001600081526020016000815260200160008152509056fe5761726d75702063616e6e6f7420626520736574206d6f7265207468616e206f6e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204d1b6de9117e229c76bf728fc78052eb31ff91505e899472597530440b1edb0564736f6c63430007050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c2609500000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf348000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000063632a64
-----Decoded View---------------
Arg [0] : _DVault (address): 0xc90b6004e077b175e4E87A2A0615691Be6C26095
Arg [1] : _dVault (address): 0x90dbCEad4673383935a0D1d07E0B67235D6bf348
Arg [2] : _epochLength (uint32): 28800
Arg [3] : _firstEpochNumber (uint256): 1
Arg [4] : _firstEpochTime (uint32): 1667443300
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000c90b6004e077b175e4e87a2a0615691be6c26095
Arg [1] : 00000000000000000000000090dbcead4673383935a0d1d07e0b67235d6bf348
Arg [2] : 0000000000000000000000000000000000000000000000000000000000007080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000063632a64
Deployed Bytecode Sourcemap
22869:9503:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21081:506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27623:407;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30309:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23089:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23650:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21669:340;;;:::i;:::-;;23052:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24927:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25096:2421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31611:472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31314:133;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20246:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28613:192;;;:::i;:::-;;23253:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28932:489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23324:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30469:719;;;:::i;:::-;;23280:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32216:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29429:759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23395:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20273:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23359:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28118:383;;;:::i;:::-;;21081:506;22137:5;;;;;;;;;;22123:19;;:10;:19;;;22115:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21220:6:::1;21216:364;;;21294:1;21274:22;;:8;:22;;;;:34;;;;21300:8;21274:34;21266:68;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;21408:8;21380:37;;21401:5;::::0;::::1;;;;;;;;21380:37;;;;;;;;;;;;21440:8;21432:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;21486:1;21463:12;;:25;;;;;;;;;;;;;;;;;;21216:364;;;21560:8;21545:12;;:23;;;;;;;;;;;;;;;;;;21216:364;21081:506:::0;;;:::o;27623:407::-;27681:17;;:::i;:::-;27701:10;:24;27713:10;27701:24;;;;;;;;;;;;;;;27681:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27757:4;:11;;;27741:5;:12;;;:27;;:47;;;;;27787:1;27772:4;:11;;;:16;;27741:47;27736:287;;;27813:10;:24;27825:10;27813:24;;;;;;;;;;;;;;;;27806:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27852:14;27869:6;:21;;;27892:4;:9;;;27869:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27852:51;;27918:14;;;;;;;;;;;:23;;;27943:10;27956:6;27918:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27992:10;27983:28;;;28004:6;27983:28;;;;;;;;;;;;;;;;;;27736:287;;27623:407;;:::o;30309:88::-;30350:4;30375:6;:12;;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30368:21;;30309:88;:::o;23089:31::-;;;:::o;23650:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21669:340::-;21713:21;21737:12;;;;;;;;;;;21713:36;;21803:13;21789:27;;:10;:27;;;21781:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21919:13;21891:42;;21912:5;;;;;;;;;;21891:42;;;;;;;;;;;;21952:13;21944:5;;:21;;;;;;;;;;;;;;;;;;21999:1;21976:12;;:25;;;;;;;;;;;;;;;;;;21669:340;:::o;23052:30::-;;;:::o;24927:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25096:2421::-;25183:4;25201:8;:6;:8::i;:::-;25230:61;25255:10;25275:4;25282:7;25230:6;:23;;;;:61;;;;;;:::i;:::-;25304:17;;:::i;:::-;25324:10;:24;25336:10;25324:24;;;;;;;;;;;;;;;25304:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25369:4;:9;;;25368:10;25359:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25455:221;;;;;;;;25486:27;25504:7;25486:4;:12;;;:16;;:27;;;;:::i;:::-;25455:221;;;;25534:49;25549:6;:21;;;25572:7;25549:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25534:4;:9;;;:13;;:49;;;;:::i;:::-;25455:221;;;;25606:32;25624:12;;25606:5;:12;;;:16;;:32;;;;:::i;:::-;25455:221;;;;25659:5;25455:221;;;;;25428:10;:24;25440:10;25428:24;;;;;;;;;;;;;;;:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25697:18;;:::i;:::-;25718:10;:24;25730:10;25718:24;;;;;;;;;;;;;;;25697:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25780:1;25761:4;:15;;;:20;:47;;;;25796:12;25785:23;;;;;;;;:7;:23;;;;;;;;;25761:47;25753:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25859:24;25886:7;25859:34;;25921:14;25910:25;;;;;;;;:7;:25;;;;;;;;;25906:487;;;26005:322;;;;;;;;26052:6;26043:32;;;26077:24;26097:3;26077:15;26089:2;26077:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;26043:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26005:322;;;;26144:6;26135:32;;;26169:7;26135:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26005:322;;;;26213:7;26005:322;;;;26251:3;26005:322;;;;26306:5;;26288:15;:23;26005:322;;;25978:10;:24;25990:10;25978:24;;;;;;;;;;;;;;;:349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26378:3;26361:16;26373:3;26361:7;:11;;:16;;;;:::i;:::-;:20;;;;;;26342:39;;25906:487;26418:14;26407:25;;;;;;;;:7;:25;;;;;;;;;26403:495;;;26501:324;;;;;;;;26548:6;26539:32;;;26573:24;26593:3;26573:15;26585:2;26573:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;26539:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26501:324;;;;26640:6;26631:32;;;26665:7;26631:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26501:324;;;;26709:7;26501:324;;;;26747:3;26501:324;;;;26808:1;26802:5;;:7;26784:15;:25;26501:324;;;26474:10;:24;26486:10;26474:24;;;;;;;;;;;;;;;:351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26861:25;26882:3;26861:16;26873:3;26861:7;:11;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;26842:44;;26403:495;26923:14;26912:25;;;;;;;;:7;:25;;;;;;;;;26908:458;;;27004:307;;;;;;;;27051:6;27042:32;;;27076:7;27042:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27004:307;;;;27126:6;27117:32;;;27151:7;27117:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27004:307;;;;27195:7;27004:307;;;;27233:3;27004:307;;;;27294:1;27288:5;;:7;27270:15;:25;27004:307;;;26977:10;:24;26989:10;26977:24;;;;;;;;;;;;;;;:334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27353:1;27345:7;:9;27326:28;;26908:458;27378:64;27407:14;;;;;;;;;;;27424:16;27378:6;:19;;;;:64;;;;;:::i;:::-;27467:10;27458:29;;;27479:7;27458:29;;;;;;;;;;;;;;;;;;27505:4;27498:11;;;;;25096:2421;;;;;:::o;31611:472::-;22137:5;;;;;;;;;;22123:19;;:10;:19;;;22115:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31720:21:::1;31707:34;;;;;;;;:9;:34;;;;;;;;;31703:322;;;31791:8;31764:11;;:36;;;;;;;;;;;;;;;;;;31703:322;;;31836:16;31823:29:::0;::::1;;;;;;;:9;:29;;;;;;;;;31818:207;;;31920:1;31884:39;;31892:14;;;;;;;;;;;31884:39;;;31875:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32004:8;31979:14;;:34;;;;;;;;;;;;;;;;;;31818:207;31703:322;32066:8;32040:35;;;32055:9;32040:35;;;;;;;;;;;;;;;;;;;;;;;;;;31611:472:::0;;:::o;31314:133::-;31363:4;31388:51;31427:10;;31388:6;:16;;;31414:4;31388:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:37;;:51;;;;:::i;:::-;31381:58;;31314:133;:::o;20246:20::-;;;;;;;;;;;;:::o;28613:192::-;28695:10;:24;28707:10;28695:24;;;;;;;;;;;;;;;:29;;;;;;;;;;;;28694:30;28662:10;:24;28674:10;28662:24;;;;;;;;;;;;;;;:29;;;:62;;;;;;;;;;;;;;;;;;28755:10;28740:57;;;28767:10;:24;28779:10;28767:24;;;;;;;;;;;;;;;:29;;;;;;;;;;;;28740:57;;;;;;;;;;;;;;;;;;;;28613:192::o;23253:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28932:489::-;29005:8;29000:51;;;29031:8;:6;:8::i;:::-;29000:51;29061:18;;:::i;:::-;29082:10;:24;29094:10;29082:24;;;;;;;;;;;;;;;29061:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29167:6;:21;;;29190:4;:16;;;29167:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29156:7;29125:6;:16;;;29142:10;29125:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:38;:83;;29117:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29252:61;29277:10;29297:4;29304:7;29252:6;:23;;;;:61;;;;;;:::i;:::-;29324:42;29345:10;29357:7;29324:6;:19;;;;:42;;;;;:::i;:::-;29393:10;29382:31;;;29405:7;29382:31;;;;;;;;;;;;;;;;;;28932:489;;;:::o;23324:22::-;;;;:::o;30469:719::-;30533:15;30509:40;;:5;:13;;;;;;;;;;;;:40;;;30505:676;;30569:6;:13;;;30584:5;:16;;;30602:5;:12;;;30569:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30649:35;30670:5;:12;;;;;;;;;;;;30649:5;:13;;;;;;;;;;;;:19;;;;:35;;;;:::i;:::-;30633:5;:13;;;:51;;;;;;;;;;;;;;;;;;30699:5;:12;;;:14;;;;;;;;;;;;;30779:1;30747:34;;30755:11;;;;;;;;;;;30747:34;;;30742:101;;30803:11;;;;;;;;;;;:22;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30742:101;30859:12;30874:17;:15;:17::i;:::-;30859:32;;30906:11;30920:6;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30906:40;;30978:6;30967:7;:17;30963:160;;31025:1;31006:5;:16;;:20;;;;30963:160;;;31086:21;31099:6;31086:7;:11;;:21;;;;:::i;:::-;31067:5;:16;;:40;;;;30963:160;31142:27;31152:5;:16;;;31142:27;;;;;;;;;;;;;;;;;;30505:676;;;30469:719::o;23280:31::-;;;;;;;;;;;;;:::o;32216:153::-;22137:5;;;;;;;;;;22123:19;;:10;:19;;;22115:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32302:13:::1;32287:12;:28;;;;32331:30;32347:13;32331:30;;;;;;;;;;;;;;;;;;32216:153:::0;:::o;29429:759::-;29490:8;29486:48;;;29514:8;:6;:8::i;:::-;29486:48;29544:18;;:::i;:::-;29565:10;:24;29577:10;29565:24;;;;;;;;;;;;;;;29544:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29621:1;29604:4;:15;;;:18;29600:577;;;29638:94;29663:10;29683:4;29690:6;:21;;;29713:4;:16;;;29690:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29638:6;:23;;;;:94;;;;;;:::i;:::-;29747:14;;;;;;;;;;;:23;;;29780:4;29787:6;:21;;;29810:4;:15;;;29787:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29747:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29871:15;29849:4;:18;;;:37;29845:277;;29906:93;29927:10;29939:6;:21;;;29980:4;:16;;;29962:4;:15;;;:34;29939:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29906:6;:19;;;;:93;;;;;:::i;:::-;29845:277;;;30052:54;30073:10;30085:4;:19;;;30052:6;:19;;;;:54;;;;;:::i;:::-;29845:277;30139:10;:24;30151:10;30139:24;;;;;;;;;;;;;;;;30132:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29600:577;29429:759;;:::o;23395:24::-;;;;:::o;20273:27::-;;;;;;;;;;;;;:::o;23359:29::-;;;;;;;;;;;;;:::o;28118:383::-;28157:17;;:::i;:::-;28177:10;:24;28189:10;28177:24;;;;;;;;;;;;;;;28157:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28219:10;:24;28231:10;28219:24;;;;;;;;;;;;;;;;28212:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28254:16;28273:6;:21;;;28296:4;:9;;;28273:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28254:53;;28318:14;;;;;;;;;;;:23;;;28351:4;28359:11;28318:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28382:46;28403:10;28415:4;:12;;;28382:6;:19;;;;:46;;;;;:::i;:::-;28455:10;28444:49;;;28467:11;28480:4;:12;;;28444:49;;;;;;;;;;;;;;;;;;;;;;;;28118:383;;:::o;17325:205::-;17426:96;17446:5;17476:27;;;17505:4;17511:2;17515:5;17453:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17426:19;:96::i;:::-;17325:205;;;;:::o;336:181::-;394:7;414:9;430:1;426;:5;414:17;;455:1;450;:6;;442:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508:1;501:8;;;336:181;;;;:::o;1690:471::-;1748:7;1998:1;1993;:6;1989:47;;;2023:1;2016:8;;;;1989:47;2048:9;2064:1;2060;:5;2048:17;;2093:1;2088;2084;:5;;;;;;:10;2076:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2152:1;2145:8;;;1690:471;;;;;:::o;2637:132::-;2695:7;2722:39;2726:1;2729;2722:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;2715:46;;2637:132;;;;:::o;17140:177::-;17223:86;17243:5;17273:23;;;17298:2;17302:5;17250:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17223:19;:86::i;:::-;17140:177;;;:::o;3859:112::-;3917:8;3961:1;3946:16;;3955:1;3951;:5;3947:9;;;3946:16;;;;3938:25;;;;;;3859:112;;;;:::o;800:136::-;858:7;885:43;889:1;892;885:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;878:50;;800:136;;;;:::o;19450:761::-;19874:23;19900:69;19928:4;19900:69;;;;;;;;;;;;;;;;;19908:5;19900:27;;;;:69;;;;;:::i;:::-;19874:95;;20004:1;19984:10;:17;:21;19980:224;;;20126:10;20115:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20107:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19980:224;19450:761;;;:::o;3265:275::-;3351:7;3383:1;3379;:5;3386:12;3371:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3410:9;3426:1;3422;:5;;;;;;3410:17;;3462:1;3458;:5;;;;;;3454:1;3450;:5;:13;3445:1;:18;3438:26;;;;3531:1;3524:8;;;3265:275;;;;;:::o;1239:192::-;1325:7;1358:1;1353;:6;;1361:12;1345:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1385:9;1401:1;1397;:5;1385:17;;1422:1;1415:8;;;1239:192;;;;;:::o;10971:230::-;11108:12;11140:53;11163:6;11171:4;11177:1;11180:12;11140:22;:53::i;:::-;11133:60;;10971:230;;;;;:::o;12642:1025::-;12818:12;12851:18;12862:6;12851:10;:18::i;:::-;12843:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12977:12;12991:23;13018:6;:11;;13038:8;13049:4;13018:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12976:78;;;;13069:7;13065:595;;;13100:10;13093:17;;;;;;13065:595;13234:1;13214:10;:17;:21;13210:439;;;13477:10;13471:17;13538:15;13525:10;13521:2;13517:19;13510:44;13425:148;13620:12;13613:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12642:1025;;;;;;;:::o;8460:422::-;8520:4;8728:12;8839:7;8827:20;8819:28;;8873:1;8866:4;:8;8859:15;;;8460:422;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://4d1b6de9117e229c76bf728fc78052eb31ff91505e899472597530440b1edb05
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.