ETH Price: $3,040.91 (+0.57%)
Gas: 3 Gwei

Contract

0x06997f4bBE73b4893d0A0a808393FcD4A12921Ba
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Withdraw182419992023-09-29 14:35:11284 days ago1695998111IN
0x06997f4b...4A12921Ba
0 ETH0.0035054931.45411399
Withdraw180800072023-09-06 21:13:47307 days ago1694034827IN
0x06997f4b...4A12921Ba
0 ETH0.0011480117.83019225
Withdraw180799982023-09-06 21:11:59307 days ago1694034719IN
0x06997f4b...4A12921Ba
0 ETH0.0018302819.39931998
Withdraw180208752023-08-29 14:29:47315 days ago1693319387IN
0x06997f4b...4A12921Ba
0 ETH0.0087061386.70413461
Withdraw179883772023-08-25 1:16:35319 days ago1692926195IN
0x06997f4b...4A12921Ba
0 ETH0.0015733915.66935615
Withdraw179867852023-08-24 19:56:59320 days ago1692907019IN
0x06997f4b...4A12921Ba
0 ETH0.0005081116.13531928
Withdraw179867852023-08-24 19:56:59320 days ago1692907019IN
0x06997f4b...4A12921Ba
0 ETH0.0019279716.13531928
Withdraw179858762023-08-24 16:53:11320 days ago1692895991IN
0x06997f4b...4A12921Ba
0 ETH0.0018890729.32890369
Withdraw179855052023-08-24 15:38:11320 days ago1692891491IN
0x06997f4b...4A12921Ba
0 ETH0.0031893528.18994297
Withdraw179677502023-08-22 4:04:35322 days ago1692677075IN
0x06997f4b...4A12921Ba
0 ETH0.0019334217.11586693
Withdraw179677482023-08-22 4:04:11322 days ago1692677051IN
0x06997f4b...4A12921Ba
0 ETH0.0016079615.36651555
Withdraw179677472023-08-22 4:03:59322 days ago1692677039IN
0x06997f4b...4A12921Ba
0 ETH0.001538115.81790886
Withdraw179589072023-08-20 22:22:35324 days ago1692570155IN
0x06997f4b...4A12921Ba
0 ETH0.0013090912.67246064
Withdraw179473202023-08-19 7:25:23325 days ago1692429923IN
0x06997f4b...4A12921Ba
0 ETH0.0014876215.29879525
Withdraw179023512023-08-13 0:26:59332 days ago1691886419IN
0x06997f4b...4A12921Ba
0 ETH0.0011153111.47
Withdraw178990902023-08-12 13:31:11332 days ago1691847071IN
0x06997f4b...4A12921Ba
0 ETH0.001772818.23161117
Deposit178891712023-08-11 4:10:59333 days ago1691727059IN
0x06997f4b...4A12921Ba
0 ETH0.0016866713.81512522
Withdraw178890252023-08-11 3:41:35333 days ago1691725295IN
0x06997f4b...4A12921Ba
0 ETH0.001293412.51917236
Deposit178859772023-08-10 17:28:11334 days ago1691688491IN
0x06997f4b...4A12921Ba
0 ETH0.0051746337.17703395
Withdraw178532502023-08-06 3:30:47338 days ago1691292647IN
0x06997f4b...4A12921Ba
0 ETH0.0015945216.39815025
Withdraw178517392023-08-05 22:25:35339 days ago1691274335IN
0x06997f4b...4A12921Ba
0 ETH0.0012700113.06088665
Withdraw178124482023-07-31 10:39:23344 days ago1690799963IN
0x06997f4b...4A12921Ba
0 ETH0.0018432118.95571914
Withdraw178046342023-07-30 8:23:35345 days ago1690705415IN
0x06997f4b...4A12921Ba
0 ETH0.0021583522.19662405
Withdraw177746632023-07-26 3:46:23349 days ago1690343183IN
0x06997f4b...4A12921Ba
0 ETH0.0020195820.76950146
Withdraw177476712023-07-22 9:07:23353 days ago1690016843IN
0x06997f4b...4A12921Ba
0 ETH0.0015491515.93153204
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
173242432023-05-23 20:16:47413 days ago1684873007  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
SmartChefInitializable

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-16
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

/*
 * @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/access/Ownable.sol

pragma solidity 0.6.12;

/**
 * @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;
    }
}

pragma solidity 0.6.12;

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the token name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the erc token owner.
     */
    function getOwner() external view returns (address);

    /**
     * @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

pragma solidity 0.6.12;

/**
 * @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/utils/ReentrancyGuard.sol

pragma solidity 0.6.12;

/**
 * @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/utils/Address.sol

pragma solidity 0.6.12;

/**
 * @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: bsc-library/contracts/SafeBEP20.sol

pragma solidity 0.6.12;

/**
 * @title SafeBEP20
 * @dev Wrappers around BEP20 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 SafeBEP20 for IBEP20;` 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: contracts/SmartChefInitializable.sol

pragma solidity 0.6.12;

contract SmartChefInitializable is Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 public lockTime; // 432,000 blocks = 15 days;
    uint256 public endLockTime;

    // The address of the smart chef factory
    address public SMART_CHEF_FACTORY;

    // Whether a limit is set for users
    bool public hasUserLimit;

    // Whether it is initialized
    bool public isInitialized;

    // Accrued token per share
    uint256 public accTokenPerShare;

    // The block number when SOKU mining ends.
    uint256 public bonusEndBlock;

    // The block number when SOKU mining starts.
    uint256 public startBlock;

    // The block number of the last pool update
    uint256 public lastRewardBlock;

    // The pool limit (0 if none)
    uint256 public poolLimitPerUser;

    // SOKU tokens created per block.
    uint256 public rewardPerBlock;

    // The precision factor
    uint256 public PRECISION_FACTOR;

    // The reward token
    IERC20 public rewardToken;

    // The staked token
    IERC20 public stakedToken;

    // Info of each user that stakes tokens (stakedToken)
    mapping(address => UserInfo) public userInfo;

    mapping(address => uint256) public addressEndLockTime;

    bool public hasSavedPendingRewardUpdatedByAdmin = true;
    bool public hasAllRewardDistributedByAdmin = true;

    uint public numberOfClaimSavedPendingReward;
    uint public numberOfClaimCurrentAndTotalPendingReward;

    mapping(address => uint256) public temporaryPendingReward;

    struct UserInfo {
        uint256 amount; // How many staked tokens the user has provided
        uint256 rewardDebt; // Reward debt
    }

    event AdminTokenRecovery(address tokenRecovered, uint256 amount);
    event Deposit(address indexed user, uint256 amount);
    event ClaimReward(address indexed user, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 amount);
    event NewStartAndEndBlocks(uint256 startBlock, uint256 endBlock);
    event NewRewardPerBlock(uint256 rewardPerBlock);
    event NewPoolLimit(uint256 poolLimitPerUser);
    event Withdraw(address indexed user, uint256 amount);

    constructor() public {
        SMART_CHEF_FACTORY = msg.sender;
    }

    /*
     * @notice Initialize the contract
     * @param _stakedToken: staked token address
     * @param _rewardToken: reward token address
     * @param _rewardPerBlock: reward per block (in rewardToken)
     * @param _startBlock: start block
     * @param _bonusEndBlock: end block
     * @param _poolLimitPerUser: pool limit per user in stakedToken (if any, else 0)
     * @param _admin: admin address with ownership
     */
    function initialize(
        IERC20 _stakedToken,
        IERC20 _rewardToken,
        uint256 _rewardPerBlock,
        uint256 _startBlock,
        uint256 _bonusEndBlock,
        uint256 _lockTime,
        uint256 _poolLimitPerUser,
        address _admin
    ) external {
        require(!isInitialized, "Already initialized");
        require(msg.sender == SMART_CHEF_FACTORY, "Not factory");

        // Make this contract initialized
        isInitialized = true;

        stakedToken = _stakedToken;
        rewardToken = _rewardToken;
        rewardPerBlock = _rewardPerBlock;
        startBlock = _startBlock;
        bonusEndBlock = _bonusEndBlock;
        lockTime = _lockTime;
        endLockTime = block.number.add(lockTime);



        if (_poolLimitPerUser > 0) {
            hasUserLimit = true;
            poolLimitPerUser = _poolLimitPerUser;
        }

        uint256 decimalsRewardToken = uint256(rewardToken.decimals());
        require(decimalsRewardToken < 30, "Must be inferior to 30");

        PRECISION_FACTOR = uint256(10**(uint256(30).sub(decimalsRewardToken)));

        // Set the lastRewardBlock as the startBlock
        lastRewardBlock = startBlock;

        // Transfer ownership to the admin address who becomes owner of the contract
        transferOwnership(_admin);
    }

    /*
     * @notice Deposit staked tokens and collect reward tokens (if any)
     * @param _amount: amount to withdraw (in rewardToken)
     */
    function deposit(uint256 _amount) external nonReentrant {

        UserInfo storage user = userInfo[msg.sender];

        if (hasUserLimit) {
            require(_amount.add(user.amount) <= poolLimitPerUser, "User amount above limit");
        }
        _updatePool();

        if (_amount > 0) {
            user.amount = user.amount.add(_amount);
            stakedToken.safeTransferFrom(address(msg.sender), address(this), _amount);
        }

        user.rewardDebt = user.rewardDebt.add(_amount.mul(accTokenPerShare).div(PRECISION_FACTOR));


        emit Deposit(msg.sender, _amount);
        _resetAddressEndLockTime();

    }

    function claimReward() external {
        _claimReward(msg.sender);
    }


    /*
     * @notice Withdraw staked tokens and collect reward tokens
     * @param _amount: amount to withdraw (in rewardToken)
     */
    function withdraw(uint256 _amount) external nonReentrant {
        uint256 localAddressEndLockTime;

        if(addressEndLockTime[msg.sender] == 0) {
            localAddressEndLockTime = endLockTime;
        } else {
            localAddressEndLockTime = addressEndLockTime[msg.sender];
        }

        require(block.number >= localAddressEndLockTime || block.number >= bonusEndBlock, "Lock still in affect, or pool has not ended yet.");

        UserInfo storage user = userInfo[msg.sender];
        require(user.amount >= _amount, "Amount to withdraw too high");

        _updatePool();

        uint256 pending = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt);

        if (_amount > 0) {
            user.amount = user.amount.sub(_amount);
            stakedToken.safeTransfer(address(msg.sender), _amount);
        }

        if (pending > 0) {
            rewardToken.safeTransfer(address(msg.sender), pending);
        }

        user.rewardDebt = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR);

        emit Withdraw(msg.sender, _amount);
    }

    /*
     * @notice Withdraw staked tokens without caring about reward reward
     * @dev Needs to be for emergency.
     */
    function emergencyWithdraw() external nonReentrant {
        UserInfo storage user = userInfo[msg.sender];
        uint256 amountToTransfer = user.amount;
        user.amount = 0;
        user.rewardDebt = 0;

        if (amountToTransfer > 0) {
            stakedToken.safeTransfer(address(msg.sender), amountToTransfer);
        }

        emit EmergencyWithdraw(msg.sender, user.amount);
    }

    /*
     * @notice Stop reward
     * @dev Only callable by owner. Needs to be for emergency.
     */
    function emergencyRewardWithdraw(uint256 _amount) external onlyOwner {
        rewardToken.safeTransfer(address(msg.sender), _amount);
    }

    /**
     * @notice It allows the admin to recover wrong tokens sent to the contract
     * @param _tokenAddress: the address of the token to withdraw
     * @param _tokenAmount: the number of tokens to withdraw
     * @dev This function is only callable by admin.
     */
    function recoverWrongTokens(address _tokenAddress, uint256 _tokenAmount) external onlyOwner {
        // require(_tokenAddress != address(stakedToken), "Cannot be staked token");
        require(_tokenAddress != address(rewardToken), "Cannot be reward token");
        IERC20(_tokenAddress).safeTransfer(address(msg.sender), _tokenAmount);

        emit AdminTokenRecovery(_tokenAddress, _tokenAmount);
    }

    /*
     * @notice Stop reward
     * @dev Only callable by owner
     */
    function stopReward() external onlyOwner {
        bonusEndBlock = block.number;
    }

    /*
     * @notice Update pool limit per user
     * @dev Only callable by owner.
     * @param _hasUserLimit: whether the limit remains forced
     * @param _poolLimitPerUser: new pool limit per user
     */
    function updatePoolLimitPerUser(bool _hasUserLimit, uint256 _poolLimitPerUser) external onlyOwner {
        require(hasUserLimit, "Must be set");
        if (_hasUserLimit) {
            require(_poolLimitPerUser > poolLimitPerUser, "New limit must be higher");
            poolLimitPerUser = _poolLimitPerUser;
        } else {
            hasUserLimit = _hasUserLimit;
            poolLimitPerUser = 0;
        }
        emit NewPoolLimit(poolLimitPerUser);
    }

    /*
     * @notice Update reward per block
     * @dev Only callable by owner.
     * @param _rewardPerBlock: the reward per block
     */

    //  ** When updating rewardPerBlock, claim every users tokens ** //
    function updateRewardPerBlock(uint256 _rewardPerBlock) external onlyOwner {
        _updatePool();
        rewardPerBlock = _rewardPerBlock;
        emit NewRewardPerBlock(_rewardPerBlock);
    }

    /**
     * @notice It allows the admin to update start and end blocks
     * @dev This function is only callable by owner.
     * @param _startBlock: the new start block
     * @param _bonusEndBlock: the new end block
     */
    function updateStartAndEndBlocks(uint256 _startBlock, uint256 _bonusEndBlock) external onlyOwner {
        require(block.number < startBlock, "Pool has started");
        require(_startBlock < _bonusEndBlock, "New startBlock must be lower than new endBlock");
        require(block.number < _startBlock, "New startBlock must be higher than current block");

        startBlock = _startBlock;
        bonusEndBlock = _bonusEndBlock;

        // Set the lastRewardBlock as the startBlock
        lastRewardBlock = startBlock;

        emit NewStartAndEndBlocks(_startBlock, _bonusEndBlock);
    }

    /*
     * @notice View function to see pending reward on frontend.
     * @param _user: user address
     * @return Pending reward for a given user
     */
    function pendingReward(address _user) public view returns (uint256) {
        UserInfo storage user = userInfo[_user];
        uint256 stakedTokenSupply = stakedToken.balanceOf(address(this));
        if (block.number > lastRewardBlock && stakedTokenSupply != 0) {
            uint256 multiplier = _getMultiplier(lastRewardBlock, block.number);
            uint256 SOKUReward = multiplier.mul(rewardPerBlock);
            uint256 adjustedTokenPerShare =
            accTokenPerShare.add(SOKUReward.mul(PRECISION_FACTOR).div(stakedTokenSupply));
            return user.amount.mul(adjustedTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt);
        } else {
            return user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt);
        }
    }

    function getRemainingLockTime(address _user) external view returns (uint256) {
        if (addressEndLockTime[_user] < block.number) {
            return 0;
        }
        return addressEndLockTime[_user] - block.number;
    }

    function _resetAddressEndLockTime() internal {
        addressEndLockTime[msg.sender] = block.number.add(lockTime);
    }

    /*
     * @notice Update reward variables of the given pool to be up-to-date.
     */
    function _updatePool() internal {
        if (block.number <= lastRewardBlock) {
            return;
        }

        uint256 stakedTokenSupply = stakedToken.balanceOf(address(this));

        if (stakedTokenSupply == 0) {
            lastRewardBlock = block.number;
            return;
        }

        uint256 multiplier = _getMultiplier(lastRewardBlock, block.number);
        uint256 SOKUReward = multiplier.mul(rewardPerBlock);
        accTokenPerShare = accTokenPerShare.add(SOKUReward.mul(PRECISION_FACTOR).div(stakedTokenSupply));
        lastRewardBlock = block.number;
    }

    /*
     * @notice Return reward multiplier over the given _from to _to block.
     * @param _from: block to start
     * @param _to: block to finish
     */
    function _getMultiplier(uint256 _from, uint256 _to) internal view returns (uint256) {
        if (_to <= bonusEndBlock) {
            return _to.sub(_from);
        } else if (_from >= bonusEndBlock) {
            return 0;
        } else {
            return bonusEndBlock.sub(_from);
        }
    }

    function _claimReward(address _user) internal {
        UserInfo storage user = userInfo[_user];

        _updatePool();

        if (user.amount > 0) {
            uint256 pending = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR).sub(user.rewardDebt);
            if (pending > 0) {

                uint256 localAddressEndLockTime;

                if (addressEndLockTime[_user] == 0) {
                    localAddressEndLockTime = endLockTime;
                } else {
                    localAddressEndLockTime = addressEndLockTime[_user];
                }

                // If the lock time (i.e. 15 days) has passed or pool has ended
                require(block.number >= localAddressEndLockTime || block.number >= bonusEndBlock, "Lock time has not expired, or the pool has not ended yet.");
                rewardToken.safeTransfer(address(_user), pending);
            }

            user.rewardDebt = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR);
            emit ClaimReward(_user, pending);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenRecovered","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AdminTokenRecovery","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"poolLimitPerUser","type":"uint256"}],"name":"NewPoolLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardPerBlock","type":"uint256"}],"name":"NewRewardPerBlock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endBlock","type":"uint256"}],"name":"NewStartAndEndBlocks","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"PRECISION_FACTOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SMART_CHEF_FACTORY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accTokenPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressEndLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyRewardWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getRemainingLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasAllRewardDistributedByAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSavedPendingRewardUpdatedByAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasUserLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_stakedToken","type":"address"},{"internalType":"contract IERC20","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"},{"internalType":"uint256","name":"_lockTime","type":"uint256"},{"internalType":"uint256","name":"_poolLimitPerUser","type":"uint256"},{"internalType":"address","name":"_admin","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfClaimCurrentAndTotalPendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfClaimSavedPendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLimitPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"recoverWrongTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"temporaryPendingReward","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":"bool","name":"_hasUserLimit","type":"bool"},{"internalType":"uint256","name":"_poolLimitPerUser","type":"uint256"}],"name":"updatePoolLimitPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"}],"name":"updateRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"name":"updateStartAndEndBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80638ae39cac11610130578063bd617191116100b8578063e8eb2c6f1161007c578063e8eb2c6f146107da578063f2fde38b14610832578063f40f0f5214610876578063f7c618c1146108ce578063f95e6fb91461090257610227565b8063bd6171911461072a578063cc7a262e1461075e578063ccd34cd514610792578063cdafbad1146107b0578063db2e21bc146107d057610227565b80639513997f116100ff5780639513997f14610662578063a0b409051461069a578063a9f8d181146106d4578063b6b55f25146106f2578063b88a802f1461072057610227565b80638ae39cac146105d25780638da5cb5b146105f05780638f6629151461062457806392e8990e1461064257610227565b80633279beab116101b357806348cd4cb11161018257806348cd4cb11461056457806366fe9f8a14610582578063702b2f34146105a0578063715018a6146105be57806380dc0672146105c857610227565b80633279beab14610470578063392e53cd1461049e5780633f138d4b146104be578063473044941461050c57610227565b80631ec64f62116101fa5780631ec64f62146102f55780632636aedf1461031557806328449fa7146103335780632aa2c3811461038b5780632e1a7d4d1461044257610227565b806301f8a9761461022c5780630d6680871461025a5780631959a002146102785780631aed6553146102d7575b600080fd5b6102586004803603602081101561024257600080fd5b8101908080359060200190929190505050610920565b005b610262610a18565b6040518082815260200191505060405180910390f35b6102ba6004803603602081101561028e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a1e565b604051808381526020018281526020019250505060405180910390f35b6102df610a42565b6040518082815260200191505060405180910390f35b6102fd610a48565b60405180821515815260200191505060405180910390f35b61031d610a5b565b6040518082815260200191505060405180910390f35b6103756004803603602081101561034957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a61565b6040518082815260200191505060405180910390f35b61044060048036036101008110156103a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803590602001909291908035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a79565b005b61046e6004803603602081101561045857600080fd5b8101908080359060200190929190505050610e19565b005b61049c6004803603602081101561048657600080fd5b81019080803590602001909291905050506111ff565b005b6104a66112fe565b60405180821515815260200191505060405180910390f35b61050a600480360360408110156104d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611311565b005b61054e6004803603602081101561052257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611508565b6040518082815260200191505060405180910390f35b61056c6115a4565b6040518082815260200191505060405180910390f35b61058a6115aa565b6040518082815260200191505060405180910390f35b6105a86115b0565b6040518082815260200191505060405180910390f35b6105c66115b6565b005b6105d0611723565b005b6105da6117db565b6040518082815260200191505060405180910390f35b6105f86117e1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61062c61180a565b6040518082815260200191505060405180910390f35b61064a611810565b60405180821515815260200191505060405180910390f35b6106986004803603604081101561067857600080fd5b810190808035906020019092919080359060200190929190505050611823565b005b6106d2600480360360408110156106b057600080fd5b8101908080351515906020019092919080359060200190929190505050611a53565b005b6106dc611c6d565b6040518082815260200191505060405180910390f35b61071e6004803603602081101561070857600080fd5b8101908080359060200190929190505050611c73565b005b610728611f03565b005b610732611f0e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610766611f34565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61079a611f5a565b6040518082815260200191505060405180910390f35b6107b8611f60565b60405180821515815260200191505060405180910390f35b6107d8611f73565b005b61081c600480360360208110156107f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612108565b6040518082815260200191505060405180910390f35b6108746004803603602081101561084857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612120565b005b6108b86004803603602081101561088c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612312565b6040518082815260200191505060405180910390f35b6108d6612537565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61090a61255d565b6040518082815260200191505060405180910390f35b610928612563565b73ffffffffffffffffffffffffffffffffffffffff166109466117e1565b73ffffffffffffffffffffffffffffffffffffffff16146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6109d761256b565b80600a819055507f0c4d677eef92893ac7ec52faf8140fc6c851ab4736302b4f3a89dfb20696a0df816040518082815260200191505060405180910390a150565b60025481565b600e6020528060005260406000206000915090508060000154908060010154905082565b60065481565b601060019054906101000a900460ff1681565b60035481565b600f6020528060005260406000206000915090505481565b600460159054906101000a900460ff1615610afc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416c726561647920696e697469616c697a65640000000000000000000000000081525060200191505060405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4e6f7420666163746f727900000000000000000000000000000000000000000081525060200191505060405180910390fd5b6001600460156101000a81548160ff02191690831515021790555087600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600a81905550846007819055508360068190555082600281905550610c8d600254436126ce90919063ffffffff16565b6003819055506000821115610cbf576001600460146101000a81548160ff021916908315150217905550816009819055505b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b158015610d2957600080fd5b505afa158015610d3d573d6000803e3d6000fd5b505050506040513d6020811015610d5357600080fd5b810190808051906020019092919050505060ff169050601e8110610ddf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4d75737420626520696e666572696f7220746f2033300000000000000000000081525060200191505060405180910390fd5b610df381601e61275690919063ffffffff16565b600a0a600b81905550600754600881905550610e0e82612120565b505050505050505050565b60026001541415610e92576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600181905550600080600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610eed576003549050610f30565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8043101580610f4157506006544310155b610f96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061312c6030913960400191505060405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e7420746f20776974686472617720746f6f2068696768000000000081525060200191505060405180910390fd5b61105b61256b565b60006110a08260010154611092600b5461108460055487600001546127d990919063ffffffff16565b61285f90919063ffffffff16565b61275690919063ffffffff16565b90506000841115611118576110c284836000015461275690919063ffffffff16565b82600001819055506111173385600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128e89092919063ffffffff16565b5b600081111561116f5761116e3382600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128e89092919063ffffffff16565b5b61119c600b5461118e60055485600001546127d990919063ffffffff16565b61285f90919063ffffffff16565b82600101819055503373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364856040518082815260200191505060405180910390a25050506001808190555050565b611207612563565b73ffffffffffffffffffffffffffffffffffffffff166112256117e1565b73ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6112fb3382600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128e89092919063ffffffff16565b50565b600460159054906101000a900460ff1681565b611319612563565b73ffffffffffffffffffffffffffffffffffffffff166113376117e1565b73ffffffffffffffffffffffffffffffffffffffff16146113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611484576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f43616e6e6f742062652072657761726420746f6b656e0000000000000000000081525060200191505060405180910390fd5b6114af33828473ffffffffffffffffffffffffffffffffffffffff166128e89092919063ffffffff16565b7f74545154aac348a3eac92596bd1971957ca94795f4e954ec5f613b55fab781298282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600043600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561155a576000905061159f565b43600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540390505b919050565b60075481565b60095481565b60125481565b6115be612563565b73ffffffffffffffffffffffffffffffffffffffff166115dc6117e1565b73ffffffffffffffffffffffffffffffffffffffff1614611665576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61172b612563565b73ffffffffffffffffffffffffffffffffffffffff166117496117e1565b73ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b43600681905550565b600a5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60055481565b600460149054906101000a900460ff1681565b61182b612563565b73ffffffffffffffffffffffffffffffffffffffff166118496117e1565b73ffffffffffffffffffffffffffffffffffffffff16146118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6007544310611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f506f6f6c2068617320737461727465640000000000000000000000000000000081525060200191505060405180910390fd5b8082106119a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e81526020018061315c602e913960400191505060405180910390fd5b8143106119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806131b06030913960400191505060405180910390fd5b81600781905550806006819055506007546008819055507f7cd0ab87d19036f3dfadadb232c78aa4879dda3f0c994a9d637532410ee2ce068282604051808381526020018281526020019250505060405180910390a15050565b611a5b612563565b73ffffffffffffffffffffffffffffffffffffffff16611a796117e1565b73ffffffffffffffffffffffffffffffffffffffff1614611b02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460149054906101000a900460ff16611b84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4d7573742062652073657400000000000000000000000000000000000000000081525060200191505060405180910390fd5b8115611c0d576009548111611c01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6577206c696d6974206d75737420626520686967686572000000000000000081525060200191505060405180910390fd5b80600981905550611c30565b81600460146101000a81548160ff02191690831515021790555060006009819055505b7f241f67ee5f41b7a5cabf911367329be7215900f602ebfc47f89dce2a6bcd847c6009546040518082815260200191505060405180910390a15050565b60085481565b60026001541415611cec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600460149054906101000a900460ff1615611ddb57600954611d668260000154846126ce90919063ffffffff16565b1115611dda576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f5573657220616d6f756e742061626f7665206c696d697400000000000000000081525060200191505060405180910390fd5b5b611de361256b565b6000821115611e5b57611e038282600001546126ce90919063ffffffff16565b8160000181905550611e5a333084600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661298a909392919063ffffffff16565b5b611e9a611e87600b54611e79600554866127d990919063ffffffff16565b61285f90919063ffffffff16565b82600101546126ce90919063ffffffff16565b81600101819055503373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c836040518082815260200191505060405180910390a2611ef8612a4b565b506001808190555050565b611f0c33612aa5565b565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b601060009054906101000a900460ff1681565b60026001541415611fec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600081600001549050600082600001819055506000826001018190555060008111156120ab576120aa3382600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128e89092919063ffffffff16565b5b3373ffffffffffffffffffffffffffffffffffffffff167f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd969583600001546040518082815260200191505060405180910390a2505060018081905550565b60136020528060005260406000206000915090505481565b612128612563565b73ffffffffffffffffffffffffffffffffffffffff166121466117e1565b73ffffffffffffffffffffffffffffffffffffffff16146121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806131066026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156123e157600080fd5b505afa1580156123f5573d6000803e3d6000fd5b505050506040513d602081101561240b57600080fd5b8101908080519060200190929190505050905060085443118015612430575060008114155b156124ea57600061244360085443612d21565b9050600061245c600a54836127d990919063ffffffff16565b9050600061249b61248a8561247c600b54866127d990919063ffffffff16565b61285f90919063ffffffff16565b6005546126ce90919063ffffffff16565b90506124de85600101546124d0600b546124c2858a600001546127d990919063ffffffff16565b61285f90919063ffffffff16565b61275690919063ffffffff16565b95505050505050612532565b61252d826001015461251f600b5461251160055487600001546127d990919063ffffffff16565b61285f90919063ffffffff16565b61275690919063ffffffff16565b925050505b919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b600033905090565b6008544311612579576126cc565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561260457600080fd5b505afa158015612618573d6000803e3d6000fd5b505050506040513d602081101561262e57600080fd5b8101908080519060200190929190505050905060008114156126575743600881905550506126cc565b600061266560085443612d21565b9050600061267e600a54836127d990919063ffffffff16565b90506126bb6126aa8461269c600b54856127d990919063ffffffff16565b61285f90919063ffffffff16565b6005546126ce90919063ffffffff16565b600581905550436008819055505050505b565b60008082840190508381101561274c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000828211156127ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808314156127ec5760009050612859565b60008284029050828482816127fd57fe5b0414612854576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806131e06021913960400191505060405180910390fd5b809150505b92915050565b60008082116128d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b8183816128df57fe5b04905092915050565b6129858363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d76565b505050565b612a45846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612d76565b50505050565b612a60600254436126ce90919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050612af061256b565b600081600001541115612d1d576000612b428260010154612b34600b54612b2660055487600001546127d990919063ffffffff16565b61285f90919063ffffffff16565b61275690919063ffffffff16565b90506000811115612c9857600080600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415612ba0576003549050612be3565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8043101580612bf457506006544310155b612c49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806132016039913960400191505060405180910390fd5b612c968483600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166128e89092919063ffffffff16565b505b612cc5600b54612cb760055485600001546127d990919063ffffffff16565b61285f90919063ffffffff16565b82600101819055508273ffffffffffffffffffffffffffffffffffffffff167fba8de60c3403ec381d1d484652ea1980e3c3e56359195c92525bff4ce47ad98e826040518082815260200191505060405180910390a2505b5050565b60006006548211612d4657612d3f838361275690919063ffffffff16565b9050612d70565b6006548310612d585760009050612d70565b612d6d8360065461275690919063ffffffff16565b90505b92915050565b6060612dd8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612e659092919063ffffffff16565b9050600081511115612e6057808060200190516020811015612df957600080fd5b8101908080519060200190929190505050612e5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061323a602a913960400191505060405180910390fd5b5b505050565b6060612e748484600085612e7d565b90509392505050565b606082471015612ed8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061318a6026913960400191505060405180910390fd5b612ee185613026565b612f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310612fa35780518252602082019150602081019050602083039250612f80565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613005576040519150601f19603f3d011682016040523d82523d6000602084013e61300a565b606091505b509150915061301a828286613039565b92505050949350505050565b600080823b905060008111915050919050565b60608315613049578290506130fe565b60008351111561305c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156130c35780820151818401526020810190506130a8565b50505050905090810190601f1680156130f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734c6f636b207374696c6c20696e206166666563742c206f7220706f6f6c20686173206e6f7420656e646564207965742e4e6577207374617274426c6f636b206d757374206265206c6f776572207468616e206e657720656e64426c6f636b416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4e6577207374617274426c6f636b206d75737420626520686967686572207468616e2063757272656e7420626c6f636b536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c6f636b2074696d6520686173206e6f7420657870697265642c206f722074686520706f6f6c20686173206e6f7420656e646564207965742e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204479993aa2771935095a40b1ee40102a0de9343b062d6d643538a080701b339964736f6c634300060c0033

Deployed Bytecode Sourcemap

28939:13558:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37847:199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29074:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30125:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;29518:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30301:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29133:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30178:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31703:1353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34103:1127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35893:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29364:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36325:414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39865:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29605:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29762:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30409:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2708:148;;;:::i;:::-;;36828:88;;;:::i;:::-;;29841:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2057:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29430:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29297:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38290:606;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37142:475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29688:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33214:654;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33876:75;;;:::i;:::-;;29214:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30032:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29908:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30240:54;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35369:407;;;:::i;:::-;;30471:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3011:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39069:788;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29973:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30359:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37847:199;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37932:13:::1;:11;:13::i;:::-;37973:15;37956:14;:32;;;;38004:34;38022:15;38004:34;;;;;;;;;;;;;;;;;;37847:199:::0;:::o;29074:23::-;;;;:::o;30125:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29518:28::-;;;;:::o;30301:49::-;;;;;;;;;;;;;:::o;29133:26::-;;;;:::o;30178:53::-;;;;;;;;;;;;;;;;;:::o;31703:1353::-;32005:13;;;;;;;;;;;32004:14;31996:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32075:18;;;;;;;;;;;32061:32;;:10;:32;;;32053:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32181:4;32165:13;;:20;;;;;;;;;;;;;;;;;;32212:12;32198:11;;:26;;;;;;;;;;;;;;;;;;32249:12;32235:11;;:26;;;;;;;;;;;;;;;;;;32289:15;32272:14;:32;;;;32328:11;32315:10;:24;;;;32366:14;32350:13;:30;;;;32402:9;32391:8;:20;;;;32436:26;32453:8;;32436:12;:16;;:26;;;;:::i;:::-;32422:11;:40;;;;32503:1;32483:17;:21;32479:124;;;32536:4;32521:12;;:19;;;;;;;;;;;;;;;;;;32574:17;32555:16;:36;;;;32479:124;32615:27;32653:11;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32645:31;;32615:61;;32717:2;32695:19;:24;32687:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32791:36;32807:19;32799:2;32791:15;;:36;;;;:::i;:::-;32786:2;:42;32759:16;:70;;;;32914:10;;32896:15;:28;;;;33023:25;33041:6;33023:17;:25::i;:::-;31703:1353;;;;;;;;;:::o;34103:1127::-;15732:1;16337:7;;:19;;16329:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15732:1;16470:7;:18;;;;34171:31:::1;34252:1:::0;34218:18:::1;:30;34237:10;34218:30;;;;;;;;;;;;;;;;:35;34215:193;;;34296:11;;34270:37;;34215:193;;;34366:18;:30;34385:10;34366:30;;;;;;;;;;;;;;;;34340:56;;34215:193;34444:23;34428:12;:39;;:72;;;;34487:13;;34471:12;:29;;34428:72;34420:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34566:21;34590:8;:20;34599:10;34590:20;;;;;;;;;;;;;;;34566:44;;34644:7;34629:4;:11;;;:22;;34621:62;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;34696:13;:11;:13::i;:::-;34722:15;34740:76;34800:4;:15;;;34740:55;34778:16;;34740:33;34756:16;;34740:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;:59;;:76;;;;:::i;:::-;34722:94;;34843:1;34833:7;:11;34829:151;;;34875:24;34891:7;34875:4;:11;;;:15;;:24;;;;:::i;:::-;34861:4;:11;;:38;;;;34914:54;34947:10;34960:7;34914:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;34829:151;35006:1;34996:7;:11;34992:98;;;35024:54;35057:10;35070:7;35024:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;34992:98;35120:55;35158:16;;35120:33;35136:16;;35120:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;35102:4;:15;;:73;;;;35202:10;35193:29;;;35214:7;35193:29;;;;;;;;;;;;;;;;;;16501:1;;;15688::::0;16649:7;:22;;;;34103:1127;:::o;35893:142::-;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35973:54:::1;36006:10;36019:7;35973:11;;;;;;;;;;;:24;;;;:54;;;;;:::i;:::-;35893:142:::0;:::o;29364:25::-;;;;;;;;;;;;;:::o;36325:414::-;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36547:11:::1;;;;;;;;;;;36522:37;;:13;:37;;;;36514:72;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36597:69;36640:10;36653:12;36604:13;36597:34;;;;:69;;;;;:::i;:::-;36684:47;36703:13;36718:12;36684:47;;;;;;;;;;;;;;;;;;;;;;;;;;36325:414:::0;;:::o;39865:234::-;39933:7;39985:12;39957:18;:25;39976:5;39957:25;;;;;;;;;;;;;;;;:40;39953:81;;;40021:1;40014:8;;;;39953:81;40079:12;40051:18;:25;40070:5;40051:25;;;;;;;;;;;;;;;;:40;40044:47;;39865:234;;;;:::o;29605:25::-;;;;:::o;29762:31::-;;;;:::o;30409:53::-;;;;:::o;2708:148::-;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2815:1:::1;2778:40;;2799:6;::::0;::::1;;;;;;;;2778:40;;;;;;;;;;;;2846:1;2829:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2708:148::o:0;36828:88::-;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36896:12:::1;36880:13;:28;;;;36828:88::o:0;29841:29::-;;;;:::o;2057:87::-;2103:7;2130:6;;;;;;;;;;;2123:13;;2057:87;:::o;29430:31::-;;;;:::o;29297:24::-;;;;;;;;;;;;;:::o;38290:606::-;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38421:10:::1;;38406:12;:25;38398:54;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38485:14;38471:11;:28;38463:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38584:11;38569:12;:26;38561:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38674:11;38661:10;:24;;;;38712:14;38696:13;:30;;;;38811:10;;38793:15;:28;;;;38839:49;38860:11;38873:14;38839:49;;;;;;;;;;;;;;;;;;;;;;;;38290:606:::0;;:::o;37142:475::-;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37259:12:::1;;;;;;;;;;;37251:36;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37302:13;37298:266;;;37360:16;;37340:17;:36;37332:73;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37439:17;37420:16;:36;;;;37298:266;;;37504:13;37489:12;;:28;;;;;;;;;;;;;;;;;;37551:1;37532:16;:20;;;;37298:266;37579:30;37592:16;;37579:30;;;;;;;;;;;;;;;;;;37142:475:::0;;:::o;29688:30::-;;;;:::o;33214:654::-;15732:1;16337:7;;:19;;16329:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15732:1;16470:7;:18;;;;33283:21:::1;33307:8;:20;33316:10;33307:20;;;;;;;;;;;;;;;33283:44;;33344:12;;;;;;;;;;;33340:125;;;33409:16;;33381:24;33393:4;:11;;;33381:7;:11;;:24;;;;:::i;:::-;:44;;33373:80;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;33340:125;33475:13;:11;:13::i;:::-;33515:1;33505:7;:11;33501:170;;;33547:24;33563:7;33547:4;:11;;;:15;;:24;;;;:::i;:::-;33533:4;:11;;:38;;;;33586:73;33623:10;33644:4;33651:7;33586:11;;;;;;;;;;;:28;;;;:73;;;;;;:::i;:::-;33501:170;33701:72;33721:51;33755:16;;33721:29;33733:16;;33721:7;:11;;:29;;;;:::i;:::-;:33;;:51;;;;:::i;:::-;33701:4;:15;;;:19;;:72;;;;:::i;:::-;33683:4;:15;;:90;;;;33801:10;33793:28;;;33813:7;33793:28;;;;;;;;;;;;;;;;;;33832:26;:24;:26::i;:::-;16501:1;15688::::0;16649:7;:22;;;;33214:654;:::o;33876:75::-;33919:24;33932:10;33919:12;:24::i;:::-;33876:75::o;29214:33::-;;;;;;;;;;;;;:::o;30032:25::-;;;;;;;;;;;;;:::o;29908:31::-;;;;:::o;30240:54::-;;;;;;;;;;;;;:::o;35369:407::-;15732:1;16337:7;;:19;;16329:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15732:1;16470:7;:18;;;;35431:21:::1;35455:8;:20;35464:10;35455:20;;;;;;;;;;;;;;;35431:44;;35486:24;35513:4;:11;;;35486:38;;35549:1;35535:4;:11;;:15;;;;35579:1;35561:4;:15;;:19;;;;35616:1;35597:16;:20;35593:116;;;35634:63;35667:10;35680:16;35634:11;;;;;;;;;;;:24;;;;:63;;;;;:::i;:::-;35593:116;35744:10;35726:42;;;35756:4;:11;;;35726:42;;;;;;;;;;;;;;;;;;16501:1;;15688::::0;16649:7;:22;;;;35369:407::o;30471:57::-;;;;;;;;;;;;;;;;;:::o;3011:244::-;2288:12;:10;:12::i;:::-;2277:23;;:7;:5;:7::i;:::-;:23;;;2269:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3120:1:::1;3100:22;;:8;:22;;;;3092:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3210:8;3181:38;;3202:6;::::0;::::1;;;;;;;;3181:38;;;;;;;;;;;;3239:8;3230:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3011:244:::0;:::o;39069:788::-;39128:7;39148:21;39172:8;:15;39181:5;39172:15;;;;;;;;;;;;;;;39148:39;;39198:25;39226:11;;;;;;;;;;;:21;;;39256:4;39226:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39198:64;;39292:15;;39277:12;:30;:56;;;;;39332:1;39311:17;:22;;39277:56;39273:577;;;39350:18;39371:45;39386:15;;39403:12;39371:14;:45::i;:::-;39350:66;;39431:18;39452:30;39467:14;;39452:10;:14;;:30;;;;:::i;:::-;39431:51;;39497:29;39542:77;39563:55;39600:17;39563:32;39578:16;;39563:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;39542:16;;:20;;:77;;;;:::i;:::-;39497:122;;39641:81;39706:4;:15;;;39641:60;39684:16;;39641:38;39657:21;39641:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:60;;;;:::i;:::-;:64;;:81;;;;:::i;:::-;39634:88;;;;;;;;;39273:577;39762:76;39822:4;:15;;;39762:55;39800:16;;39762:33;39778:16;;39762:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;:59;;:76;;;;:::i;:::-;39755:83;;;;39069:788;;;;:::o;29973:25::-;;;;;;;;;;;;;:::o;30359:43::-;;;;:::o;605:106::-;658:15;693:10;686:17;;605:106;:::o;40331:604::-;40394:15;;40378:12;:31;40374:70;;40426:7;;40374:70;40456:25;40484:11;;;;;;;;;;;:21;;;40514:4;40484:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40456:64;;40558:1;40537:17;:22;40533:106;;;40594:12;40576:15;:30;;;;40621:7;;;40533:106;40651:18;40672:45;40687:15;;40704:12;40672:14;:45::i;:::-;40651:66;;40728:18;40749:30;40764:14;;40749:10;:14;;:30;;;;:::i;:::-;40728:51;;40809:77;40830:55;40867:17;40830:32;40845:16;;40830:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;40809:16;;:20;;:77;;;;:::i;:::-;40790:16;:96;;;;40915:12;40897:15;:30;;;;40331:604;;;;:::o;9223:179::-;9281:7;9301:9;9317:1;9313;:5;9301:17;;9342:1;9337;:6;;9329:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9393:1;9386:8;;;9223:179;;;;:::o;9685:158::-;9743:7;9776:1;9771;:6;;9763:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9834:1;9830;:5;9823:12;;9685:158;;;;:::o;10102:220::-;10160:7;10189:1;10184;:6;10180:20;;;10199:1;10192:8;;;;10180:20;10211:9;10227:1;10223;:5;10211:17;;10256:1;10251;10247;:5;;;;;;:10;10239:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10313:1;10306:8;;;10102:220;;;;;:::o;10800:153::-;10858:7;10890:1;10886;:5;10878:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10944:1;10940;:5;;;;;;10933:12;;10800:153;;;;:::o;25575:211::-;25692:86;25712:5;25742:23;;;25767:2;25771:5;25719:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25692:19;:86::i;:::-;25575:211;;;:::o;25794:248::-;25938:96;25958:5;25988:27;;;26017:4;26023:2;26027:5;25965:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25938:19;:96::i;:::-;25794:248;;;;:::o;40107:123::-;40196:26;40213:8;;40196:12;:16;;:26;;;;:::i;:::-;40163:18;:30;40182:10;40163:30;;;;;;;;;;;;;;;:59;;;;40107:123::o;41426:1068::-;41483:21;41507:8;:15;41516:5;41507:15;;;;;;;;;;;;;;;41483:39;;41535:13;:11;:13::i;:::-;41579:1;41565:4;:11;;;:15;41561:926;;;41597:15;41615:76;41675:4;:15;;;41615:55;41653:16;;41615:33;41631:16;;41615:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;:59;;:76;;;;:::i;:::-;41597:94;;41720:1;41710:7;:11;41706:633;;;41744:31;41829:1;41800:18;:25;41819:5;41800:25;;;;;;;;;;;;;;;;:30;41796:216;;;41881:11;;41855:37;;41796:216;;;41967:18;:25;41986:5;41967:25;;;;;;;;;;;;;;;;41941:51;;41796:216;42137:23;42121:12;:39;;:72;;;;42180:13;;42164:12;:29;;42121:72;42113:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42274:49;42307:5;42315:7;42274:11;;;;;;;;;;;:24;;;;:49;;;;;:::i;:::-;41706:633;;42373:55;42411:16;;42373:33;42389:16;;42373:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:55;;;;:::i;:::-;42355:4;:15;;:73;;;;42460:5;42448:27;;;42467:7;42448:27;;;;;;;;;;;;;;;;;;41561:926;;41426:1068;;:::o;41109:309::-;41184:7;41215:13;;41208:3;:20;41204:207;;41252:14;41260:5;41252:3;:7;;:14;;;;:::i;:::-;41245:21;;;;41204:207;41297:13;;41288:5;:22;41284:127;;41334:1;41327:8;;;;41284:127;41375:24;41393:5;41375:13;;:17;;:24;;;;:::i;:::-;41368:31;;41109:309;;;;;:::o;28082:774::-;28506:23;28532:69;28560:4;28532:69;;;;;;;;;;;;;;;;;28540:5;28532:27;;;;:69;;;;;:::i;:::-;28506:95;;28636:1;28616:10;:17;:21;28612:237;;;28771:10;28760:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28752:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28612:237;28082:774;;;:::o;20388:229::-;20525:12;20557:52;20579:6;20587:4;20593:1;20596:12;20557:21;:52::i;:::-;20550:59;;20388:229;;;;;:::o;21508:571::-;21678:12;21736:5;21711:21;:30;;21703:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21803:18;21814:6;21803:10;:18::i;:::-;21795:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21929:12;21943:23;21970:6;:11;;21989:5;21996:4;21970:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21928:73;;;;22019:52;22037:7;22046:10;22058:12;22019:17;:52::i;:::-;22012:59;;;;21508:571;;;;;;:::o;17448:444::-;17508:4;17716:12;17840:7;17828:20;17820:28;;17883:1;17876:4;:8;17869:15;;;17448:444;;;:::o;24157:777::-;24307:12;24336:7;24332:595;;;24367:10;24360:17;;;;24332:595;24501:1;24481:10;:17;:21;24477:439;;;24744:10;24738:17;24805:15;24792:10;24788:2;24784:19;24777:44;24692:148;24887:12;24880:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24157:777;;;;;;:::o

Swarm Source

ipfs://4479993aa2771935095a40b1ee40102a0de9343b062d6d643538a080701b3399

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  ]
[ 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.