ETH Price: $3,469.00 (-1.35%)
Gas: 3 Gwei

Contract

0x40F67f6924F7934669728be9bEbaE56F9ed7e96b
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim Reward200726512024-06-12 2:05:4742 days ago1718157947IN
0x40F67f69...F9ed7e96b
0 ETH0.000593888.55599149
Claim Reward189665962024-01-09 2:58:59197 days ago1704769139IN
0x40F67f69...F9ed7e96b
0 ETH0.0003308815.70875913
Claim Reward189417852024-01-05 14:53:11200 days ago1704466391IN
0x40F67f69...F9ed7e96b
0 ETH0.0007176634.07074648
Claim Reward188534892023-12-24 5:15:47213 days ago1703394947IN
0x40F67f69...F9ed7e96b
0 ETH0.0005146524.4329034
Claim Reward187216072023-12-05 17:23:11231 days ago1701796991IN
0x40F67f69...F9ed7e96b
0 ETH0.0017999185.44986303
Claim Reward186323342023-11-23 5:25:47244 days ago1700717147IN
0x40F67f69...F9ed7e96b
0 ETH0.0009834332.008755
Claim Reward186322592023-11-23 5:10:35244 days ago1700716235IN
0x40F67f69...F9ed7e96b
0 ETH0.000627929.80931565
Claim Reward185825992023-11-16 6:17:11251 days ago1700115431IN
0x40F67f69...F9ed7e96b
0 ETH0.0007050622.94842825
Claim Reward185825872023-11-16 6:14:47251 days ago1700115287IN
0x40F67f69...F9ed7e96b
0 ETH0.0005596225.43737489
Claim Reward185824992023-11-16 5:56:59251 days ago1700114219IN
0x40F67f69...F9ed7e96b
0 ETH0.0004932323.4160247
Claim Reward185823492023-11-16 5:26:35251 days ago1700112395IN
0x40F67f69...F9ed7e96b
0 ETH0.0005337125.33775426
Claim Reward185334522023-11-09 9:20:23258 days ago1699521623IN
0x40F67f69...F9ed7e96b
0 ETH0.0031650136.58470365
Claim Reward185206462023-11-07 14:22:59259 days ago1699366979IN
0x40F67f69...F9ed7e96b
0 ETH0.0006750732.04896832
Claim Reward184319442023-10-26 4:14:59272 days ago1698293699IN
0x40F67f69...F9ed7e96b
0 ETH0.0019522728.12586905
Claim Reward181748782023-09-20 4:59:35308 days ago1695185975IN
0x40F67f69...F9ed7e96b
0 ETH0.000928298.95932285
Claim Reward178070082023-07-30 16:22:35359 days ago1690734155IN
0x40F67f69...F9ed7e96b
0 ETH0.0020548123.75173923
Claim Reward173802202023-05-31 17:05:11419 days ago1685552711IN
0x40F67f69...F9ed7e96b
0 ETH0.0055455364.10133633
Claim Reward172226492023-05-09 11:39:35441 days ago1683632375IN
0x40F67f69...F9ed7e96b
0 ETH0.0061350470.91555927
Claim Reward170791842023-04-19 7:29:11462 days ago1681889351IN
0x40F67f69...F9ed7e96b
0 ETH0.0048304869.59150706
Claim Reward168419472023-03-16 17:39:35495 days ago1678988375IN
0x40F67f69...F9ed7e96b
0 ETH0.0021605124.97360774
Claim Reward168408042023-03-16 13:48:59495 days ago1678974539IN
0x40F67f69...F9ed7e96b
0 ETH0.0017050124.56372765
Claim Reward167561992023-03-04 16:15:35507 days ago1677946535IN
0x40F67f69...F9ed7e96b
0 ETH0.0024458428.27178434
Claim Reward167545312023-03-04 10:37:35508 days ago1677926255IN
0x40F67f69...F9ed7e96b
0 ETH0.0016220818.74981646
Claim Reward166684372023-02-20 8:00:59520 days ago1676880059IN
0x40F67f69...F9ed7e96b
0 ETH0.0020928624.19164321
Claim Reward166589322023-02-18 23:58:47521 days ago1676764727IN
0x40F67f69...F9ed7e96b
0 ETH0.0015366317.76205575
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xf54540D9...dEb3acF40
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SingularityLaunchpad

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-15
*/

// File: @openzeppelin\contracts\utils\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin\contracts\token\ERC20\IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin\contracts\math\SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: @openzeppelin\contracts\token\ERC20\ERC20Burnable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: @openzeppelin\contracts\utils\Address.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        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);
    }

    /**
     * @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.4._
     */
    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.4._
     */
    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);
            }
        }
    }
}

// File: @openzeppelin\contracts\token\ERC20\SafeERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin\contracts\utils\ReentrancyGuard.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin\contracts\access\Ownable.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\SingularityLaunchpad.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.2;
contract SingularityLaunchpad is Ownable, ReentrancyGuard {

    using SafeMath for uint;
    using SafeERC20 for IERC20;

	IERC20 public depositToken;

	uint public stakingStartTime;
	uint public stakingFinishTime;
	
	uint public harvestStartTime;
	address payable public depositReceiverAddress;
    
	// Tier wise investment limits
    uint[] public userMinStakeByTier;
    uint[] public userMaxStakeByTier;
    
	uint public stakingLimit;

	mapping(address => uint) public balances;
	uint public totalStaked;

	struct Reward {
		address addr;
		uint amount;
	}

	Reward public reward;

	// Off Chain Signer Address
	address public verifyAddress;
	//mapping(address => bool) public isVerified;

	//Fee Attributes 
	address payable public feeReceiverAddress;
	uint public feePercent;

	// Allocation Attributes
	uint public initialClaimPercentage;
	uint public claimPercentagePerMonth;
	mapping(address => uint) public claimed;
	
	// Events
	event NewReward(address indexed tokenAddress, uint amount);
	event Staked(address indexed user, uint indexed feeAmount, uint amount);
	event Claimed(address indexed user, address indexed tokenAddress, uint amount);
	event WithdrawnLostTokens(address indexed owner, address tokenAddress, uint amountWithdrawn);

	constructor(
		address _depositTokenAddress,
		address payable _depositReceiverAddress,
		address payable _feeReceiverAddress,
		
		uint[] memory _userMinStakeByTier,
		uint[] memory _userMaxStakeByTier,
		
		uint _stakingStartTime,
		uint _stakingFinishTime,
		uint _stakingLimit,
		uint _feePercent,
		
		uint _harvestStartTime,
		address _verifyAddress
	) public {
		depositToken = IERC20(_depositTokenAddress);
		depositReceiverAddress = _depositReceiverAddress;
		feeReceiverAddress = _feeReceiverAddress;
		
		//userMinStakeByTier = _userMinStakeByTier;
		for(uint i=0;i<_userMinStakeByTier.length; i++) {
			userMinStakeByTier.push(_userMinStakeByTier[i]);
		}
		
		//userMaxStakeByTier = _userMaxStakeByTier;
		for(uint j=0;j<_userMaxStakeByTier.length;j++) {
			userMaxStakeByTier.push(_userMaxStakeByTier[j]);
		}

		stakingStartTime = _stakingStartTime;
		stakingFinishTime = _stakingFinishTime;
		
		stakingLimit = _stakingLimit;
		feePercent = _feePercent;
		
		harvestStartTime = _harvestStartTime;  // Will be updated during the addReward configurations
		verifyAddress = _verifyAddress;
	}

    function changeSetup(address _verifyAddress) external onlyOwner {
		verifyAddress = _verifyAddress;
	}

	function addReward(uint _harvestStartTime, address _rewardAddress, uint _rewardAmount, uint _initialClaimPercentage, uint _claimPercentagePerMonth) external onlyOwner {
	    
		require(_rewardAddress != address(0) && _rewardAmount > 0, "Add Reward - Invalid inputs");
		require(_harvestStartTime >= stakingFinishTime, "harvestStartTime should be more than stakingFinishTime");
	    require(reward.addr == address(0), "Allocation token already set");
		require(_initialClaimPercentage > 0 || _claimPercentagePerMonth > 0, "Invalid claim percentages" );

		harvestStartTime = _harvestStartTime;
	    
	    initialClaimPercentage = _initialClaimPercentage;
	    claimPercentagePerMonth = _claimPercentagePerMonth;
		reward = Reward({addr: _rewardAddress, amount: _rewardAmount});

		// Transffer the Allocation amount to the contract - Balance check might not be needed as it is executed by owner only
		IERC20(_rewardAddress).safeTransferFrom(msg.sender, address(this), _rewardAmount);

		emit NewReward(_rewardAddress, _rewardAmount);
	}
	
	function stake(uint amount, uint userTierIndex, uint8 v, bytes32 r, bytes32 s) external payable nonReentrant() {
		
		require(block.timestamp > stakingStartTime && block.timestamp < stakingFinishTime, "Not an investment period");
		require(verify(userTierIndex, v, r, s), "Invalid signature");
		require(userTierIndex < userMaxStakeByTier.length && userTierIndex < userMinStakeByTier.length, "Invalid user tier");

		// Check whether the investment is ERC20 or Eth
		if(address(depositToken) == address(0)) {
		    amount = msg.value;
		}
		
		// Check for the minimum investment limit
		require(balances[msg.sender].add(amount) >= userMinStakeByTier[userTierIndex] && amount > 0, "Violates min limit");
		// Check for the maximum investment limit
		require(balances[msg.sender].add(amount) <= userMaxStakeByTier[userTierIndex], "Violates max limit");
		// Check for the overall pool limit
		require(totalStaked.add(amount) <= stakingLimit, "Violates pool limit");
		
		// Need to check if need to verify the address every time user invests -
		// Right now we will be having the Signature validation for every investment transaction to provide provision to check across the pools
		//isVerified[msg.sender] = true;
        
		// Compute the Fee - The fee amount will be subtracted during the allocation amount calculation
        uint _fee = amount.mul(feePercent).div(10000);

		// Update the User Balance and TotalStaked
		balances[msg.sender] = balances[msg.sender].add(amount);
		totalStaked = totalStaked.add(amount);

		// Transfer the investment Amount to the Receiver Adddress
        if(address(depositToken) == address(0)) {
        	depositReceiverAddress.transfer(amount.sub(_fee));
    	} else {
			depositToken.safeTransferFrom(msg.sender, depositReceiverAddress, amount.sub(_fee));
    	}
	    
		// Transfer the fee to the fee receiver address - Fee can be optional when it is set to zero
		if(_fee > 0) {
			if(address(depositToken) == address(0)) {
	        	feeReceiverAddress.transfer(_fee);
	    	} else {
				depositToken.safeTransferFrom(msg.sender, feeReceiverAddress, _fee);
	    	}
		}
		
		emit Staked(msg.sender, _fee, amount);
	}

	function claimReward() external nonReentrant() {

		require(block.timestamp >= harvestStartTime, "Not a claim period");
		require(balances[msg.sender] > 0, "Invalid claim request");

		// Get the allocation amount
		uint toClaim = calculateReward(msg.sender);

		require(toClaim > 0, "No claim pending");

		// Update the user claimed amount
		claimed[msg.sender] += toClaim;
		
		// Transfer the claim to the investor
		IERC20(reward.addr).safeTransfer(msg.sender, toClaim);

		emit Claimed(msg.sender, reward.addr, toClaim);
	}

	function calculateTotalReward(address user) public view returns(uint) {
		// if(totalStaked == 0) {
		// 	return 0;
		// }
		
		// return reward.amount.mul(balances[user]).div(totalStaked);

		// Compute the number of tokens allocation based on the user investment
		if(stakingLimit == 0) {
			return 0;
		}
		
		// Compute the Fee
        uint _fee = balances[user].mul(feePercent).div(10000);

		return reward.amount.mul(balances[user].sub(_fee)).div(stakingLimit);
	}
	

	function calculateReward(address user) public view returns(uint) {
		if(block.timestamp < harvestStartTime) {
			return 0;
		}

		uint userPart = calculateTotalReward(user);

		// Compute the initial allocation
		uint initialAmount = userPart.mul(initialClaimPercentage).div(10000);
		// Compute the monthly allocation
		uint monthlyAmount = userPart.mul(claimPercentagePerMonth).div(10000).mul(block.timestamp.sub(harvestStartTime).div(30 days));

		// Compute the current allocation 
		uint totalAmount;
		if(initialAmount.add(monthlyAmount) >= userPart) {
			totalAmount = userPart;
		} else {
			totalAmount = initialAmount.add(monthlyAmount);
		}

		// Reduce the previos claims from the computed allocation
		return totalAmount.sub(claimed[user]);
	}

	function getNextRewardDate(address user) public view returns(uint) {

		// If there is no investment from user
		if(balances[user] == 0) {
			return 0;
		}

		// If Allocation is not started
		if(block.timestamp < harvestStartTime) {
			return harvestStartTime;
		}
		
		// Compute the next allocation date
		uint monthesPassed = block.timestamp.sub(harvestStartTime).div(30 days);
		uint totalPercantage = initialClaimPercentage.add(claimPercentagePerMonth.mul(monthesPassed)).div(10000);
		
		// If the user has claimed all the allocation
		if(totalPercantage >= 100) {
		    return 0;
		}
		
		// Return the next allocation timestamp
		return harvestStartTime.add(monthesPassed.add(1).mul(30 days));
	}
	
	//if something wrong
	function withdrawLostTokens(address _tokenAddress) external onlyOwner {
		uint balanceOfThis;
		if(_tokenAddress == address(0)) {
			balanceOfThis = address(this).balance;
			msg.sender.transfer(balanceOfThis);
		} else {
			balanceOfThis = IERC20(_tokenAddress).balanceOf(address(this));
			IERC20(_tokenAddress).safeTransfer(owner(), balanceOfThis);
		}

		emit WithdrawnLostTokens(owner(), _tokenAddress, balanceOfThis);
	}

	/// signature methods.
	function verify(uint userTierIndex, uint8 v, bytes32 r, bytes32 s) internal view returns(bool) {

		// if(isVerified[msg.sender]) {
		// 	return true;
		// }
		
		bytes32 message = prefixed(keccak256(abi.encodePacked(userTierIndex, msg.sender, address(this))));
        return (ecrecover(message, v, r, s) == verifyAddress);
	}

    // function recoverSigner(bytes32 message, bytes memory sig)
    //     internal
    //     pure
    //     returns (address)
    // {
    //     (uint8 v, bytes32 r, bytes32 s) = abi.decode(sig, (uint8, bytes32, bytes32));

    //     return ecrecover(message, v, r, s);
    // }

    /// builds a prefixed hash to mimic the behavior of eth_sign.
    function prefixed(bytes32 hash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_depositTokenAddress","type":"address"},{"internalType":"address payable","name":"_depositReceiverAddress","type":"address"},{"internalType":"address payable","name":"_feeReceiverAddress","type":"address"},{"internalType":"uint256[]","name":"_userMinStakeByTier","type":"uint256[]"},{"internalType":"uint256[]","name":"_userMaxStakeByTier","type":"uint256[]"},{"internalType":"uint256","name":"_stakingStartTime","type":"uint256"},{"internalType":"uint256","name":"_stakingFinishTime","type":"uint256"},{"internalType":"uint256","name":"_stakingLimit","type":"uint256"},{"internalType":"uint256","name":"_feePercent","type":"uint256"},{"internalType":"uint256","name":"_harvestStartTime","type":"uint256"},{"internalType":"address","name":"_verifyAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NewReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"feeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountWithdrawn","type":"uint256"}],"name":"WithdrawnLostTokens","type":"event"},{"inputs":[{"internalType":"uint256","name":"_harvestStartTime","type":"uint256"},{"internalType":"address","name":"_rewardAddress","type":"address"},{"internalType":"uint256","name":"_rewardAmount","type":"uint256"},{"internalType":"uint256","name":"_initialClaimPercentage","type":"uint256"},{"internalType":"uint256","name":"_claimPercentagePerMonth","type":"uint256"}],"name":"addReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"calculateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"calculateTotalReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_verifyAddress","type":"address"}],"name":"changeSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimPercentagePerMonth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"depositReceiverAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"depositToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiverAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNextRewardDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"harvestStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialClaimPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reward","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"userTierIndex","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"stake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"stakingFinishTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userMaxStakeByTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"userMinStakeByTier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"verifyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawLostTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806392dfaddb116100ec578063c884ef831161008a578063dc0cfd8c11610064578063dc0cfd8c14610529578063de35573414610553578063f2fde38b14610586578063f481e863146105b9576101b7565b8063c884ef83146104ae578063c89039c5146104e1578063d82e3962146104f6576101b7565b8063b138817f116100c6578063b138817f1461043c578063b88a802f1461046f578063bebc83f814610484578063c5910b2714610499576101b7565b806392dfaddb146103a9578063a3546be4146103f4578063a5ebf83514610427576101b7565b8063715018a611610159578063817b1cd211610133578063817b1cd21461033757806386b4de681461034c5780638cb1a4c0146103615780638da5cb5b14610394576101b7565b8063715018a6146102d357806374ff62f1146102ea5780637fd6f15c14610322576101b7565b806355ba2f4f1161019557806355ba2f4f1461026357806365925b90146102785780636abfd183146102a95780636d3c09d8146102be576101b7565b8063228cb733146101bc57806327e235e3146101f4578063469b3d5914610239575b600080fd5b3480156101c857600080fd5b506101d16105ce565b604080516001600160a01b03909316835260208301919091528051918290030190f35b34801561020057600080fd5b506102276004803603602081101561021757600080fd5b50356001600160a01b03166105e3565b60408051918252519081900360200190f35b34801561024557600080fd5b506102276004803603602081101561025c57600080fd5b50356105f5565b34801561026f57600080fd5b50610227610613565b34801561028457600080fd5b5061028d610619565b604080516001600160a01b039092168252519081900360200190f35b3480156102b557600080fd5b50610227610628565b3480156102ca57600080fd5b5061022761062e565b3480156102df57600080fd5b506102e8610634565b005b6102e8600480360360a081101561030057600080fd5b5080359060208101359060ff60408201351690606081013590608001356106e0565b34801561032e57600080fd5b50610227610b92565b34801561034357600080fd5b50610227610b98565b34801561035857600080fd5b50610227610b9e565b34801561036d57600080fd5b506102e86004803603602081101561038457600080fd5b50356001600160a01b0316610ba4565b3480156103a057600080fd5b5061028d610c28565b3480156103b557600080fd5b506102e8600480360360a08110156103cc57600080fd5b508035906001600160a01b036020820135169060408101359060608101359060800135610c37565b34801561040057600080fd5b506102e86004803603602081101561041757600080fd5b50356001600160a01b0316610e9e565b34801561043357600080fd5b50610227611030565b34801561044857600080fd5b506102276004803603602081101561045f57600080fd5b50356001600160a01b0316611036565b34801561047b57600080fd5b506102e86110d0565b34801561049057600080fd5b506102276112a1565b3480156104a557600080fd5b5061028d6112a7565b3480156104ba57600080fd5b50610227600480360360208110156104d157600080fd5b50356001600160a01b03166112b6565b3480156104ed57600080fd5b5061028d6112c8565b34801561050257600080fd5b506102276004803603602081101561051957600080fd5b50356001600160a01b03166112d7565b34801561053557600080fd5b506102276004803603602081101561054c57600080fd5b50356113c7565b34801561055f57600080fd5b506102276004803603602081101561057657600080fd5b50356001600160a01b03166113d4565b34801561059257600080fd5b506102e8600480360360208110156105a957600080fd5b50356001600160a01b03166114a2565b3480156105c557600080fd5b5061028d6115a4565b600c54600d546001600160a01b039091169082565b600a6020526000908152604090205481565b6007818154811061060257fe5b600091825260209091200154905081565b60095481565b600e546001600160a01b031681565b60035481565b60045481565b61063c6115b3565b6001600160a01b031661064d610c28565b6001600160a01b031614610696576040805162461bcd60e51b81526020600482018190526024820152600080516020611c7d833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60026001541415610738576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001556003544211801561074f575060045442105b6107a0576040805162461bcd60e51b815260206004820152601860248201527f4e6f7420616e20696e766573746d656e7420706572696f640000000000000000604482015290519081900360640190fd5b6107ac848484846115b7565b6107f1576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b60085484108015610803575060075484105b610848576040805162461bcd60e51b815260206004820152601160248201527024b73b30b634b2103ab9b2b9103a34b2b960791b604482015290519081900360640190fd5b6002546001600160a01b031661085c573494505b6007848154811061086957fe5b6000918252602080832090910154338352600a909152604090912054610895908763ffffffff61168116565b101580156108a35750600085115b6108e9576040805162461bcd60e51b8152602060048201526012602482015271159a5bdb185d195cc81b5a5b881b1a5b5a5d60721b604482015290519081900360640190fd5b600884815481106108f657fe5b6000918252602080832090910154338352600a909152604090912054610922908763ffffffff61168116565b111561096a576040805162461bcd60e51b8152602060048201526012602482015271159a5bdb185d195cc81b585e081b1a5b5a5d60721b604482015290519081900360640190fd5b600954600b54610980908763ffffffff61168116565b11156109c9576040805162461bcd60e51b8152602060048201526013602482015272159a5bdb185d195cc81c1bdbdb081b1a5b5a5d606a1b604482015290519081900360640190fd5b60006109f26127106109e6601054896116e490919063ffffffff16565b9063ffffffff61173d16565b336000908152600a6020526040902054909150610a15908763ffffffff61168116565b336000908152600a6020526040902055600b54610a38908763ffffffff61168116565b600b556002546001600160a01b0316610a98576006546001600160a01b03166108fc610a6a888463ffffffff6117a416565b6040518115909202916000818181858888f19350505050158015610a92573d6000803e3d6000fd5b50610ad4565b600654610ad49033906001600160a01b0316610aba898563ffffffff6117a416565b6002546001600160a01b031692919063ffffffff61180116565b8015610b4f576002546001600160a01b0316610b2a57600f546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b24573d6000803e3d6000fd5b50610b4f565b600f54600254610b4f916001600160a01b03918216913391168463ffffffff61180116565b604080518781529051829133917f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee909181900360200190a350506001805550505050565b60105481565b600b5481565b60055481565b610bac6115b3565b6001600160a01b0316610bbd610c28565b6001600160a01b031614610c06576040805162461bcd60e51b81526020600482018190526024820152600080516020611c7d833981519152604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b610c3f6115b3565b6001600160a01b0316610c50610c28565b6001600160a01b031614610c99576040805162461bcd60e51b81526020600482018190526024820152600080516020611c7d833981519152604482015290519081900360640190fd5b6001600160a01b03841615801590610cb15750600083115b610d02576040805162461bcd60e51b815260206004820152601b60248201527f41646420526577617264202d20496e76616c696420696e707574730000000000604482015290519081900360640190fd5b600454851015610d435760405162461bcd60e51b8152600401808060200182810382526036815260200180611c006036913960400191505060405180910390fd5b600c546001600160a01b031615610da1576040805162461bcd60e51b815260206004820152601c60248201527f416c6c6f636174696f6e20746f6b656e20616c72656164792073657400000000604482015290519081900360640190fd5b6000821180610db05750600081115b610e01576040805162461bcd60e51b815260206004820152601960248201527f496e76616c696420636c61696d2070657263656e746167657300000000000000604482015290519081900360640190fd5b600585905560118290556012819055604080518082019091526001600160a01b0385168082526020909101849052600c80546001600160a01b03191682179055600d849055610e589033308663ffffffff61180116565b6040805184815290516001600160a01b038616917f01f132e60506239e8c7aeeb029ac2aa3a506bd76fda96ffa1f02e2b193399905919081900360200190a25050505050565b610ea66115b3565b6001600160a01b0316610eb7610c28565b6001600160a01b031614610f00576040805162461bcd60e51b81526020600482018190526024820152600080516020611c7d833981519152604482015290519081900360640190fd5b60006001600160a01b038216610f4657506040514790339082156108fc029083906000818181858888f19350505050158015610f40573d6000803e3d6000fd5b50610fdc565b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b158015610f8c57600080fd5b505afa158015610fa0573d6000803e3d6000fd5b505050506040513d6020811015610fb657600080fd5b50519050610fdc610fc5610c28565b6001600160a01b038416908363ffffffff61186116565b610fe4610c28565b604080516001600160a01b0385811682526020820185905282519316927f4c54315991c24df91ac0c9a6acfd5723631a6919ff1f3d647c5304cea2c2bf3c929181900390910190a25050565b60115481565b60006009546000141561104b575060006110cb565b6010546001600160a01b0383166000908152600a6020526040812054909161108191612710916109e6919063ffffffff6116e416565b6009546001600160a01b0385166000908152600a60205260409020549192506110c7916109e6906110b8908563ffffffff6117a416565b600d549063ffffffff6116e416565b9150505b919050565b60026001541415611128576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600155600554421015611179576040805162461bcd60e51b8152602060048201526012602482015271139bdd08184818db185a5b481c195c9a5bd960721b604482015290519081900360640190fd5b336000908152600a60205260409020546111d2576040805162461bcd60e51b8152602060048201526015602482015274125b9d985b1a590818db185a5b481c995c5d595cdd605a1b604482015290519081900360640190fd5b60006111dd336112d7565b905060008111611227576040805162461bcd60e51b815260206004820152601060248201526f4e6f20636c61696d2070656e64696e6760801b604482015290519081900360640190fd5b336000818152601360205260409020805483019055600c54611255916001600160a01b039091169083611861565b600c546040805183815290516001600160a01b039092169133917ff7a40077ff7a04c7e61f6f26fb13774259ddf1b6bce9ecf26a8276cdd3992683919081900360200190a35060018055565b60125481565b6006546001600160a01b031681565b60136020526000908152604090205481565b6002546001600160a01b031681565b60006005544210156112eb575060006110cb565b60006112f683611036565b905060006113156127106109e6601154856116e490919063ffffffff16565b9050600061135f61133862278d006109e6600554426117a490919063ffffffff16565b6113536127106109e6601254886116e490919063ffffffff16565b9063ffffffff6116e416565b9050600083611374848463ffffffff61168116565b10611380575082611393565b611390838363ffffffff61168116565b90505b6001600160a01b0386166000908152601360205260409020546113bd90829063ffffffff6117a416565b9695505050505050565b6008818154811061060257fe5b6001600160a01b0381166000908152600a60205260408120546113f9575060006110cb565b60055442101561140c57506005546110cb565b600061142a62278d006109e6600554426117a490919063ffffffff16565b9050600061145b6127106109e661144c856012546116e490919063ffffffff16565b6011549063ffffffff61168116565b905060648110611470576000925050506110cb565b61149a61148b62278d0061135385600163ffffffff61168116565b6005549063ffffffff61168116565b949350505050565b6114aa6115b3565b6001600160a01b03166114bb610c28565b6001600160a01b031614611504576040805162461bcd60e51b81526020600482018190526024820152600080516020611c7d833981519152604482015290519081900360640190fd5b6001600160a01b0381166115495760405162461bcd60e51b8152600401808060200182810382526026815260200180611bda6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001600160a01b031681565b3390565b60408051602080820187905233606090811b8385015230901b6054830152825160488184030181526068909201909252805191012060009081906115fa906118b8565b600e546040805160008152602080820180845285905260ff8a1682840152606082018990526080820188905291519394506001600160a01b039092169260019260a08082019392601f1981019281900390910190855afa158015611662573d6000803e3d6000fd5b505050602060405103516001600160a01b031614915050949350505050565b6000828201838110156116db576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000826116f3575060006116de565b8282028284828161170057fe5b04146116db5760405162461bcd60e51b8152600401808060200182810382526021815260200180611c5c6021913960400191505060405180910390fd5b6000808211611793576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161179c57fe5b049392505050565b6000828211156117fb576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261185b908590611909565b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526118b3908490611909565b505050565b604080517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602080830191909152603c8083019490945282518083039094018452605c909101909152815191012090565b606061195e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166119ba9092919063ffffffff16565b8051909150156118b35780806020019051602081101561197d57600080fd5b50516118b35760405162461bcd60e51b815260040180806020018281038252602a815260200180611c9d602a913960400191505060405180910390fd5b60606119c984846000856119d3565b90505b9392505050565b606082471015611a145760405162461bcd60e51b8152600401808060200182810382526026815260200180611c366026913960400191505060405180910390fd5b611a1d85611b2f565b611a6e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611aad5780518252601f199092019160209182019101611a8e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611b0f576040519150601f19603f3d011682016040523d82523d6000602084013e611b14565b606091505b5091509150611b24828286611b35565b979650505050505050565b3b151590565b60608315611b445750816119cc565b825115611b545782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b9e578181015183820152602001611b86565b50505050905090810190601f168015611bcb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737368617276657374537461727454696d652073686f756c64206265206d6f7265207468616e207374616b696e6746696e69736854696d65416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122019d0acae542243d3091ff18f519d17960330fa6e78634eef4ac6ef3a65c1fb5864736f6c63430006020033

Deployed Bytecode Sourcemap

40714:9754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41307:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41307:20:0;;;:::i;:::-;;;;-1:-1:-1;;;;;41307:20:0;;;;;;;;;;;;;;;;;;;;;41177:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41177:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41177:40:0;-1:-1:-1;;;;;41177:40:0;;:::i;:::-;;;;;;;;;;;;;;;;41066:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41066:32:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41066:32:0;;:::i;41147:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41147:24:0;;;:::i;41363:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41363:28:0;;;:::i;:::-;;;;-1:-1:-1;;;;;41363:28:0;;;;;;;;;;;;;;40875;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40875:28:0;;;:::i;40907:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40907:29:0;;;:::i;40055:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40055:148:0;;;:::i;:::-;;44336:2205;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;44336:2205:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;41510:22::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41510:22:0;;;:::i;41221:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41221:23:0;;;:::i;40943:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40943:28:0;;;:::i;43168:104::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43168:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43168:104:0;-1:-1:-1;;;;;43168:104:0;;:::i;39404:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39404:87:0;;;:::i;43277:1053::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43277:1053:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;43277:1053:0;;;-1:-1:-1;;;;;43277:1053:0;;;;;;;;;;;;;;;;;;;;:::i;49131:437::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49131:437:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49131:437:0;-1:-1:-1;;;;;49131:437:0;;:::i;41565:34::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41565:34:0;;;:::i;47097:486::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47097:486:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47097:486:0;-1:-1:-1;;;;;47097:486:0;;:::i;46546:546::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46546:546:0;;;:::i;41603:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41603:35:0;;;:::i;40975:45::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40975:45:0;;;:::i;41642:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41642:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41642:39:0;-1:-1:-1;;;;;41642:39:0;;:::i;40843:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40843:26:0;;;:::i;47591:778::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47591:778:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47591:778:0;-1:-1:-1;;;;;47591:778:0;;:::i;41105:32::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41105:32:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41105:32:0;;:::i;48374:728::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48374:728:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48374:728:0;-1:-1:-1;;;;;48374:728:0;;:::i;40358:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40358:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40358:244:0;-1:-1:-1;;;;;40358:244:0;;:::i;41465:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41465:41:0;;;:::i;41307:20::-;;;;;-1:-1:-1;;;;;41307:20:0;;;;;:::o;41177:40::-;;;;;;;;;;;;;:::o;41066:32::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41066:32:0;:::o;41147:24::-;;;;:::o;41363:28::-;;;-1:-1:-1;;;;;41363:28:0;;:::o;40875:::-;;;;:::o;40907:29::-;;;;:::o;40055:148::-;39635:12;:10;:12::i;:::-;-1:-1:-1;;;;;39624:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39624:23:0;;39616:68;;;;;-1:-1:-1;;;39616:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39616:68:0;;;;;;;;;;;;;;;40162:1:::1;40146:6:::0;;40125:40:::1;::::0;-1:-1:-1;;;;;40146:6:0;;::::1;::::0;40125:40:::1;::::0;40162:1;;40125:40:::1;40193:1;40176:19:::0;;-1:-1:-1;;;;;;40176:19:0::1;::::0;;40055:148::o;44336:2205::-;37307:1;37913:7;;:19;;37905:63;;;;;-1:-1:-1;;;37905:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37307:1;38046:7;:18;44482:16:::1;::::0;44464:15:::1;:34;:73:::0;::::1;;;;44520:17;;44502:15;:35;44464:73;44456:110;;;::::0;;-1:-1:-1;;;44456:110:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;44579:30;44586:13;44601:1;44604;44607;44579:6;:30::i;:::-;44571:60;;;::::0;;-1:-1:-1;;;44571:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44571:60:0;;;;;;;;;;;;;::::1;;44660:18;:25:::0;44644:41;::::1;:86:::0;::::1;;;-1:-1:-1::0;44705:18:0::1;:25:::0;44689:41;::::1;44644:86;44636:116;;;::::0;;-1:-1:-1;;;44636:116:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44636:116:0;;;;;;;;;;;;;::::1;;44821:12;::::0;-1:-1:-1;;;;;44821:12:0::1;44810:73;;44868:9;44859:18;;44810:73;44980:18;44999:13;44980:33;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;44953:10:::1;44944:20:::0;;:8:::1;:20:::0;;;;;;;;:32:::1;::::0;44969:6;44944:32:::1;:24;:32;:::i;:::-;:69;;:83;;;;;45026:1;45017:6;:10;44944:83;44936:114;;;::::0;;-1:-1:-1;;;44936:114:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44936:114:0;;;;;;;;;;;;;::::1;;45144:18;45163:13;45144:33;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;45117:10:::1;45108:20:::0;;:8:::1;:20:::0;;;;;;;;:32:::1;::::0;45133:6;45108:32:::1;:24;:32;:::i;:::-;:69;;45100:100;;;::::0;;-1:-1:-1;;;45100:100:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45100:100:0;;;;;;;;;;;;;::::1;;45279:12;::::0;45252:11:::1;::::0;:23:::1;::::0;45268:6;45252:23:::1;:15;:23;:::i;:::-;:39;;45244:71;;;::::0;;-1:-1:-1;;;45244:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;45244:71:0;;;;;;;;;;;;;::::1;;45690:9;45702:33;45729:5;45702:22;45713:10;;45702:6;:10;;:22;;;;:::i;:::-;:26:::0;:33:::1;:26;:33;:::i;:::-;45820:10;45811:20;::::0;;;:8:::1;:20;::::0;;;;;45690:45;;-1:-1:-1;45811:32:0::1;::::0;45836:6;45811:32:::1;:24;:32;:::i;:::-;45797:10;45788:20;::::0;;;:8:::1;:20;::::0;;;;:55;45862:11:::1;::::0;:23:::1;::::0;45878:6;45862:23:::1;:15;:23;:::i;:::-;45848:11;:37:::0;45971:12:::1;::::0;-1:-1:-1;;;;;45971:12:0::1;45960:214;;46012:22;::::0;-1:-1:-1;;;;;46012:22:0::1;:49;46044:16;:6:::0;46055:4;46044:16:::1;:10;:16;:::i;:::-;46012:49;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;46012:49:0;45960:214;;;46124:22;::::0;46082:83:::1;::::0;46112:10:::1;::::0;-1:-1:-1;;;;;46124:22:0::1;46148:16;:6:::0;46159:4;46148:16:::1;:10;:16;:::i;:::-;46082:12;::::0;-1:-1:-1;;;;;46082:12:0::1;::::0;:83;;::::1;:29;:83;:::i;:::-;46284:8:::0;;46281:210:::1;;46311:12;::::0;-1:-1:-1;;;;;46311:12:0::1;46300:186;;46353:18;::::0;:33:::1;::::0;-1:-1:-1;;;;;46353:18:0;;::::1;::::0;:33;::::1;;;::::0;46381:4;;46353:18:::1;:33:::0;:18;:33;46381:4;46353:18;:33;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;46353:33:0;46300:186;;;46451:18;::::0;46409:12:::1;::::0;:67:::1;::::0;-1:-1:-1;;;;;46409:12:0;;::::1;::::0;46439:10:::1;::::0;46451:18:::1;46471:4:::0;46409:67:::1;:29;:67;:::i;:::-;46504:32;::::0;;;;;;;46523:4;;46511:10:::1;::::0;46504:32:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;37263:1:0;38225:22;;-1:-1:-1;;;;44336:2205:0:o;41510:22::-;;;;:::o;41221:23::-;;;;:::o;40943:28::-;;;;:::o;43168:104::-;39635:12;:10;:12::i;:::-;-1:-1:-1;;;;;39624:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39624:23:0;;39616:68;;;;;-1:-1:-1;;;39616:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39616:68:0;;;;;;;;;;;;;;;43237:13:::1;:30:::0;;-1:-1:-1;;;;;;43237:30:0::1;-1:-1:-1::0;;;;;43237:30:0;;;::::1;::::0;;;::::1;::::0;;43168:104::o;39404:87::-;39450:7;39477:6;-1:-1:-1;;;;;39477:6:0;39404:87;:::o;43277:1053::-;39635:12;:10;:12::i;:::-;-1:-1:-1;;;;;39624:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39624:23:0;;39616:68;;;;;-1:-1:-1;;;39616:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39616:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43464:28:0;::::1;::::0;;::::1;::::0;:49:::1;;;43512:1;43496:13;:17;43464:49;43456:89;;;::::0;;-1:-1:-1;;;43456:89:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43579:17;;43558;:38;;43550:105;;;;-1:-1:-1::0;;;43550:105:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43671:6;:11:::0;-1:-1:-1;;;;;43671:11:0::1;:25:::0;43663:66:::1;;;::::0;;-1:-1:-1;;;43663:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43768:1;43742:23;:27;:59;;;;43800:1;43773:24;:28;43742:59;43734:98;;;::::0;;-1:-1:-1;;;43734:98:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43839:16;:36:::0;;;43890:22:::1;:48:::0;;;43946:23:::1;:50:::0;;;44010:53:::1;::::0;;;;::::1;::::0;;;-1:-1:-1;;;;;44010:53:0;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;44001:6:::1;:62:::0;;-1:-1:-1;;;;;;44001:62:0::1;::::0;::::1;::::0;;;;;;44192:81:::1;::::0;44232:10:::1;44252:4;44048:13:::0;44192:81:::1;:39;:81;:::i;:::-;44285:40;::::0;;;;;;;-1:-1:-1;;;;;44285:40:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;43277:1053:::0;;;;;:::o;49131:437::-;39635:12;:10;:12::i;:::-;-1:-1:-1;;;;;39624:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39624:23:0;;39616:68;;;;;-1:-1:-1;;;39616:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39616:68:0;;;;;;;;;;;;;;;49206:18:::1;-1:-1:-1::0;;;;;49232:27:0;::::1;49229:265;;-1:-1:-1::0;49310:34:0::1;::::0;49283:21:::1;::::0;49310:10:::1;::::0;:34;::::1;;;::::0;49283:21;;49310:34:::1;::::0;;;49283:21;49310:10;:34;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;49310:34:0;49229:265;;;49378:46;::::0;;-1:-1:-1;;;49378:46:0;;49418:4:::1;49378:46;::::0;::::1;::::0;;;-1:-1:-1;;;;;49378:31:0;::::1;::::0;::::1;::::0;:46;;;;;::::1;::::0;;;;;;;;:31;:46;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;49378:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;49378:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;49378:46:0;;-1:-1:-1;49430:58:0::1;49465:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;49430:34:0;::::1;::::0;49474:13;49430:58:::1;:34;:58;:::i;:::-;49525:7;:5;:7::i;:::-;49505:58;::::0;;-1:-1:-1;;;;;49505:58:0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;;;;;;;::::1;39695:1;49131:437:::0;:::o;41565:34::-;;;;:::o;47097:486::-;47161:4;47375:12;;47391:1;47375:17;47372:42;;;-1:-1:-1;47407:1:0;47400:8;;47372:42;47481:10;;-1:-1:-1;;;;;47462:14:0;;47450:9;47462:14;;;:8;:14;;;;;;47450:9;;47462:41;;47497:5;;47462:30;;:14;:30;:18;:30;:::i;:41::-;47565:12;;-1:-1:-1;;;;;47535:14:0;;;;;;:8;:14;;;;;;47450:53;;-1:-1:-1;47517:61:0;;:43;;47535:24;;47450:53;47535:24;:18;:24;:::i;:::-;47517:13;;;:43;:17;:43;:::i;:61::-;47510:68;;;47097:486;;;;:::o;46546:546::-;37307:1;37913:7;;:19;;37905:63;;;;;-1:-1:-1;;;37905:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37307:1;38046:7;:18;46627:16:::1;::::0;46608:15:::1;:35;;46600:66;;;::::0;;-1:-1:-1;;;46600:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46600:66:0;;;;;;;;;;;;;::::1;;46688:10;46702:1;46679:20:::0;;;:8:::1;:20;::::0;;;;;46671:58:::1;;;::::0;;-1:-1:-1;;;46671:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46671:58:0;;;;;;;;;;;;;::::1;;46768:12;46783:27;46799:10;46783:15;:27::i;:::-;46768:42;;46835:1;46825:7;:11;46817:40;;;::::0;;-1:-1:-1;;;46817:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46817:40:0;;;;;;;;;;;;;::::1;;46909:10;46901:19;::::0;;;:7:::1;:19;::::0;;;;:30;;;::::1;::::0;;46988:6:::1;:11:::0;46981:53:::1;::::0;-1:-1:-1;;;;;46988:11:0;;::::1;::::0;46901:30;46981:32:::1;:53::i;:::-;47066:6;:11:::0;47046:41:::1;::::0;;;;;;;-1:-1:-1;;;;;47066:11:0;;::::1;::::0;47054:10:::1;::::0;47046:41:::1;::::0;;;;;::::1;::::0;;::::1;-1:-1:-1::0;37263:1:0;38225:22;;46546:546::o;41603:35::-;;;;:::o;40975:45::-;;;-1:-1:-1;;;;;40975:45:0;;:::o;41642:39::-;;;;;;;;;;;;;:::o;40843:26::-;;;-1:-1:-1;;;;;40843:26:0;;:::o;47591:778::-;47650:4;47682:16;;47664:15;:34;47661:59;;;-1:-1:-1;47713:1:0;47706:8;;47661:59;47726:13;47742:26;47763:4;47742:20;:26::i;:::-;47726:42;;47812:18;47833:47;47874:5;47833:36;47846:22;;47833:8;:12;;:36;;;;:::i;:47::-;47812:68;;47922:18;47943:104;47996:50;48038:7;47996:37;48016:16;;47996:15;:19;;:37;;;;:::i;:50::-;47943:48;47985:5;47943:37;47956:23;;47943:8;:12;;:37;;;;:::i;:48::-;:52;:104;:52;:104;:::i;:::-;47922:125;-1:-1:-1;48092:16:0;48152:8;48116:32;:13;47922:125;48116:32;:17;:32;:::i;:::-;:44;48113:147;;-1:-1:-1;48182:8:0;48113:147;;;48222:32;:13;48240;48222:32;:17;:32;:::i;:::-;48208:46;;48113:147;-1:-1:-1;;;;;48350:13:0;;;;;;:7;:13;;;;;;48334:30;;:11;;:30;:15;:30;:::i;:::-;48327:37;47591:778;-1:-1:-1;;;;;;47591:778:0:o;41105:32::-;;;;;;;;;;48374:728;-1:-1:-1;;;;;48493:14:0;;48435:4;48493:14;;;:8;:14;;;;;;48490:44;;-1:-1:-1;48527:1:0;48520:8;;48490:44;48596:16;;48578:15;:34;48575:74;;;-1:-1:-1;48627:16:0;;48620:23;;48575:74;48696:18;48717:50;48759:7;48717:37;48737:16;;48717:15;:19;;:37;;;;:::i;:50::-;48696:71;;48772:20;48795:81;48870:5;48795:70;48822:42;48850:13;48822:23;;:27;;:42;;;;:::i;:::-;48795:22;;;:70;:26;:70;:::i;:81::-;48772:104;;48956:3;48937:15;:22;48934:50;;48977:1;48970:8;;;;;;48934:50;49042:55;49063:33;49088:7;49063:20;:13;49081:1;49063:20;:17;:20;:::i;:33::-;49042:16;;;:55;:20;:55;:::i;:::-;49035:62;48374:728;-1:-1:-1;;;;48374:728:0:o;40358:244::-;39635:12;:10;:12::i;:::-;-1:-1:-1;;;;;39624:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39624:23:0;;39616:68;;;;;-1:-1:-1;;;39616:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39616:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40447:22:0;::::1;40439:73;;;;-1:-1:-1::0;;;40439:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40549:6;::::0;;40528:38:::1;::::0;-1:-1:-1;;;;;40528:38:0;;::::1;::::0;40549:6;::::1;::::0;40528:38:::1;::::0;::::1;40577:6;:17:::0;;-1:-1:-1;;;;;;40577:17:0::1;-1:-1:-1::0;;;;;40577:17:0;;;::::1;::::0;;;::::1;::::0;;40358:244::o;41465:41::-;;;-1:-1:-1;;;;;41465:41:0;;:::o;667:106::-;755:10;667:106;:::o;49598:335::-;49804:58;;;;;;;;;;49836:10;49804:58;;;;;;;;49856:4;49804:58;;;;;;;;22:32:-1;26:21;;;22:32;6:49;;49804:58:0;;;;;;;49794:69;;;;;49687:4;;;;49785:79;;:8;:79::i;:::-;49914:13;;49883:27;;;49914:13;49883:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49767:97;;-1:-1:-1;;;;;;49914:13:0;;;;;;49883:27;;;;;;-1:-1:-1;;49883:27:0;;;;;;;;;;49914:13;49883:27;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49883:27:0;;;;;;;;-1:-1:-1;;;;;49883:44:0;;49875:53;;;49598:335;;;;;;:::o;6691:179::-;6749:7;6781:5;;;6805:6;;;;6797:46;;;;;-1:-1:-1;;;6797:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6861:1;-1:-1:-1;6691:179:0;;;;;:::o;7570:220::-;7628:7;7652:6;7648:20;;-1:-1:-1;7667:1:0;7660:8;;7648:20;7691:5;;;7695:1;7691;:5;:1;7715:5;;;;;:10;7707:56;;;;-1:-1:-1;;;7707:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8268:153;8326:7;8358:1;8354;:5;8346:44;;;;;-1:-1:-1;;;8346:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8412:1;8408;:5;;;;;;;8268:153;-1:-1:-1;;;8268:153:0:o;7153:158::-;7211:7;7244:1;7239;:6;;7231:49;;;;;-1:-1:-1;;;7231:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7298:5:0;;;7153:158::o;32636:205::-;32764:68;;;-1:-1:-1;;;;;32764:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;32764:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;32737:96:0;;32757:5;;32737:19;:96::i;:::-;32636:205;;;;:::o;32451:177::-;32561:58;;;-1:-1:-1;;;;;32561:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;32561:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;32534:86:0;;32554:5;;32534:19;:86::i;:::-;32451:177;;;:::o;50304:159::-;50396:58;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;50396:58:0;;;;;;;50386:69;;;;;;50304:159::o;34756:761::-;35180:23;35206:69;35234:4;35206:69;;;;;;;;;;;;;;;;;35214:5;-1:-1:-1;;;;;35206:27:0;;;:69;;;;;:::i;:::-;35290:17;;35180:95;;-1:-1:-1;35290:21:0;35286:224;;35432:10;35421:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35421:30:0;35413:85;;;;-1:-1:-1;;;35413:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27415:195;27518:12;27550:52;27572:6;27580:4;27586:1;27589:12;27550:21;:52::i;:::-;27543:59;;27415:195;;;;;;:::o;28467:530::-;28594:12;28652:5;28627:21;:30;;28619:81;;;;-1:-1:-1;;;28619:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28719:18;28730:6;28719:10;:18::i;:::-;28711:60;;;;;-1:-1:-1;;;28711:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28845:12;28859:23;28886:6;-1:-1:-1;;;;;28886:11:0;28906:5;28914:4;28886:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;28886:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;28844:75:0;;;;28937:52;28955:7;28964:10;28976:12;28937:17;:52::i;:::-;28930:59;28467:530;-1:-1:-1;;;;;;;28467:530:0:o;24497:422::-;24864:20;24903:8;;;24497:422::o;31007:742::-;31122:12;31151:7;31147:595;;;-1:-1:-1;31182:10:0;31175:17;;31147:595;31296:17;;:21;31292:439;;31559:10;31553:17;31620:15;31607:10;31603:2;31599:19;31592:44;31507:148;31702:12;31695:20;;-1:-1:-1;;;31695:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;31695:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://19d0acae542243d3091ff18f519d17960330fa6e78634eef4ac6ef3a65c1fb58

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.