ETH Price: $2,458.36 (-1.71%)
Gas: 3.72 Gwei

Contract

0xAa5F3e2e31a13ADde216A7Dc4550872cC253254f
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040161314312022-12-07 7:42:47697 days ago1670398967IN
 Create: HunnyPlayV2
0 ETH0.0184504814.3457741

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HunnyPlayV2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-07
*/

/**
 *Submitted for verification at BscScan.com on 2021-12-20
*/

// Dependency file: @pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol

// SPDX-License-Identifier: MIT

// pragma solidity >=0.4.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, 'SafeMath: addition overflow');

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, 'SafeMath: subtraction overflow');
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, 'SafeMath: multiplication overflow');

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, 'SafeMath: division by zero');
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

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

    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}


// Dependency file: @pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol


// pragma solidity >=0.4.0;

interface IBEP20 {
    /**
     * @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 bep 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);
}


// Dependency file: @pancakeswap/pancake-swap-lib/contracts/utils/Address.sol


// pragma solidity ^0.6.2;

/**
 * @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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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');
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), 'Address: call to non-contract');

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// Dependency file: @pancakeswap/pancake-swap-lib/contracts/token/BEP20/SafeBEP20.sol


// pragma solidity ^0.6.0;

/**
 * @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 SafeBEP20 {
    using SafeMath for uint256;
    using Address for address;

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

    function safeTransferFrom(
        IBEP20 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
     * {IBEP20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IBEP20 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),
            'SafeBEP20: approve from non-zero to non-zero allowance'
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IBEP20 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(
        IBEP20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(
            value,
            'SafeBEP20: 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(IBEP20 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, 'SafeBEP20: low-level call failed');
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), 'SafeBEP20: BEP20 operation did not succeed');
        }
    }
}


// Dependency file: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol


// pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @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);
    }

    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);
            }
        }
    }
}


// Dependency file: @openzeppelin/contracts-upgradeable/proxy/Initializable.sol


// solhint-disable-next-line compiler-version
// pragma solidity >=0.4.24 <0.8.0;

// import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /// @dev Returns true if and only if the function is running in the constructor
    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}


// Dependency file: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol


// pragma solidity >=0.6.0 <0.8.0;
// import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol";

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

    function __Context_init_unchained() internal initializer {
    }
    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;
    }
    uint256[50] private __gap;
}


// Dependency file: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol


// pragma solidity >=0.6.0 <0.8.0;

// import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
// import "@openzeppelin/contracts-upgradeable/proxy/Initializable.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        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;
    }
    uint256[49] private __gap;
}


// Dependency file: contracts/library/PausableUpgradeable.sol

/*
   ____            __   __        __   _
  / __/__ __ ___  / /_ / /  ___  / /_ (_)__ __
 _\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ /
/___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\
     /___/

* Docs: https://docs.synthetix.io/
*
*
* MIT License
* ===========
*
* Copyright (c) 2020 Synthetix
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/

// pragma solidity ^0.6.2;

// import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

abstract contract PausableUpgradeable is OwnableUpgradeable {
    uint256 public lastPauseTime;
    bool public paused;

    event PauseChanged(bool isPaused);

    modifier notPaused() {
        require(!paused, "PausableUpgradeable: cannot be performed while the contract is paused");
        _;
    }

    function __PausableUpgradeable_init() internal initializer {
        __Ownable_init();
        require(owner() != address(0), "PausableUpgradeable: owner must be set");
    }

    function setPaused(bool _paused) external onlyOwner {
        if (_paused == paused) {
            return;
        }

        paused = _paused;
        if (paused) {
            lastPauseTime = now;
        }

        emit PauseChanged(paused);
    }

    uint256[50] private __gap;
}


// Dependency file: contracts/library/WhitelistUpgradeable.sol

// pragma solidity 0.6.12;

/*
 *
 * MIT License
 * ===========
 *
 * Copyright (c) 2020 HunnyFinance
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 */

// import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

contract WhitelistUpgradeable is OwnableUpgradeable {
    mapping(address => bool) private _whitelist;
    bool private _disable; // default - false means whitelist feature is working on. if true no more use of whitelist

    event Whitelisted(address indexed _address, bool whitelist);
    event EnableWhitelist();
    event DisableWhitelist();

    modifier onlyWhitelisted() {
        require(_disable || _whitelist[msg.sender], "Whitelist: caller is not on the whitelist");
        _;
    }

    function __WhitelistUpgradeable_init() internal initializer {
        __Ownable_init();
    }

    function isWhitelist(address _address) public view returns (bool) {
        return _whitelist[_address];
    }

    function setWhitelist(address _address, bool _on) external onlyOwner {
        _whitelist[_address] = _on;

        emit Whitelisted(_address, _on);
    }

    function disableWhitelist(bool disable) external onlyOwner {
        _disable = disable;
        if (disable) {
            emit DisableWhitelist();
        } else {
            emit EnableWhitelist();
        }
    }

    uint256[49] private __gap;
}


// Root file: contracts/hunny/poker/HunnyPlayV2.sol

pragma solidity 0.6.12;

// import "@pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol";
// import "@pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol";
// import "@pancakeswap/pancake-swap-lib/contracts/token/BEP20/SafeBEP20.sol";

// import "contracts/library/PausableUpgradeable.sol";
// import "contracts/library/WhitelistUpgradeable.sol";

// support BNB and multi tokens on a single contract
contract HunnyPlayV2 is PausableUpgradeable, WhitelistUpgradeable {
    using SafeMath for uint256;
    using SafeBEP20 for IBEP20;

    event Deposited(address indexed token, address indexed account, uint256 indexed amount);
    event Withdrawn(address indexed token, address indexed account, uint256 indexed amount);

    function initialize() external initializer {
        __PausableUpgradeable_init();
        __WhitelistUpgradeable_init();
    }

    // receive BNB from anywhere
    receive() external payable {}

    function deposit(address token, uint256 amount) external payable notPaused {
        if (token == address(0)) {
            // BNB case
            emit Deposited(address(0), msg.sender, msg.value);
        } else {
            // token case
            IBEP20(token).safeTransferFrom(msg.sender, address(this), amount);
            emit Deposited(token, msg.sender, amount);
        }
    }

    function withdraw(
        address token,
        address reception,
        uint256 amount
    ) public onlyWhitelisted {
        if (token == address(0)) {
            // BNB case
            payable(reception).transfer(amount);
            emit Withdrawn(address(0), reception, amount);
        } else {
            IBEP20(token).safeTransfer(reception, amount);
            emit Withdrawn(token, reception, amount);
        }
    }

    function withdrawMany(
        address[] memory tokens,
        address[] memory receptions,
        uint256[] memory amounts
    ) public {
        // careful with gas paid
        for (uint256 i = 0; i < receptions.length; i++) {
            withdraw(tokens[i], receptions[i], amounts[i]);
        }
    }

    function recoverBNB(address reception, uint256 amount) public onlyOwner {
        payable(reception).transfer(amount);
    }

    function recoverBEP20(
        address token,
        address reception,
        uint256 amount
    ) public onlyOwner {
        IBEP20(token).safeTransfer(reception, amount);
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableWhitelist","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableWhitelist","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":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelist","type":"bool"}],"name":"Whitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"disable","type":"bool"}],"name":"disableWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"reception","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverBEP20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reception","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_on","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"reception","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"},{"internalType":"address[]","name":"receptions","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"withdrawMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b5061164f806100206000396000f3fe6080604052600436106100ec5760003560e01c8063715018a61161008a578063933139e711610059578063933139e7146102e0578063c683630d14610498578063d9caed12146104cb578063f2fde38b1461050e576100f3565b8063715018a61461025e5780638129fc1c146102735780638da5cb5b1461028857806391b4ded9146102b9576100f3565b80634a3636df116100c65780634a3636df1461017e57806353d6fd59146101b75780635c975abb146101f25780636f78e8081461021b576100f3565b806316c38b3c146100f857806347e7ef241461012657806349ba1b4914610152576100f3565b366100f357005b600080fd5b34801561010457600080fd5b506101246004803603602081101561011b57600080fd5b50351515610541565b005b6101246004803603604081101561013c57600080fd5b506001600160a01b038135169060200135610615565b34801561015e57600080fd5b506101246004803603602081101561017557600080fd5b503515156106eb565b34801561018a57600080fd5b50610124600480360360408110156101a157600080fd5b506001600160a01b0381351690602001356107be565b3480156101c357600080fd5b50610124600480360360408110156101da57600080fd5b506001600160a01b038135169060200135151561085b565b3480156101fe57600080fd5b5061020761091d565b604080519115158252519081900360200190f35b34801561022757600080fd5b506101246004803603606081101561023e57600080fd5b506001600160a01b03813581169160208101359091169060400135610926565b34801561026a57600080fd5b5061012461099c565b34801561027f57600080fd5b50610124610a48565b34801561029457600080fd5b5061029d610af9565b604080516001600160a01b039092168252519081900360200190f35b3480156102c557600080fd5b506102ce610b08565b60408051918252519081900360200190f35b3480156102ec57600080fd5b506101246004803603606081101561030357600080fd5b81019060208101813564010000000081111561031e57600080fd5b82018360208201111561033057600080fd5b8035906020019184602083028401116401000000008311171561035257600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156103a257600080fd5b8201836020820111156103b457600080fd5b803590602001918460208302840111640100000000831117156103d657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561042657600080fd5b82018360208201111561043857600080fd5b8035906020019184602083028401116401000000008311171561045a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610b0e945050505050565b3480156104a457600080fd5b50610207600480360360208110156104bb57600080fd5b50356001600160a01b0316610b6c565b3480156104d757600080fd5b50610124600480360360608110156104ee57600080fd5b506001600160a01b03813581169160208101359091169060400135610b8a565b34801561051a57600080fd5b506101246004803603602081101561053157600080fd5b50356001600160a01b0316610cc1565b610549610dc4565b6001600160a01b031661055a610af9565b6001600160a01b0316146105a3576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b60665460ff16151581151514156105b957610612565b6066805460ff1916821515179081905560ff16156105d657426065555b6066546040805160ff90921615158252517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59181900360200190a15b50565b60665460ff16156106575760405162461bcd60e51b81526004018080602001828103825260458152602001806114e86045913960600191505060405180910390fd5b6001600160a01b03821661069957604051349033906000907f8752a472e571a816aea92eec8dae9baf628e840f4929fbcc2d155e6233ff68a7908290a46106e7565b6106ae6001600160a01b038316333084610dc8565b604051819033906001600160a01b038516907f8752a472e571a816aea92eec8dae9baf628e840f4929fbcc2d155e6233ff68a790600090a45b5050565b6106f3610dc4565b6001600160a01b0316610704610af9565b6001600160a01b03161461074d576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b609a805460ff19168215801591909117909155610792576040517f508560e15717a4e9058b9a19d806cb679004a1bd953376f71fda71c141e5dc5390600090a1610612565b6040517fa2927d972f7cfc5ff8b7ad79f9adf0bdb885d0e569f40d0037df2e1299616ae090600090a150565b6107c6610dc4565b6001600160a01b03166107d7610af9565b6001600160a01b031614610820576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610856573d6000803e3d6000fd5b505050565b610863610dc4565b6001600160a01b0316610874610af9565b6001600160a01b0316146108bd576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260996020908152604091829020805460ff1916851515908117909155825190815291517fa54714518c5d275fdcd3d2a461e4858e4e8cb04fb93cd0bca9d6d34115f264409281900390910190a25050565b60665460ff1681565b61092e610dc4565b6001600160a01b031661093f610af9565b6001600160a01b031614610988576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6108566001600160a01b0384168383610e22565b6109a4610dc4565b6001600160a01b03166109b5610af9565b6001600160a01b0316146109fe576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b600054610100900460ff1680610a615750610a61610e74565b80610a6f575060005460ff16155b610aaa5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610ad5576000805460ff1961ff0019909116610100171660011790555b610add610e85565b610ae5610f6a565b8015610612576000805461ff001916905550565b6033546001600160a01b031690565b60655481565b60005b8251811015610b6657610b5e848281518110610b2957fe5b6020026020010151848381518110610b3d57fe5b6020026020010151848481518110610b5157fe5b6020026020010151610b8a565b600101610b11565b50505050565b6001600160a01b031660009081526099602052604090205460ff1690565b609a5460ff1680610baa57503360009081526099602052604090205460ff165b610be55760405162461bcd60e51b81526004018080602001828103825260298152602001806115ab6029913960400191505060405180910390fd5b6001600160a01b038316610c67576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610c29573d6000803e3d6000fd5b5060405181906001600160a01b038416906000907fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb908290a4610856565b610c7b6001600160a01b0384168383610e22565b80826001600160a01b0316846001600160a01b03167fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb60405160405180910390a4505050565b610cc9610dc4565b6001600160a01b0316610cda610af9565b6001600160a01b031614610d23576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6001600160a01b038116610d685760405162461bcd60e51b81526004018080602001828103825260268152602001806115576026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610b66908590610fff565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610856908490610fff565b6000610e7f306110b0565b15905090565b600054610100900460ff1680610e9e5750610e9e610e74565b80610eac575060005460ff16155b610ee75760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610f12576000805460ff1961ff0019909116610100171660011790555b610f1a6110b6565b6000610f24610af9565b6001600160a01b03161415610ae55760405162461bcd60e51b81526004018080602001828103825260268152602001806115f46026913960400191505060405180910390fd5b600054610100900460ff1680610f835750610f83610e74565b80610f91575060005460ff16155b610fcc5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610ff7576000805460ff1961ff0019909116610100171660011790555b610ae56110b6565b6060611054826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111539092919063ffffffff16565b8051909150156108565780806020019051602081101561107357600080fd5b50516108565760405162461bcd60e51b815260040180806020018281038252602a81526020018061152d602a913960400191505060405180910390fd5b3b151590565b600054610100900460ff16806110cf57506110cf610e74565b806110dd575060005460ff16155b6111185760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015611143576000805460ff1961ff0019909116610100171660011790555b61114b61116a565b610ae561120a565b60606111628484600085611303565b949350505050565b600054610100900460ff16806111835750611183610e74565b80611191575060005460ff16155b6111cc5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610ae5576000805460ff1961ff0019909116610100171660011790558015610612576000805461ff001916905550565b600054610100900460ff16806112235750611223610e74565b80611231575060005460ff16155b61126c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015611297576000805460ff1961ff0019909116610100171660011790555b60006112a1610dc4565b603380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015610612576000805461ff001916905550565b606061130e856114ae565b61135f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061139e5780518252601f19909201916020918201910161137f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611400576040519150601f19603f3d011682016040523d82523d6000602084013e611405565b606091505b509150915081156114195791506111629050565b8051156114295780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147357818101518382015260200161145b565b50505050905090810190601f1680156114a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061116257505015159291505056fe5061757361626c655570677261646561626c653a2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e7472616374206973207061757365645361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656457686974656c6973743a2063616c6c6572206973206e6f74206f6e207468652077686974656c6973744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725061757361626c655570677261646561626c653a206f776e6572206d75737420626520736574a264697066735822122064da7dc5efc1a4e6bdd776979385d8ce98921ce82e639218d1b332ce371d01d864736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106100ec5760003560e01c8063715018a61161008a578063933139e711610059578063933139e7146102e0578063c683630d14610498578063d9caed12146104cb578063f2fde38b1461050e576100f3565b8063715018a61461025e5780638129fc1c146102735780638da5cb5b1461028857806391b4ded9146102b9576100f3565b80634a3636df116100c65780634a3636df1461017e57806353d6fd59146101b75780635c975abb146101f25780636f78e8081461021b576100f3565b806316c38b3c146100f857806347e7ef241461012657806349ba1b4914610152576100f3565b366100f357005b600080fd5b34801561010457600080fd5b506101246004803603602081101561011b57600080fd5b50351515610541565b005b6101246004803603604081101561013c57600080fd5b506001600160a01b038135169060200135610615565b34801561015e57600080fd5b506101246004803603602081101561017557600080fd5b503515156106eb565b34801561018a57600080fd5b50610124600480360360408110156101a157600080fd5b506001600160a01b0381351690602001356107be565b3480156101c357600080fd5b50610124600480360360408110156101da57600080fd5b506001600160a01b038135169060200135151561085b565b3480156101fe57600080fd5b5061020761091d565b604080519115158252519081900360200190f35b34801561022757600080fd5b506101246004803603606081101561023e57600080fd5b506001600160a01b03813581169160208101359091169060400135610926565b34801561026a57600080fd5b5061012461099c565b34801561027f57600080fd5b50610124610a48565b34801561029457600080fd5b5061029d610af9565b604080516001600160a01b039092168252519081900360200190f35b3480156102c557600080fd5b506102ce610b08565b60408051918252519081900360200190f35b3480156102ec57600080fd5b506101246004803603606081101561030357600080fd5b81019060208101813564010000000081111561031e57600080fd5b82018360208201111561033057600080fd5b8035906020019184602083028401116401000000008311171561035257600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092959493602081019350359150506401000000008111156103a257600080fd5b8201836020820111156103b457600080fd5b803590602001918460208302840111640100000000831117156103d657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561042657600080fd5b82018360208201111561043857600080fd5b8035906020019184602083028401116401000000008311171561045a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610b0e945050505050565b3480156104a457600080fd5b50610207600480360360208110156104bb57600080fd5b50356001600160a01b0316610b6c565b3480156104d757600080fd5b50610124600480360360608110156104ee57600080fd5b506001600160a01b03813581169160208101359091169060400135610b8a565b34801561051a57600080fd5b506101246004803603602081101561053157600080fd5b50356001600160a01b0316610cc1565b610549610dc4565b6001600160a01b031661055a610af9565b6001600160a01b0316146105a3576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b60665460ff16151581151514156105b957610612565b6066805460ff1916821515179081905560ff16156105d657426065555b6066546040805160ff90921615158252517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59181900360200190a15b50565b60665460ff16156106575760405162461bcd60e51b81526004018080602001828103825260458152602001806114e86045913960600191505060405180910390fd5b6001600160a01b03821661069957604051349033906000907f8752a472e571a816aea92eec8dae9baf628e840f4929fbcc2d155e6233ff68a7908290a46106e7565b6106ae6001600160a01b038316333084610dc8565b604051819033906001600160a01b038516907f8752a472e571a816aea92eec8dae9baf628e840f4929fbcc2d155e6233ff68a790600090a45b5050565b6106f3610dc4565b6001600160a01b0316610704610af9565b6001600160a01b03161461074d576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b609a805460ff19168215801591909117909155610792576040517f508560e15717a4e9058b9a19d806cb679004a1bd953376f71fda71c141e5dc5390600090a1610612565b6040517fa2927d972f7cfc5ff8b7ad79f9adf0bdb885d0e569f40d0037df2e1299616ae090600090a150565b6107c6610dc4565b6001600160a01b03166107d7610af9565b6001600160a01b031614610820576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610856573d6000803e3d6000fd5b505050565b610863610dc4565b6001600160a01b0316610874610af9565b6001600160a01b0316146108bd576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6001600160a01b038216600081815260996020908152604091829020805460ff1916851515908117909155825190815291517fa54714518c5d275fdcd3d2a461e4858e4e8cb04fb93cd0bca9d6d34115f264409281900390910190a25050565b60665460ff1681565b61092e610dc4565b6001600160a01b031661093f610af9565b6001600160a01b031614610988576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6108566001600160a01b0384168383610e22565b6109a4610dc4565b6001600160a01b03166109b5610af9565b6001600160a01b0316146109fe576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b600054610100900460ff1680610a615750610a61610e74565b80610a6f575060005460ff16155b610aaa5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610ad5576000805460ff1961ff0019909116610100171660011790555b610add610e85565b610ae5610f6a565b8015610612576000805461ff001916905550565b6033546001600160a01b031690565b60655481565b60005b8251811015610b6657610b5e848281518110610b2957fe5b6020026020010151848381518110610b3d57fe5b6020026020010151848481518110610b5157fe5b6020026020010151610b8a565b600101610b11565b50505050565b6001600160a01b031660009081526099602052604090205460ff1690565b609a5460ff1680610baa57503360009081526099602052604090205460ff165b610be55760405162461bcd60e51b81526004018080602001828103825260298152602001806115ab6029913960400191505060405180910390fd5b6001600160a01b038316610c67576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610c29573d6000803e3d6000fd5b5060405181906001600160a01b038416906000907fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb908290a4610856565b610c7b6001600160a01b0384168383610e22565b80826001600160a01b0316846001600160a01b03167fd1c19fbcd4551a5edfb66d43d2e337c04837afda3482b42bdf569a8fccdae5fb60405160405180910390a4505050565b610cc9610dc4565b6001600160a01b0316610cda610af9565b6001600160a01b031614610d23576040805162461bcd60e51b815260206004820181905260248201526000805160206115d4833981519152604482015290519081900360640190fd5b6001600160a01b038116610d685760405162461bcd60e51b81526004018080602001828103825260268152602001806115576026913960400191505060405180910390fd5b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610b66908590610fff565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610856908490610fff565b6000610e7f306110b0565b15905090565b600054610100900460ff1680610e9e5750610e9e610e74565b80610eac575060005460ff16155b610ee75760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610f12576000805460ff1961ff0019909116610100171660011790555b610f1a6110b6565b6000610f24610af9565b6001600160a01b03161415610ae55760405162461bcd60e51b81526004018080602001828103825260268152602001806115f46026913960400191505060405180910390fd5b600054610100900460ff1680610f835750610f83610e74565b80610f91575060005460ff16155b610fcc5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610ff7576000805460ff1961ff0019909116610100171660011790555b610ae56110b6565b6060611054826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111539092919063ffffffff16565b8051909150156108565780806020019051602081101561107357600080fd5b50516108565760405162461bcd60e51b815260040180806020018281038252602a81526020018061152d602a913960400191505060405180910390fd5b3b151590565b600054610100900460ff16806110cf57506110cf610e74565b806110dd575060005460ff16155b6111185760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015611143576000805460ff1961ff0019909116610100171660011790555b61114b61116a565b610ae561120a565b60606111628484600085611303565b949350505050565b600054610100900460ff16806111835750611183610e74565b80611191575060005460ff16155b6111cc5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015610ae5576000805460ff1961ff0019909116610100171660011790558015610612576000805461ff001916905550565b600054610100900460ff16806112235750611223610e74565b80611231575060005460ff16155b61126c5760405162461bcd60e51b815260040180806020018281038252602e81526020018061157d602e913960400191505060405180910390fd5b600054610100900460ff16158015611297576000805460ff1961ff0019909116610100171660011790555b60006112a1610dc4565b603380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015610612576000805461ff001916905550565b606061130e856114ae565b61135f576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061139e5780518252601f19909201916020918201910161137f565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611400576040519150601f19603f3d011682016040523d82523d6000602084013e611405565b606091505b509150915081156114195791506111629050565b8051156114295780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147357818101518382015260200161145b565b50505050905090810190601f1680156114a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061116257505015159291505056fe5061757361626c655570677261646561626c653a2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e7472616374206973207061757365645361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a656457686974656c6973743a2063616c6c6572206973206e6f74206f6e207468652077686974656c6973744f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725061757361626c655570677261646561626c653a206f776e6572206d75737420626520736574a264697066735822122064da7dc5efc1a4e6bdd776979385d8ce98921ce82e639218d1b332ce371d01d864736f6c634300060c0033

Deployed Bytecode Sourcemap

38619:2052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35320:261;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35320:261:0;;;;:::i;:::-;;39159:400;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39159:400:0;;;;;;;;:::i;37870:224::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37870:224:0;;;;:::i;40347:126::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40347:126:0;;;;;;;;:::i;37704:158::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37704:158:0;;;;;;;;;;:::i;34917:18::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40481:187;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40481:187:0;;;;;;;;;;;;;;;;;:::i;32672:148::-;;;;;;;;;;;;;:::i;38950:130::-;;;;;;;;;;;;;:::i;32021:87::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;32021:87:0;;;;;;;;;;;;;;34882:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;40023:316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40023:316:0;;;;;;;;-1:-1:-1;40023:316:0;;-1:-1:-1;;40023:316:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40023:316:0;;;;;;;;-1:-1:-1;40023:316:0;;-1:-1:-1;;40023:316:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40023:316:0;;-1:-1:-1;40023:316:0;;-1:-1:-1;;;;;40023:316:0:i;37584:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37584:112:0;-1:-1:-1;;;;;37584:112:0;;:::i;39567:448::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39567:448:0;;;;;;;;;;;;;;;;;:::i;32975:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32975:244:0;-1:-1:-1;;;;;32975:244:0;;:::i;35320:261::-;32252:12;:10;:12::i;:::-;-1:-1:-1;;;;;32241:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32241:23:0;;32233:68;;;;;-1:-1:-1;;;32233:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32233:68:0;;;;;;;;;;;;;;;35398:6:::1;::::0;::::1;;35387:17;;::::0;::::1;;;35383:56;;;35421:7;;35383:56;35451:6;:16:::0;;-1:-1:-1;;35451:16:0::1;::::0;::::1;;;::::0;;;;::::1;35482:6;35478:58;;;35521:3;35505:13;:19:::0;35478:58:::1;35566:6;::::0;35553:20:::1;::::0;;35566:6:::1;::::0;;::::1;35553:20;;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;32312:1;35320:261:::0;:::o;39159:400::-;35027:6;;;;35026:7;35018:89;;;;-1:-1:-1;;;35018:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39249:19:0;::::1;39245:307;;39315:44;::::0;39349:9:::1;::::0;39337:10:::1;::::0;39333:1:::1;::::0;39315:44:::1;::::0;39333:1;;39315:44:::1;39245:307;;;39419:65;-1:-1:-1::0;;;;;39419:30:0;::::1;39450:10;39470:4;39477:6:::0;39419:30:::1;:65::i;:::-;39504:36;::::0;39533:6;;39521:10:::1;::::0;-1:-1:-1;;;;;39504:36:0;::::1;::::0;::::1;::::0;;;::::1;39245:307;39159:400:::0;;:::o;37870:224::-;32252:12;:10;:12::i;:::-;-1:-1:-1;;;;;32241:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32241:23:0;;32233:68;;;;;-1:-1:-1;;;32233:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32233:68:0;;;;;;;;;;;;;;;37940:8:::1;:18:::0;;-1:-1:-1;;37940:18:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;37969:118:::1;;38002:18;::::0;::::1;::::0;;;::::1;37969:118;;;38058:17;::::0;::::1;::::0;;;::::1;37870:224:::0;:::o;40347:126::-;32252:12;:10;:12::i;:::-;-1:-1:-1;;;;;32241:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32241:23:0;;32233:68;;;;;-1:-1:-1;;;32233:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32233:68:0;;;;;;;;;;;;;;;40430:35:::1;::::0;-1:-1:-1;;;;;40430:27:0;::::1;::::0;:35;::::1;;;::::0;40458:6;;40430:35:::1;::::0;;;40458:6;40430:27;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40347:126:::0;;:::o;37704:158::-;32252:12;:10;:12::i;:::-;-1:-1:-1;;;;;32241:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32241:23:0;;32233:68;;;;;-1:-1:-1;;;32233:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32233:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37784:20:0;::::1;;::::0;;;:10:::1;:20;::::0;;;;;;;;:26;;-1:-1:-1;;37784:26:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37828;;;;;;;::::1;::::0;;;;;;;;::::1;37704:158:::0;;:::o;34917:18::-;;;;;;:::o;40481:187::-;32252:12;:10;:12::i;:::-;-1:-1:-1;;;;;32241:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32241:23:0;;32233:68;;;;;-1:-1:-1;;;32233:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32233:68:0;;;;;;;;;;;;;;;40615:45:::1;-1:-1:-1::0;;;;;40615:26:0;::::1;40642:9:::0;40653:6;40615:26:::1;:45::i;32672:148::-:0;32252:12;:10;:12::i;:::-;-1:-1:-1;;;;;32241:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32241:23:0;;32233:68;;;;;-1:-1:-1;;;32233:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32233:68:0;;;;;;;;;;;;;;;32763:6:::1;::::0;32742:40:::1;::::0;32779:1:::1;::::0;-1:-1:-1;;;;;32763:6:0::1;::::0;32742:40:::1;::::0;32779:1;;32742:40:::1;32793:6;:19:::0;;-1:-1:-1;;;;;;32793:19:0::1;::::0;;32672:148::o;38950:130::-;28593:13;;;;;;;;:33;;;28610:16;:14;:16::i;:::-;28593:50;;;-1:-1:-1;28631:12:0;;;;28630:13;28593:50;28585:109;;;;-1:-1:-1;;;28585:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28707:19;28730:13;;;;;;28729:14;28754:101;;;;28789:13;:20;;-1:-1:-1;;;;28789:20:0;;;;;28824:19;28805:4;28824:19;;;28754:101;39004:28:::1;:26;:28::i;:::-;39043:29;:27;:29::i;:::-;28885:14:::0;28881:68;;;28932:5;28916:21;;-1:-1:-1;;28916:21:0;;;38950:130;:::o;32021:87::-;32094:6;;-1:-1:-1;;;;;32094:6:0;32021:87;:::o;34882:28::-;;;;:::o;40023:316::-;40216:9;40211:121;40235:10;:17;40231:1;:21;40211:121;;;40274:46;40283:6;40290:1;40283:9;;;;;;;;;;;;;;40294:10;40305:1;40294:13;;;;;;;;;;;;;;40309:7;40317:1;40309:10;;;;;;;;;;;;;;40274:8;:46::i;:::-;40254:3;;40211:121;;;;40023:316;;;:::o;37584:112::-;-1:-1:-1;;;;;37668:20:0;37644:4;37668:20;;;:10;:20;;;;;;;;;37584:112::o;39567:448::-;37373:8;;;;;:34;;-1:-1:-1;37396:10:0;37385:22;;;;:10;:22;;;;;;;;37373:34;37365:88;;;;-1:-1:-1;;;37365:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39707:19:0;::::1;39703:305;;39768:35;::::0;-1:-1:-1;;;;;39768:27:0;::::1;::::0;:35;::::1;;;::::0;39796:6;;39768:35:::1;::::0;;;39796:6;39768:27;:35;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39823:40:0::1;::::0;39856:6;;-1:-1:-1;;;;;39823:40:0;::::1;::::0;39841:1:::1;::::0;39823:40:::1;::::0;39841:1;;39823:40:::1;39703:305;;;39896:45;-1:-1:-1::0;;;;;39896:26:0;::::1;39923:9:::0;39934:6;39896:26:::1;:45::i;:::-;39989:6;39978:9;-1:-1:-1::0;;;;;39961:35:0::1;39971:5;-1:-1:-1::0;;;;;39961:35:0::1;;;;;;;;;;;39567:448:::0;;;:::o;32975:244::-;32252:12;:10;:12::i;:::-;-1:-1:-1;;;;;32241:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32241:23:0;;32233:68;;;;;-1:-1:-1;;;32233:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32233:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33064:22:0;::::1;33056:73;;;;-1:-1:-1::0;;;33056:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33166:6;::::0;33145:38:::1;::::0;-1:-1:-1;;;;;33145:38:0;;::::1;::::0;33166:6:::1;::::0;33145:38:::1;::::0;33166:6:::1;::::0;33145:38:::1;33194:6;:17:::0;;-1:-1:-1;;;;;;33194:17:0::1;-1:-1:-1::0;;;;;33194:17:0;;;::::1;::::0;;;::::1;::::0;;32975:244::o;30127:106::-;30215:10;30127:106;:::o;16781:248::-;16952:68;;;-1:-1:-1;;;;;16952:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16952:68:0;-1:-1:-1;;;16952:68:0;;;16925:96;;16945:5;;16925:19;:96::i;16562:211::-;16706:58;;;-1:-1:-1;;;;;16706:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16706:58:0;-1:-1:-1;;;16706:58:0;;;16679:86;;16699:5;;16679:19;:86::i;29049:125::-;29097:4;29122:44;29160:4;29122:29;:44::i;:::-;29121:45;29114:52;;29049:125;:::o;35135:177::-;28593:13;;;;;;;;:33;;;28610:16;:14;:16::i;:::-;28593:50;;;-1:-1:-1;28631:12:0;;;;28630:13;28593:50;28585:109;;;;-1:-1:-1;;;28585:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28707:19;28730:13;;;;;;28729:14;28754:101;;;;28789:13;:20;;-1:-1:-1;;;;28789:20:0;;;;;28824:19;28805:4;28824:19;;;28754:101;35205:16:::1;:14;:16::i;:::-;35259:1;35240:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;35240:21:0::1;;;35232:72;;;;-1:-1:-1::0;;;35232:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37481:95:::0;28593:13;;;;;;;;:33;;;28610:16;:14;:16::i;:::-;28593:50;;;-1:-1:-1;28631:12:0;;;;28630:13;28593:50;28585:109;;;;-1:-1:-1;;;28585:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28707:19;28730:13;;;;;;28729:14;28754:101;;;;28789:13;:20;;-1:-1:-1;;;;28789:20:0;;;;;28824:19;28805:4;28824:19;;;28754:101;37552:16:::1;:14;:16::i;19097:774::-:0;19521:23;19547:69;19575:4;19547:69;;;;;;;;;;;;;;;;;19555:5;-1:-1:-1;;;;;19547:27:0;;;:69;;;;;:::i;:::-;19631:17;;19521:95;;-1:-1:-1;19631:21:0;19627:237;;19786:10;19775:30;;;;;;;;;;;;;;;-1:-1:-1;19775:30:0;19767:85;;;;-1:-1:-1;;;19767:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20700:422;21067:20;21106:8;;;20700:422::o;31607:129::-;28593:13;;;;;;;;:33;;;28610:16;:14;:16::i;:::-;28593:50;;;-1:-1:-1;28631:12:0;;;;28630:13;28593:50;28585:109;;;;-1:-1:-1;;;28585:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28707:19;28730:13;;;;;;28729:14;28754:101;;;;28789:13;:20;;-1:-1:-1;;;;28789:20:0;;;;;28824:19;28805:4;28824:19;;;28754:101;31665:26:::1;:24;:26::i;:::-;31702;:24;:26::i;13365:230::-:0;13502:12;13534:53;13557:6;13565:4;13571:1;13574:12;13534:22;:53::i;:::-;13527:60;13365:230;-1:-1:-1;;;;13365:230:0:o;30056:65::-;28593:13;;;;;;;;:33;;;28610:16;:14;:16::i;:::-;28593:50;;;-1:-1:-1;28631:12:0;;;;28630:13;28593:50;28585:109;;;;-1:-1:-1;;;28585:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28707:19;28730:13;;;;;;28729:14;28754:101;;;;28789:13;:20;;-1:-1:-1;;;;28789:20:0;;;;;28824:19;28805:4;28824:19;;;28885:14;28881:68;;;28932:5;28916:21;;-1:-1:-1;;28916:21:0;;;30056:65;:::o;31744:196::-;28593:13;;;;;;;;:33;;;28610:16;:14;:16::i;:::-;28593:50;;;-1:-1:-1;28631:12:0;;;;28630:13;28593:50;28585:109;;;;-1:-1:-1;;;28585:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28707:19;28730:13;;;;;;28729:14;28754:101;;;;28789:13;:20;;-1:-1:-1;;;;28789:20:0;;;;;28824:19;28805:4;28824:19;;;28754:101;31812:17:::1;31832:12;:10;:12::i;:::-;31855:6;:18:::0;;-1:-1:-1;;;;;;31855:18:0::1;-1:-1:-1::0;;;;;31855:18:0;::::1;::::0;;::::1;::::0;;;31889:43:::1;::::0;31855:18;;-1:-1:-1;31855:18:0;-1:-1:-1;;31889:43:0::1;::::0;-1:-1:-1;;31889:43:0::1;28867:1;28885:14:::0;28881:68;;;28932:5;28916:21;;-1:-1:-1;;28916:21:0;;;31744:196;:::o;14853:1020::-;15026:12;15059:18;15070:6;15059:10;:18::i;:::-;15051:60;;;;;-1:-1:-1;;;15051:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15185:12;15199:23;15226:6;-1:-1:-1;;;;;15226:11:0;15245:8;15255:4;15226:34;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15226:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15184:76;;;;15275:7;15271:595;;;15306:10;-1:-1:-1;15299:17:0;;-1:-1:-1;15299:17:0;15271:595;15420:17;;:21;15416:439;;15683:10;15677:17;15744:15;15731:10;15727:2;15723:19;15716:44;15631:148;15826:12;15819:20;;-1:-1:-1;;;15819:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10228:641;10288:4;10769:20;;10599:66;10818:23;;;;;;:42;;-1:-1:-1;;10845:15:0;;;10810:51;-1:-1:-1;;10228:641:0:o

Swarm Source

ipfs://64da7dc5efc1a4e6bdd776979385d8ce98921ce82e639218d1b332ce371d01d8

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.