ETH Price: $2,675.62 (+2.78%)

Contract

0x3E1612d5c9d5823FfAC5F472cF26e60238e27563
 
Transaction Hash
Method
Block
From
To
Withdraw188699372023-12-26 12:41:47241 days ago1703594507IN
0x3E1612d5...238e27563
0 ETH0.0034480924.30016814
Withdraw188699212023-12-26 12:38:35241 days ago1703594315IN
0x3E1612d5...238e27563
0 ETH0.002621224.1518809
Withdraw186614642023-11-27 7:22:23270 days ago1701069743IN
0x3E1612d5...238e27563
0 ETH0.0040850925.69309318
Withdraw186614612023-11-27 7:21:47270 days ago1701069707IN
0x3E1612d5...238e27563
0 ETH0.0031633725.17769399
Deposit180710542023-09-05 15:04:11353 days ago1693926251IN
0x3E1612d5...238e27563
0 ETH0.0031998919.74869001
Withdraw178348732023-08-03 13:49:47386 days ago1691070587IN
0x3E1612d5...238e27563
0 ETH0.0041911629.52935775
Withdraw174135942023-06-05 10:00:59445 days ago1685959259IN
0x3E1612d5...238e27563
0 ETH0.0043366525.7095176
Withdraw174134412023-06-05 9:29:59445 days ago1685957399IN
0x3E1612d5...238e27563
0 ETH0.0034557320.48705134
Withdraw174009712023-06-03 15:13:59447 days ago1685805239IN
0x3E1612d5...238e27563
0 ETH0.0063554237.68032464
Deposit172621122023-05-15 2:03:59466 days ago1684116239IN
0x3E1612d5...238e27563
0 ETH0.0074388445.9066103
Withdraw168981032023-03-24 14:58:23518 days ago1679669903IN
0x3E1612d5...238e27563
0 ETH0.0032460326.86982148
Deposit168980912023-03-24 14:55:59518 days ago1679669759IN
0x3E1612d5...238e27563
0 ETH0.004066828.05796015
Deposit167982362023-03-10 14:11:11532 days ago1678457471IN
0x3E1612d5...238e27563
0 ETH0.0063448739.15547803
Deposit162941762022-12-30 1:03:47602 days ago1672362227IN
0x3E1612d5...238e27563
0 ETH0.0018801416.44116133
Deposit160617722022-11-27 13:58:23635 days ago1669557503IN
0x3E1612d5...238e27563
0 ETH0.0017243711.8968988
Deposit160512102022-11-26 2:35:11636 days ago1669430111IN
0x3E1612d5...238e27563
0 ETH0.0018739712.92902866
Deposit158511702022-10-29 3:55:47664 days ago1667015747IN
0x3E1612d5...238e27563
0 ETH0.0012966110.14316556
Deposit156576242022-10-02 2:59:11691 days ago1664679551IN
0x3E1612d5...238e27563
0 ETH0.000782336.84121616
Deposit156576122022-10-02 2:56:35691 days ago1664679395IN
0x3E1612d5...238e27563
0 ETH0.000748926.54902615
Deposit155368302022-09-15 4:28:33708 days ago1663216113IN
0x3E1612d5...238e27563
0 ETH0.001687414.75723247
Deposit154654012022-09-03 12:31:42720 days ago1662208302IN
0x3E1612d5...238e27563
0 ETH0.00075266.58125286
Deposit154653922022-09-03 12:30:16720 days ago1662208216IN
0x3E1612d5...238e27563
0 ETH0.000984168.60613192
Deposit154564772022-09-02 2:14:41721 days ago1662084881IN
0x3E1612d5...238e27563
0 ETH0.0017114513.38715376
Deposit154242512022-08-27 22:43:17726 days ago1661640197IN
0x3E1612d5...238e27563
0 ETH0.000945958.27200208
Deposit152675632022-08-03 5:16:53751 days ago1659503813IN
0x3E1612d5...238e27563
0 ETH0.000781326.11163513
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BBSPoolV2

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-07
*/

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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

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

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


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

/**
 * @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.0 <0.8.0;

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

// BitberrySwap with Governance.
contract BitberrySwap is ERC20("Bitberryswap", "BBS"), Ownable {
    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (0x).
    function mint(address _to, uint256 _amount) public onlyOwner {
        _mint(_to, _amount);
    }
}

pragma solidity 0.6.12;
/////////////////////////////////////////////////////////////////////////////////////
//
//  Level
//
/////////////////////////////////////////////////////////////////////////////////////


contract BBSLevel is Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    struct LevelInfo {
        uint256 level;
        uint256 amount;
    }

    BBSPoolV2 pool;
    IERC20 public token;

    LevelInfo[] public info;
    mapping(address => LevelInfo) public users;
    
    event LevelUp(address indexed user, uint256 amount);
    event LevelDown(address indexed user, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 amount);

    constructor(BBSPoolV2 _pool, IERC20 _token) public {
        pool = _pool;
        token = _token;
    }

    function infoLength() public view returns (uint256) {
        return info.length;
    }

    function getLevel(address _addr) public view returns (uint256) {
        return users[_addr].level;
    }

    function getAmount(address _addr) public view returns (uint256) {
        return users[_addr].amount;
    }

    function setPoolContract(BBSPoolV2 _pool) public onlyOwner {
        pool = _pool;
    }
    
    function add(uint256 _level, uint256 _amount) public onlyOwner {
        info.push(LevelInfo({level: _level, amount: _amount}));
    }

    function set(uint256 id, uint256 _level, uint256 _amount) public onlyOwner {
        info[id].level = _level;
        info[id].amount = _amount;
    }

    function levelUp(uint256 _amount) public {
        require(_amount > 0, "levelUp: amount 0");

        LevelInfo storage user = users[msg.sender];
        user.amount = user.amount.add(_amount);

        uint256 length = info.length;
        for (uint256 i = 0; i < length; i++) {
            if (info[i].amount <= user.amount && user.level < info[i].level) {
                user.level = info[i].level;
            }
        }
        token.safeTransferFrom(address(msg.sender), address(this), _amount);
        emit LevelUp(msg.sender, _amount);
    }

    function levelDown(uint256 _amount) public {
        require(_amount > 0, "levelDown: amount 0");
        require(users[msg.sender].amount >= _amount, "levelDown: not good");
        require(!pool.userMining(msg.sender, true), "levelDown: mining ture");
        
        LevelInfo storage user = users[msg.sender];
        user.amount = user.amount.sub(_amount);
        user.level = 0;

        uint256 length = info.length;
        for (uint256 i = 0; i < length; i++) {
            if (info[i].amount <= user.amount && user.level < info[i].level) {
                user.level = info[i].level;
            }
        }

        token.safeTransfer(address(msg.sender), _amount);
        emit LevelDown(msg.sender, _amount);
    }

    function emergencyWithdraw(address _addr) public onlyOwner {
        LevelInfo storage user = users[_addr];

        token.safeTransfer(address(_addr), user.amount);
        emit EmergencyWithdraw(_addr, user.amount);
        user.level = 0;
        user.amount = 0;
    }
}

pragma solidity 0.6.12;

/////////////////////////////////////////////////////////////////////////////////////
//
//  Referral
//
/////////////////////////////////////////////////////////////////////////////////////

contract BBSReferral is Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    IERC20 public token;

    uint256 public fee;

    struct User {
        address parent;
        address[] children;
        uint256 grade;
    }

    mapping(address => User) public users;

    event AddReferral(address indexed user, address _addr);
    event Register(address indexed user, address _addr);

    constructor(IERC20 _token, uint256 _fee) public {
        token = _token;
        fee = _fee;
    }

    function getParent(address _addr) public view returns (address) {
        return users[_addr].parent;
    }

    function getChildren(address _addr) public view returns (address[] memory) {
        return users[_addr].children;
    }

    function getGrade(address _addr) public view returns (uint256) {
        return users[_addr].grade;
    }

    function setFee(IERC20 _token, uint256 _amount) public onlyOwner {
        token = _token;
        fee = _amount;
    }

    function withdraw(uint256 _amount) public onlyOwner {
        require(
            token.balanceOf(address(this)) >= _amount,
            "withdraw: not good"
        );
        token.safeTransfer(address(msg.sender), _amount);
    }

    // 마스터 등록 (온리 오너계정)
    function addMaster(address _addr) public onlyOwner {
        // _addr 이 등록 되어있으면 에러
        require(users[_addr].grade < 1, "addMaster: used address");
        User storage user = users[_addr];
        user.grade = 1;
        users[_addr] = user;
    }

    // 레퍼럴 계정
    // 상위는 마스터, 토큰으로 구매 (fee)
    // _addr : master address
    function addReferral(address _addr) public {
        // _addr 이 master 계정이 아니면 에러
        require(users[_addr].grade == 1, "addReferral: not address");

        //내 address가 등록 되어있으면 에러
        require(users[msg.sender].grade < 1, "addReferral: used address");

        //레퍼럴 유저 등록
        User storage user = users[msg.sender];
        user.grade = 2;
        user.parent = _addr;
        users[msg.sender] = user;

        //마스터 children 추가
        User storage master = users[_addr];
        master.children.push(msg.sender);

        token.safeTransferFrom(address(msg.sender), address(this), fee);
        emit AddReferral(msg.sender, _addr);
    }

    //레퍼럴 등록
    // _addr = referral
    function register(address _addr) public {
        // msg.sender 와 _addr 이 같으면 에러
        require(msg.sender != _addr, "register: error address");

        //내 address가 등록 되어있으면 에러
        require(users[msg.sender].grade < 1, "register: used address");

        // _addr이 referral이 아니면 에러
        require(users[_addr].grade == 2, "register: not referral address");

        // 상위레퍼럴에 children 추가
        User storage parent = users[_addr];
        parent.children.push(msg.sender);

        // msg.sender로 구조체 생성
        User storage user = users[msg.sender];
        user.parent = _addr;
        user.grade = 3;
        emit Register(msg.sender, _addr);
    }
}
pragma solidity 0.6.12;

interface IMigratorPool {
    function migrate(IERC20 token) external returns (IERC20);
}


contract BBSPoolV2 is Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    struct UserInfo {
        uint256 amount;
        uint256 rewardDebt;
    }

    struct PoolInfo {
        IERC20 lpToken;
        uint256 allocPoint;
        uint256 lastRewardBlock;
        uint256 accTokenPerShare;
        uint256 level;
    }

    BitberrySwap public token;
    address public teamAddr;
    uint256 public tokenPerBlock;
    uint256 public BONUS_MULTIPLIER = 1;
    IMigratorPool public migrator;
    PoolInfo[] public poolInfo;
    mapping (uint256 => mapping (address => UserInfo)) public userInfo;
    uint256 public totalAllocPoint;
    uint256 public startBlock;

    uint256 public endBlock;

    BBSLevel public levelContract;
    BBSReferral public referralContract;

    event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
    event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
    event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);

    constructor(
        BitberrySwap _token,
        address _teamAddr,
        uint256 _tokenPerBlock,
        uint256 _startBlock,
        uint256 _endBlock
    ) public {
        token = _token;
        teamAddr = _teamAddr;
        tokenPerBlock = _tokenPerBlock;
        startBlock = _startBlock;
        endBlock = _endBlock;
    }

    function setLevelContract(BBSLevel _levelContract) public onlyOwner {
        levelContract = _levelContract;
    }

    function setReferralContract(BBSReferral _referralContract) public onlyOwner {
        referralContract = _referralContract;
    }

    function updateMultiplier(uint256 multiplierNumber) public onlyOwner {
        BONUS_MULTIPLIER = multiplierNumber;
    }

    function poolLength() external view returns (uint256) {
        return poolInfo.length;
    }

    function userMining(address _addr, bool _levelPool) external view returns (bool) {
        for (uint256 pid = 0; pid < poolInfo.length; pid++) {
            PoolInfo storage pool = poolInfo[pid];
            UserInfo storage user = userInfo[pid][_addr];

            if(_levelPool && pool.level > 0 && user.amount > 0)
                return true;
            else if (!_levelPool && user.amount > 0)
                return true;
        }
        return false;
    }

    function add(uint256 _allocPoint, IERC20 _lpToken, bool _withUpdate, uint256 _level) public onlyOwner {
        if (_withUpdate) {
            massUpdatePools();
        }
        uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
        totalAllocPoint = totalAllocPoint.add(_allocPoint);
        poolInfo.push(PoolInfo({
            lpToken: _lpToken,
            allocPoint: _allocPoint,
            lastRewardBlock: lastRewardBlock,
            accTokenPerShare: 0,
            level: _level
        }));
    }

    function set(uint256 _pid, uint256 _allocPoint, bool _withUpdate) public onlyOwner {
        if (_withUpdate) {
            massUpdatePools();
        }
        totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint);
        poolInfo[_pid].allocPoint = _allocPoint;
    }

    function setMigrator(IMigratorPool _migrator) public onlyOwner {
        migrator = _migrator;
    }

    function migrate(uint256 _pid) public {
        require(address(migrator) != address(0), "migrate: no migrator");
        PoolInfo storage pool = poolInfo[_pid];
        IERC20 lpToken = pool.lpToken;
        uint256 bal = lpToken.balanceOf(address(this));
        lpToken.safeApprove(address(migrator), bal);
        IERC20 newLpToken = migrator.migrate(lpToken);
        require(bal == newLpToken.balanceOf(address(this)), "migrate: bad");
        pool.lpToken = newLpToken;
    }

    function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) {
        return _to.sub(_from).mul(BONUS_MULTIPLIER);
    }

    function pendingToken(uint256 _pid, address _user) external view returns (uint256) {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_user];
        uint256 accTokenPerShare = pool.accTokenPerShare;
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));

        uint256 blockNumber = 0;
        if(block.number > endBlock)
            blockNumber = endBlock;
        else
            blockNumber = block.number;
        
        if (blockNumber > pool.lastRewardBlock && lpSupply != 0) {
            uint256 multiplier = getMultiplier(pool.lastRewardBlock, blockNumber);
            uint256 tokenReward = multiplier.mul(tokenPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
            accTokenPerShare = accTokenPerShare.add(tokenReward.mul(1e12).div(lpSupply));
        }
        return user.amount.mul(accTokenPerShare).div(1e12).sub(user.rewardDebt);
    }

    function massUpdatePools() public {
        uint256 length = poolInfo.length;
        for (uint256 pid = 0; pid < length; ++pid) {
            updatePool(pid);
        }
    }

    function updatePool(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        if (block.number <= pool.lastRewardBlock) {
            return;
        }
        uint256 lpSupply = pool.lpToken.balanceOf(address(this));
        if (lpSupply == 0) {
            if (block.number > endBlock)
                pool.lastRewardBlock = endBlock;
            else
                pool.lastRewardBlock = block.number;
            return;
        }
        if (pool.lastRewardBlock == endBlock){
            return;
        }

        if (block.number > endBlock){
            uint256 multiplier = getMultiplier(pool.lastRewardBlock, endBlock);
            uint256 tokenReward = multiplier.mul(tokenPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
            //token.mint(teamAddr, tokenReward.div(10));
            //token.mint(address(this), tokenReward);
            pool.accTokenPerShare = pool.accTokenPerShare.add(tokenReward.mul(1e12).div(lpSupply));
            pool.lastRewardBlock = endBlock;
            return;
        }

        uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
        uint256 tokenReward = multiplier.mul(tokenPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
        //token.mint(teamAddr, tokenReward.div(10));
        //token.mint(address(this), tokenReward);
        pool.accTokenPerShare = pool.accTokenPerShare.add(tokenReward.mul(1e12).div(lpSupply));
        pool.lastRewardBlock = block.number;
        
    }

    function deposit(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];

        //풀 레벨 보다 사용자 레벨이 높거나 같아야 함
        require(levelContract.getLevel(msg.sender) >= pool.level, "deposit : user level");
        //레벨 풀 일 경우 사용자는 레퍼럴에 등록되어 있어야 함
        if(pool.level > 0)
            require(referralContract.getGrade(msg.sender) > 0, "deposit : user referral");

        //(address parent, address[] children, uint256 grade) = referralContract.users(msg.sender);
        //require(grade > 0, "deposit : user referral");

        updatePool(_pid);
        if (user.amount > 0) {
            uint256 pending = user.amount.mul(pool.accTokenPerShare).div(1e12).sub(user.rewardDebt);
            safeTokenTransfer(msg.sender, pending, pool.level);
        }
        if(_amount > 0) { //kevin
            pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
            user.amount = user.amount.add(_amount);
        }
        user.rewardDebt = user.amount.mul(pool.accTokenPerShare).div(1e12);
        emit Deposit(msg.sender, _pid, _amount);
    }
    
    function depositFor(address _beneficiary, uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][_beneficiary];

        //풀 레벨 보다 사용자 레벨이 높거나 같아야 함
        require(levelContract.getLevel(_beneficiary) >= pool.level, "depositFor : user level");
        //레벨 풀 일 경우 사용자는 레퍼럴에 등록되어 있어야 함
        if(pool.level > 0)
            require(referralContract.getGrade(_beneficiary) > 0, "depositFor : user referral");

        updatePool(_pid);
        if (user.amount > 0) {
            uint256 pending = user.amount.mul(pool.accTokenPerShare).div(1e12).sub(user.rewardDebt);
            safeTokenTransfer(_beneficiary, pending, pool.level);
        }
        if(_amount > 0) { //kevin
            pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount);
            user.amount = user.amount.add(_amount);
        }
        user.rewardDebt = user.amount.mul(pool.accTokenPerShare).div(1e12);
        emit Deposit(_beneficiary, _pid, _amount);
    }

    function withdraw(uint256 _pid, uint256 _amount) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        require(user.amount >= _amount, "withdraw: not good");
        updatePool(_pid);
        uint256 pending = user.amount.mul(pool.accTokenPerShare).div(1e12).sub(user.rewardDebt);
        safeTokenTransfer(msg.sender, pending, pool.level);
        user.amount = user.amount.sub(_amount);
        user.rewardDebt = user.amount.mul(pool.accTokenPerShare).div(1e12);
        pool.lpToken.safeTransfer(address(msg.sender), _amount);
        emit Withdraw(msg.sender, _pid, _amount);
    }

    function emergencyWithdraw(uint256 _pid) public {
        PoolInfo storage pool = poolInfo[_pid];
        UserInfo storage user = userInfo[_pid][msg.sender];
        pool.lpToken.safeTransfer(address(msg.sender), user.amount);
        emit EmergencyWithdraw(msg.sender, _pid, user.amount);
        user.amount = 0;
        user.rewardDebt = 0;
    }

    function safeTokenTransfer(address _to, uint256 _amount, uint256 poolLevel) internal {
        uint256 tokenBal = token.balanceOf(address(this));

        if (_amount > tokenBal) {
            //grade == 2(레퍼럴)일때 상위 master에게 수수료 2%
            if( poolLevel > 0 && referralContract.getGrade(_to) == 2 ){
                address master = referralContract.getParent(_to);
                uint256 masterFee = tokenBal.mul(10).div(500); //2%
                token.transfer(master, masterFee);
                token.transfer(_to, tokenBal.sub(masterFee));
            //grade == 3(일반)일때 수수료 상위 parent 8%, master 2%
            } else if ( poolLevel > 0 && referralContract.getGrade(_to) == 3 ){
                address parent = referralContract.getParent(_to);
                address master = referralContract.getParent(parent);
                uint256 parentFee = tokenBal.mul(10).div(125); //8%
                uint256 masterFee = tokenBal.mul(10).div(500); //2%
                token.transfer(parent, parentFee);
                token.transfer(master, masterFee);
                token.transfer(_to, tokenBal.sub(parentFee).sub(masterFee));
            } else
                token.transfer(_to, tokenBal);

        } else {
            //grade == 2(레퍼럴)일때 상위 master에게 수수료 2%
            if( poolLevel > 0 && referralContract.getGrade(_to) == 2 ){
                address master = referralContract.getParent(_to);
                uint256 masterFee = _amount.mul(10).div(500); //2%
                token.transfer(master, masterFee);
                token.transfer(_to, _amount.sub(masterFee));
            //grade == 3(일반)일때 수수료 상위 parent 8%, master 2%
            } else if ( poolLevel > 0 && referralContract.getGrade(_to) == 3 ){
                address parent = referralContract.getParent(_to);
                address master = referralContract.getParent(parent);
                uint256 parentFee = _amount.mul(10).div(125); //8%
                uint256 masterFee = _amount.mul(10).div(500); //2%
                token.transfer(parent, parentFee);
                token.transfer(master, masterFee);
                token.transfer(_to, _amount.sub(parentFee).sub(masterFee));
            } else
                token.transfer(_to, _amount);
        }
    }

    // Update team address by the previous team.
    function team(address _teamAddr) public {
        require(msg.sender == teamAddr, "dev: wut?");
        teamAddr = _teamAddr;
    }

    function setEndBlock(uint256 _block) public onlyOwner {
        require(block.number < _block, "setEndBlock: err _block");
        endBlock = _block;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract BitberrySwap","name":"_token","type":"address"},{"internalType":"address","name":"_teamAddr","type":"address"},{"internalType":"uint256","name":"_tokenPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_endBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"},{"internalType":"uint256","name":"_level","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"levelContract","outputs":[{"internalType":"contract BBSLevel","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrator","outputs":[{"internalType":"contract IMigratorPool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accTokenPerShare","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralContract","outputs":[{"internalType":"contract BBSReferral","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_block","type":"uint256"}],"name":"setEndBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract BBSLevel","name":"_levelContract","type":"address"}],"name":"setLevelContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMigratorPool","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract BBSReferral","name":"_referralContract","type":"address"}],"name":"setReferralContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_teamAddr","type":"address"}],"name":"team","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract BitberrySwap","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"multiplierNumber","type":"uint256"}],"name":"updateMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"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":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_levelPool","type":"bool"}],"name":"userMining","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016004553480156200001657600080fd5b5060405162004e5c38038062004e5c833981810160405260a08110156200003c57600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050600062000087620001c760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35084600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826003819055508160098190555080600a819055505050505050620001cf565b600033905090565b614c7d80620001df6000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80635adaa4921161011a5780638da5cb5b116100ad5780639b50b56d1161007c5780639b50b56d14610862578063c713aa94146108c8578063e2bbb158146108f6578063f2fde38b1461092e578063fc0c546a1461097257610206565b80638da5cb5b146107155780638dbb1e3a1461074957806393f1a40b1461079557806396805e54146107fe57610206565b8063715018a6116100e9578063715018a6146106855780637cd07e471461068f5780637dad19db146106c35780638aa28550146106f757610206565b80635adaa492146105c55780635ffe614614610609578063630b5ba11461063757806364482f791461064157610206565b80634198709a1161019d57806348e43af41161016c57806348e43af41461047b5780634a5ff749146104dd5780634cf5fbf51461051157806351eb05a6146105695780635312ea8e1461059757610206565b80634198709a146103d9578063441a3e70146103f7578063454b06081461042f57806348cd4cb11461045d57610206565b806315d892ee116101d957806315d892ee146102ff57806317caf6f11461033357806323cf3118146103515780633de949251461039557610206565b806306ad5a471461020b578063081e3eda1461024f578063083c63231461026d5780631526fe271461028b575b600080fd5b61024d6004803603602081101561022157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109a6565b005b610257610a99565b6040518082815260200191505060405180910390f35b610275610aa6565b6040518082815260200191505060405180910390f35b6102b7600480360360208110156102a157600080fd5b8101908080359060200190929190505050610aac565b604051808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018281526020019550505050505060405180910390f35b610307610b0f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61033b610b35565b6040518082815260200191505060405180910390f35b6103936004803603602081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b3b565b005b6103d7600480360360208110156103ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c2e565b005b6103e1610d35565b6040518082815260200191505060405180910390f35b61042d6004803603604081101561040d57600080fd5b810190808035906020019092919080359060200190929190505050610d3b565b005b61045b6004803603602081101561044557600080fd5b8101908080359060200190929190505050610f8a565b005b6104656113b4565b6040518082815260200191505060405180910390f35b6104c76004803603604081101561049157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113ba565b6040518082815260200191505060405180910390f35b6104e561161b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105676004803603606081101561052757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611641565b005b6105956004803603602081101561057f57600080fd5b8101908080359060200190929190505050611ab5565b005b6105c3600480360360208110156105ad57600080fd5b8101908080359060200190929190505050611d63565b005b610607600480360360208110156105db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e95565b005b6106356004803603602081101561061f57600080fd5b8101908080359060200190929190505050611f88565b005b61063f612041565b005b6106836004803603606081101561065757600080fd5b81019080803590602001909291908035906020019092919080351515906020019092919050505061206e565b005b61068d61219f565b005b61069761230c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106cb612332565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106ff612358565b6040518082815260200191505060405180910390f35b61071d61235e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61077f6004803603604081101561075f57600080fd5b810190808035906020019092919080359060200190929190505050612387565b6040518082815260200191505060405180910390f35b6107e1600480360360408110156107ab57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123b8565b604051808381526020018281526020019250505060405180910390f35b6108606004803603608081101561081457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190803590602001909291905050506123e9565b005b6108b06004803603604081101561087857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506125ba565b60405180821515815260200191505060405180910390f35b6108f4600480360360208110156108de57600080fd5b81019080803590602001909291905050506126b2565b005b61092c6004803603604081101561090c57600080fd5b8101908080359060200190929190803590602001909291905050506127e0565b005b6109706004803603602081101561094457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c53565b005b61097a612e45565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109ae612e6b565b73ffffffffffffffffffffffffffffffffffffffff166109cc61235e565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600680549050905090565b600a5481565b60068181548110610ab957fe5b90600052602060002090600502016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154905085565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b610b43612e6b565b73ffffffffffffffffffffffffffffffffffffffff16610b6161235e565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b600060068381548110610d4a57fe5b9060005260206000209060050201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015610e28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610e3184611ab5565b6000610e7b8260010154610e6d64e8d4a51000610e5f87600301548760000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b9050610e8c33828560040154613005565b610ea3848360000154612f8290919063ffffffff16565b8260000181905550610edd64e8d4a51000610ecf85600301548560000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b8260010181905550610f3433858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661443b9092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561104f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6d6967726174653a206e6f206d69677261746f7200000000000000000000000081525060200191505060405180910390fd5b60006006828154811061105e57fe5b9060005260206000209060050201905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561110057600080fd5b505afa158015611114573d6000803e3d6000fd5b505050506040513d602081101561112a57600080fd5b8101908080519060200190929190505050905061118a600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff166144dd9092919063ffffffff16565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ce5494bb846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561121757600080fd5b505af115801561122b573d6000803e3d6000fd5b505050506040513d602081101561124157600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112bb57600080fd5b505afa1580156112cf573d6000803e3d6000fd5b505050506040513d60208110156112e557600080fd5b8101908080519060200190929190505050821461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f6d6967726174653a20626164000000000000000000000000000000000000000081525060200191505060405180910390fd5b808460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b60095481565b600080600684815481106113ca57fe5b9060005260206000209060050201905060006007600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156114c457600080fd5b505afa1580156114d8573d6000803e3d6000fd5b505050506040513d60208110156114ee57600080fd5b810190808051906020019092919050505090506000600a5443111561151757600a54905061151b565b4390505b84600201548111801561152f575060008214155b156115ca576000611544866002015483612387565b90506000611587600854611579896001015461156b60035487612e7390919063ffffffff16565b612e7390919063ffffffff16565b612ef990919063ffffffff16565b90506115c56115b6856115a864e8d4a5100085612e7390919063ffffffff16565b612ef990919063ffffffff16565b866146a290919063ffffffff16565b945050505b61160e846001015461160064e8d4a510006115f2878960000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b9550505050505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006006838154811061165057fe5b9060005260206000209060050201905060006007600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508160040154600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663817c8966876040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561174257600080fd5b505afa158015611756573d6000803e3d6000fd5b505050506040513d602081101561176c57600080fd5b810190808051906020019092919050505010156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6465706f736974466f72203a2075736572206c6576656c00000000000000000081525060200191505060405180910390fd5b600082600401541115611938576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3876040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561188957600080fd5b505afa15801561189d573d6000803e3d6000fd5b505050506040513d60208110156118b357600080fd5b810190808051906020019092919050505011611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6465706f736974466f72203a207573657220726566657272616c00000000000081525060200191505060405180910390fd5b5b61194184611ab5565b6000816000015411156119ab576000611998826001015461198a64e8d4a5100061197c87600301548760000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b90506119a986828560040154613005565b505b6000831115611a2557611a053330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661472a909392919063ffffffff16565b611a1c8382600001546146a290919063ffffffff16565b81600001819055505b611a5764e8d4a51000611a4984600301548460000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b8160010181905550838573ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050505050565b600060068281548110611ac457fe5b9060005260206000209060050201905080600201544311611ae55750611d60565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b7257600080fd5b505afa158015611b86573d6000803e3d6000fd5b505050506040513d6020811015611b9c57600080fd5b810190808051906020019092919050505090506000811415611be357600a54431115611bd257600a548260020181905550611bdc565b4382600201819055505b5050611d60565b600a5482600201541415611bf8575050611d60565b600a54431115611cb5576000611c148360020154600a54612387565b90506000611c57600854611c498660010154611c3b60035487612e7390919063ffffffff16565b612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050611c99611c8684611c7864e8d4a5100085612e7390919063ffffffff16565b612ef990919063ffffffff16565b85600301546146a290919063ffffffff16565b8460030181905550600a54846002018190555050505050611d60565b6000611cc5836002015443612387565b90506000611d08600854611cfa8660010154611cec60035487612e7390919063ffffffff16565b612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050611d4a611d3784611d2964e8d4a5100085612e7390919063ffffffff16565b612ef990919063ffffffff16565b85600301546146a290919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600060068281548110611d7257fe5b9060005260206000209060050201905060006007600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e293382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661443b9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a36000816000018190555060008160010181905550505050565b611e9d612e6b565b73ffffffffffffffffffffffffffffffffffffffff16611ebb61235e565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f90612e6b565b73ffffffffffffffffffffffffffffffffffffffff16611fae61235e565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060048190555050565b6000600680549050905060005b8181101561206a5761205f81611ab5565b80600101905061204e565b5050565b612076612e6b565b73ffffffffffffffffffffffffffffffffffffffff1661209461235e565b73ffffffffffffffffffffffffffffffffffffffff161461211d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561212c5761212b612041565b5b612171826121636006868154811061214057fe5b906000526020600020906005020160010154600854612f8290919063ffffffff16565b6146a290919063ffffffff16565b600881905550816006848154811061218557fe5b906000526020600020906005020160010181905550505050565b6121a7612e6b565b73ffffffffffffffffffffffffffffffffffffffff166121c561235e565b73ffffffffffffffffffffffffffffffffffffffff161461224e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006123b06004546123a28585612f8290919063ffffffff16565b612e7390919063ffffffff16565b905092915050565b6007602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6123f1612e6b565b73ffffffffffffffffffffffffffffffffffffffff1661240f61235e565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81156124a7576124a6612041565b5b600060095443116124ba576009546124bc565b435b90506124d3856008546146a290919063ffffffff16565b60088190555060066040518060a001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018381526020016000815260200184815250908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015550505050505050565b600080600090505b6006805490508110156126a6576000600682815481106125de57fe5b9060005260206000209060050201905060006007600084815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050848015612653575060008260040154115b8015612663575060008160000154115b1561267457600193505050506126ac565b84158015612686575060008160000154115b1561269757600193505050506126ac565b505080806001019150506125c2565b50600090505b92915050565b6126ba612e6b565b73ffffffffffffffffffffffffffffffffffffffff166126d861235e565b73ffffffffffffffffffffffffffffffffffffffff1614612761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8043106127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f736574456e64426c6f636b3a20657272205f626c6f636b00000000000000000081525060200191505060405180910390fd5b80600a8190555050565b6000600683815481106127ef57fe5b9060005260206000209060050201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508160040154600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663817c8966336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156128e157600080fd5b505afa1580156128f5573d6000803e3d6000fd5b505050506040513d602081101561290b57600080fd5b81019080805190602001909291905050501015612990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6465706f736974203a2075736572206c6576656c00000000000000000000000081525060200191505060405180910390fd5b600082600401541115612ad7576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612a2857600080fd5b505afa158015612a3c573d6000803e3d6000fd5b505050506040513d6020811015612a5257600080fd5b810190808051906020019092919050505011612ad6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6465706f736974203a207573657220726566657272616c00000000000000000081525060200191505060405180910390fd5b5b612ae084611ab5565b600081600001541115612b4a576000612b378260010154612b2964e8d4a51000612b1b87600301548760000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b9050612b4833828560040154613005565b505b6000831115612bc457612ba43330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661472a909392919063ffffffff16565b612bbb8382600001546146a290919063ffffffff16565b81600001819055505b612bf664e8d4a51000612be884600301548460000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a350505050565b612c5b612e6b565b73ffffffffffffffffffffffffffffffffffffffff16612c7961235e565b73ffffffffffffffffffffffffffffffffffffffff1614612d02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614b7b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600080831415612e865760009050612ef3565b6000828402905082848281612e9757fe5b0414612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614bc76021913960400191505060405180910390fd5b809150505b92915050565b6000808211612f70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612f7957fe5b04905092915050565b600082821115612ffa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561309057600080fd5b505afa1580156130a4573d6000803e3d6000fd5b505050506040513d60208110156130ba57600080fd5b8101908080519060200190929190505050905080831115613a87576000821180156131a857506002600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561316b57600080fd5b505afa15801561317f573d6000803e3d6000fd5b505050506040513d602081101561319557600080fd5b8101908080519060200190929190505050145b15613458576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561323857600080fd5b505afa15801561324c573d6000803e3d6000fd5b505050506040513d602081101561326257600080fd5b81019080805190602001909291905050509050600061329f6101f4613291600a86612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561333457600080fd5b505af1158015613348573d6000803e3d6000fd5b505050506040513d602081101561335e57600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb876133c28487612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561341557600080fd5b505af1158015613429573d6000803e3d6000fd5b505050506040513d602081101561343f57600080fd5b8101908080519060200190929190505050505050613a82565b60008211801561352b57506003600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156134ee57600080fd5b505afa158015613502573d6000803e3d6000fd5b505050506040513d602081101561351857600080fd5b8101908080519060200190929190505050145b156139b1576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156135bb57600080fd5b505afa1580156135cf573d6000803e3d6000fd5b505050506040513d60208110156135e557600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561368357600080fd5b505afa158015613697573d6000803e3d6000fd5b505050506040513d60208110156136ad57600080fd5b8101908080519060200190929190505050905060006136e9607d6136db600a87612e7390919063ffffffff16565b612ef990919063ffffffff16565b905060006137156101f4613707600a88612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156137aa57600080fd5b505af11580156137be573d6000803e3d6000fd5b505050506040513d60208110156137d457600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561387957600080fd5b505af115801561388d573d6000803e3d6000fd5b505050506040513d60208110156138a357600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb896139198461390b878b612f8290919063ffffffff16565b612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561396c57600080fd5b505af1158015613980573d6000803e3d6000fd5b505050506040513d602081101561399657600080fd5b81019080805190602001909291905050505050505050613a81565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a4457600080fd5b505af1158015613a58573d6000803e3d6000fd5b505050506040513d6020811015613a6e57600080fd5b8101908080519060200190929190505050505b5b614435565b600082118015613b5a57506002600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613b1d57600080fd5b505afa158015613b31573d6000803e3d6000fd5b505050506040513d6020811015613b4757600080fd5b8101908080519060200190929190505050145b15613e0a576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613bea57600080fd5b505afa158015613bfe573d6000803e3d6000fd5b505050506040513d6020811015613c1457600080fd5b810190808051906020019092919050505090506000613c516101f4613c43600a88612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613ce657600080fd5b505af1158015613cfa573d6000803e3d6000fd5b505050506040513d6020811015613d1057600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb87613d748489612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613dc757600080fd5b505af1158015613ddb573d6000803e3d6000fd5b505050506040513d6020811015613df157600080fd5b8101908080519060200190929190505050505050614434565b600082118015613edd57506003600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613ea057600080fd5b505afa158015613eb4573d6000803e3d6000fd5b505050506040513d6020811015613eca57600080fd5b8101908080519060200190929190505050145b15614363576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f6d57600080fd5b505afa158015613f81573d6000803e3d6000fd5b505050506040513d6020811015613f9757600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561403557600080fd5b505afa158015614049573d6000803e3d6000fd5b505050506040513d602081101561405f57600080fd5b81019080805190602001909291905050509050600061409b607d61408d600a89612e7390919063ffffffff16565b612ef990919063ffffffff16565b905060006140c76101f46140b9600a8a612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561415c57600080fd5b505af1158015614170573d6000803e3d6000fd5b505050506040513d602081101561418657600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561422b57600080fd5b505af115801561423f573d6000803e3d6000fd5b505050506040513d602081101561425557600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb896142cb846142bd878d612f8290919063ffffffff16565b612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561431e57600080fd5b505af1158015614332573d6000803e3d6000fd5b505050506040513d602081101561434857600080fd5b81019080805190602001909291905050505050505050614433565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156143f657600080fd5b505af115801561440a573d6000803e3d6000fd5b505050506040513d602081101561442057600080fd5b8101908080519060200190929190505050505b5b5b50505050565b6144d88363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506147eb565b505050565b60008114806145ab575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561456e57600080fd5b505afa158015614582573d6000803e3d6000fd5b505050506040513d602081101561459857600080fd5b8101908080519060200190929190505050145b614600576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180614c126036913960400191505060405180910390fd5b61469d8363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506147eb565b505050565b600080828401905083811015614720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6147e5846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506147eb565b50505050565b606061484d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166148da9092919063ffffffff16565b90506000815111156148d55780806020019051602081101561486e57600080fd5b81019080805190602001909291905050506148d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614be8602a913960400191505060405180910390fd5b5b505050565b60606148e984846000856148f2565b90509392505050565b60608247101561494d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ba16026913960400191505060405180910390fd5b61495685614a9b565b6149c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614a1857805182526020820191506020810190506020830392506149f5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614a7a576040519150601f19603f3d011682016040523d82523d6000602084013e614a7f565b606091505b5091509150614a8f828286614aae565b92505050949350505050565b600080823b905060008111915050919050565b60608315614abe57829050614b73565b600083511115614ad15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614b38578082015181840152602081019050614b1d565b50505050905090810190601f168015614b655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122055f3326445c9a72b495de223f74b9dd84637db8e31e1aaed2e4447f9f825124064736f6c634300060c0033000000000000000000000000f08137e54a81ba8bc9468ae13c2c0b1dc31f2fde0000000000000000000000008f9a03d0adebb153e7deafb15d16f6d0c5e3ddfa0000000000000000000000000000000000000000000000004563918244f400000000000000000000000000000000000000000000000000000000000000bc67400000000000000000000000000000000000000000000000000000000000e10640

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c80635adaa4921161011a5780638da5cb5b116100ad5780639b50b56d1161007c5780639b50b56d14610862578063c713aa94146108c8578063e2bbb158146108f6578063f2fde38b1461092e578063fc0c546a1461097257610206565b80638da5cb5b146107155780638dbb1e3a1461074957806393f1a40b1461079557806396805e54146107fe57610206565b8063715018a6116100e9578063715018a6146106855780637cd07e471461068f5780637dad19db146106c35780638aa28550146106f757610206565b80635adaa492146105c55780635ffe614614610609578063630b5ba11461063757806364482f791461064157610206565b80634198709a1161019d57806348e43af41161016c57806348e43af41461047b5780634a5ff749146104dd5780634cf5fbf51461051157806351eb05a6146105695780635312ea8e1461059757610206565b80634198709a146103d9578063441a3e70146103f7578063454b06081461042f57806348cd4cb11461045d57610206565b806315d892ee116101d957806315d892ee146102ff57806317caf6f11461033357806323cf3118146103515780633de949251461039557610206565b806306ad5a471461020b578063081e3eda1461024f578063083c63231461026d5780631526fe271461028b575b600080fd5b61024d6004803603602081101561022157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109a6565b005b610257610a99565b6040518082815260200191505060405180910390f35b610275610aa6565b6040518082815260200191505060405180910390f35b6102b7600480360360208110156102a157600080fd5b8101908080359060200190929190505050610aac565b604051808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018281526020019550505050505060405180910390f35b610307610b0f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61033b610b35565b6040518082815260200191505060405180910390f35b6103936004803603602081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b3b565b005b6103d7600480360360208110156103ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c2e565b005b6103e1610d35565b6040518082815260200191505060405180910390f35b61042d6004803603604081101561040d57600080fd5b810190808035906020019092919080359060200190929190505050610d3b565b005b61045b6004803603602081101561044557600080fd5b8101908080359060200190929190505050610f8a565b005b6104656113b4565b6040518082815260200191505060405180910390f35b6104c76004803603604081101561049157600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113ba565b6040518082815260200191505060405180910390f35b6104e561161b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105676004803603606081101561052757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050611641565b005b6105956004803603602081101561057f57600080fd5b8101908080359060200190929190505050611ab5565b005b6105c3600480360360208110156105ad57600080fd5b8101908080359060200190929190505050611d63565b005b610607600480360360208110156105db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e95565b005b6106356004803603602081101561061f57600080fd5b8101908080359060200190929190505050611f88565b005b61063f612041565b005b6106836004803603606081101561065757600080fd5b81019080803590602001909291908035906020019092919080351515906020019092919050505061206e565b005b61068d61219f565b005b61069761230c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106cb612332565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106ff612358565b6040518082815260200191505060405180910390f35b61071d61235e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61077f6004803603604081101561075f57600080fd5b810190808035906020019092919080359060200190929190505050612387565b6040518082815260200191505060405180910390f35b6107e1600480360360408110156107ab57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123b8565b604051808381526020018281526020019250505060405180910390f35b6108606004803603608081101561081457600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190803590602001909291905050506123e9565b005b6108b06004803603604081101561087857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035151590602001909291905050506125ba565b60405180821515815260200191505060405180910390f35b6108f4600480360360208110156108de57600080fd5b81019080803590602001909291905050506126b2565b005b61092c6004803603604081101561090c57600080fd5b8101908080359060200190929190803590602001909291905050506127e0565b005b6109706004803603602081101561094457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c53565b005b61097a612e45565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109ae612e6b565b73ffffffffffffffffffffffffffffffffffffffff166109cc61235e565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600680549050905090565b600a5481565b60068181548110610ab957fe5b90600052602060002090600502016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040154905085565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b610b43612e6b565b73ffffffffffffffffffffffffffffffffffffffff16610b6161235e565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f6465763a207775743f000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60035481565b600060068381548110610d4a57fe5b9060005260206000209060050201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508281600001541015610e28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b610e3184611ab5565b6000610e7b8260010154610e6d64e8d4a51000610e5f87600301548760000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b9050610e8c33828560040154613005565b610ea3848360000154612f8290919063ffffffff16565b8260000181905550610edd64e8d4a51000610ecf85600301548560000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b8260010181905550610f3433858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661443b9092919063ffffffff16565b843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561104f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6d6967726174653a206e6f206d69677261746f7200000000000000000000000081525060200191505060405180910390fd5b60006006828154811061105e57fe5b9060005260206000209060050201905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561110057600080fd5b505afa158015611114573d6000803e3d6000fd5b505050506040513d602081101561112a57600080fd5b8101908080519060200190929190505050905061118a600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff166144dd9092919063ffffffff16565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ce5494bb846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561121757600080fd5b505af115801561122b573d6000803e3d6000fd5b505050506040513d602081101561124157600080fd5b810190808051906020019092919050505090508073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156112bb57600080fd5b505afa1580156112cf573d6000803e3d6000fd5b505050506040513d60208110156112e557600080fd5b8101908080519060200190929190505050821461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f6d6967726174653a20626164000000000000000000000000000000000000000081525060200191505060405180910390fd5b808460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b60095481565b600080600684815481106113ca57fe5b9060005260206000209060050201905060006007600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156114c457600080fd5b505afa1580156114d8573d6000803e3d6000fd5b505050506040513d60208110156114ee57600080fd5b810190808051906020019092919050505090506000600a5443111561151757600a54905061151b565b4390505b84600201548111801561152f575060008214155b156115ca576000611544866002015483612387565b90506000611587600854611579896001015461156b60035487612e7390919063ffffffff16565b612e7390919063ffffffff16565b612ef990919063ffffffff16565b90506115c56115b6856115a864e8d4a5100085612e7390919063ffffffff16565b612ef990919063ffffffff16565b866146a290919063ffffffff16565b945050505b61160e846001015461160064e8d4a510006115f2878960000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b9550505050505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006006838154811061165057fe5b9060005260206000209060050201905060006007600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508160040154600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663817c8966876040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561174257600080fd5b505afa158015611756573d6000803e3d6000fd5b505050506040513d602081101561176c57600080fd5b810190808051906020019092919050505010156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6465706f736974466f72203a2075736572206c6576656c00000000000000000081525060200191505060405180910390fd5b600082600401541115611938576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3876040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561188957600080fd5b505afa15801561189d573d6000803e3d6000fd5b505050506040513d60208110156118b357600080fd5b810190808051906020019092919050505011611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f6465706f736974466f72203a207573657220726566657272616c00000000000081525060200191505060405180910390fd5b5b61194184611ab5565b6000816000015411156119ab576000611998826001015461198a64e8d4a5100061197c87600301548760000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b90506119a986828560040154613005565b505b6000831115611a2557611a053330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661472a909392919063ffffffff16565b611a1c8382600001546146a290919063ffffffff16565b81600001819055505b611a5764e8d4a51000611a4984600301548460000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b8160010181905550838573ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a35050505050565b600060068281548110611ac457fe5b9060005260206000209060050201905080600201544311611ae55750611d60565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b7257600080fd5b505afa158015611b86573d6000803e3d6000fd5b505050506040513d6020811015611b9c57600080fd5b810190808051906020019092919050505090506000811415611be357600a54431115611bd257600a548260020181905550611bdc565b4382600201819055505b5050611d60565b600a5482600201541415611bf8575050611d60565b600a54431115611cb5576000611c148360020154600a54612387565b90506000611c57600854611c498660010154611c3b60035487612e7390919063ffffffff16565b612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050611c99611c8684611c7864e8d4a5100085612e7390919063ffffffff16565b612ef990919063ffffffff16565b85600301546146a290919063ffffffff16565b8460030181905550600a54846002018190555050505050611d60565b6000611cc5836002015443612387565b90506000611d08600854611cfa8660010154611cec60035487612e7390919063ffffffff16565b612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050611d4a611d3784611d2964e8d4a5100085612e7390919063ffffffff16565b612ef990919063ffffffff16565b85600301546146a290919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600060068281548110611d7257fe5b9060005260206000209060050201905060006007600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611e293382600001548460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661443b9092919063ffffffff16565b823373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae059583600001546040518082815260200191505060405180910390a36000816000018190555060008160010181905550505050565b611e9d612e6b565b73ffffffffffffffffffffffffffffffffffffffff16611ebb61235e565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f90612e6b565b73ffffffffffffffffffffffffffffffffffffffff16611fae61235e565b73ffffffffffffffffffffffffffffffffffffffff1614612037576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060048190555050565b6000600680549050905060005b8181101561206a5761205f81611ab5565b80600101905061204e565b5050565b612076612e6b565b73ffffffffffffffffffffffffffffffffffffffff1661209461235e565b73ffffffffffffffffffffffffffffffffffffffff161461211d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b801561212c5761212b612041565b5b612171826121636006868154811061214057fe5b906000526020600020906005020160010154600854612f8290919063ffffffff16565b6146a290919063ffffffff16565b600881905550816006848154811061218557fe5b906000526020600020906005020160010181905550505050565b6121a7612e6b565b73ffffffffffffffffffffffffffffffffffffffff166121c561235e565b73ffffffffffffffffffffffffffffffffffffffff161461224e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006123b06004546123a28585612f8290919063ffffffff16565b612e7390919063ffffffff16565b905092915050565b6007602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6123f1612e6b565b73ffffffffffffffffffffffffffffffffffffffff1661240f61235e565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81156124a7576124a6612041565b5b600060095443116124ba576009546124bc565b435b90506124d3856008546146a290919063ffffffff16565b60088190555060066040518060a001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020018781526020018381526020016000815260200184815250908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020155606082015181600301556080820151816004015550505050505050565b600080600090505b6006805490508110156126a6576000600682815481106125de57fe5b9060005260206000209060050201905060006007600084815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050848015612653575060008260040154115b8015612663575060008160000154115b1561267457600193505050506126ac565b84158015612686575060008160000154115b1561269757600193505050506126ac565b505080806001019150506125c2565b50600090505b92915050565b6126ba612e6b565b73ffffffffffffffffffffffffffffffffffffffff166126d861235e565b73ffffffffffffffffffffffffffffffffffffffff1614612761576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8043106127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f736574456e64426c6f636b3a20657272205f626c6f636b00000000000000000081525060200191505060405180910390fd5b80600a8190555050565b6000600683815481106127ef57fe5b9060005260206000209060050201905060006007600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508160040154600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663817c8966336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156128e157600080fd5b505afa1580156128f5573d6000803e3d6000fd5b505050506040513d602081101561290b57600080fd5b81019080805190602001909291905050501015612990576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f6465706f736974203a2075736572206c6576656c00000000000000000000000081525060200191505060405180910390fd5b600082600401541115612ad7576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612a2857600080fd5b505afa158015612a3c573d6000803e3d6000fd5b505050506040513d6020811015612a5257600080fd5b810190808051906020019092919050505011612ad6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6465706f736974203a207573657220726566657272616c00000000000000000081525060200191505060405180910390fd5b5b612ae084611ab5565b600081600001541115612b4a576000612b378260010154612b2964e8d4a51000612b1b87600301548760000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b612f8290919063ffffffff16565b9050612b4833828560040154613005565b505b6000831115612bc457612ba43330858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661472a909392919063ffffffff16565b612bbb8382600001546146a290919063ffffffff16565b81600001819055505b612bf664e8d4a51000612be884600301548460000154612e7390919063ffffffff16565b612ef990919063ffffffff16565b8160010181905550833373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15856040518082815260200191505060405180910390a350505050565b612c5b612e6b565b73ffffffffffffffffffffffffffffffffffffffff16612c7961235e565b73ffffffffffffffffffffffffffffffffffffffff1614612d02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614b7b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600080831415612e865760009050612ef3565b6000828402905082848281612e9757fe5b0414612eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614bc76021913960400191505060405180910390fd5b809150505b92915050565b6000808211612f70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612f7957fe5b04905092915050565b600082821115612ffa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561309057600080fd5b505afa1580156130a4573d6000803e3d6000fd5b505050506040513d60208110156130ba57600080fd5b8101908080519060200190929190505050905080831115613a87576000821180156131a857506002600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561316b57600080fd5b505afa15801561317f573d6000803e3d6000fd5b505050506040513d602081101561319557600080fd5b8101908080519060200190929190505050145b15613458576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561323857600080fd5b505afa15801561324c573d6000803e3d6000fd5b505050506040513d602081101561326257600080fd5b81019080805190602001909291905050509050600061329f6101f4613291600a86612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561333457600080fd5b505af1158015613348573d6000803e3d6000fd5b505050506040513d602081101561335e57600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb876133c28487612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561341557600080fd5b505af1158015613429573d6000803e3d6000fd5b505050506040513d602081101561343f57600080fd5b8101908080519060200190929190505050505050613a82565b60008211801561352b57506003600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156134ee57600080fd5b505afa158015613502573d6000803e3d6000fd5b505050506040513d602081101561351857600080fd5b8101908080519060200190929190505050145b156139b1576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156135bb57600080fd5b505afa1580156135cf573d6000803e3d6000fd5b505050506040513d60208110156135e557600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561368357600080fd5b505afa158015613697573d6000803e3d6000fd5b505050506040513d60208110156136ad57600080fd5b8101908080519060200190929190505050905060006136e9607d6136db600a87612e7390919063ffffffff16565b612ef990919063ffffffff16565b905060006137156101f4613707600a88612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156137aa57600080fd5b505af11580156137be573d6000803e3d6000fd5b505050506040513d60208110156137d457600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561387957600080fd5b505af115801561388d573d6000803e3d6000fd5b505050506040513d60208110156138a357600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb896139198461390b878b612f8290919063ffffffff16565b612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561396c57600080fd5b505af1158015613980573d6000803e3d6000fd5b505050506040513d602081101561399657600080fd5b81019080805190602001909291905050505050505050613a81565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a4457600080fd5b505af1158015613a58573d6000803e3d6000fd5b505050506040513d6020811015613a6e57600080fd5b8101908080519060200190929190505050505b5b614435565b600082118015613b5a57506002600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613b1d57600080fd5b505afa158015613b31573d6000803e3d6000fd5b505050506040513d6020811015613b4757600080fd5b8101908080519060200190929190505050145b15613e0a576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613bea57600080fd5b505afa158015613bfe573d6000803e3d6000fd5b505050506040513d6020811015613c1457600080fd5b810190808051906020019092919050505090506000613c516101f4613c43600a88612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613ce657600080fd5b505af1158015613cfa573d6000803e3d6000fd5b505050506040513d6020811015613d1057600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb87613d748489612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613dc757600080fd5b505af1158015613ddb573d6000803e3d6000fd5b505050506040513d6020811015613df157600080fd5b8101908080519060200190929190505050505050614434565b600082118015613edd57506003600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313739a3866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613ea057600080fd5b505afa158015613eb4573d6000803e3d6000fd5b505050506040513d6020811015613eca57600080fd5b8101908080519060200190929190505050145b15614363576000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015613f6d57600080fd5b505afa158015613f81573d6000803e3d6000fd5b505050506040513d6020811015613f9757600080fd5b810190808051906020019092919050505090506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9405923836040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561403557600080fd5b505afa158015614049573d6000803e3d6000fd5b505050506040513d602081101561405f57600080fd5b81019080805190602001909291905050509050600061409b607d61408d600a89612e7390919063ffffffff16565b612ef990919063ffffffff16565b905060006140c76101f46140b9600a8a612e7390919063ffffffff16565b612ef990919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561415c57600080fd5b505af1158015614170573d6000803e3d6000fd5b505050506040513d602081101561418657600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561422b57600080fd5b505af115801561423f573d6000803e3d6000fd5b505050506040513d602081101561425557600080fd5b810190808051906020019092919050505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb896142cb846142bd878d612f8290919063ffffffff16565b612f8290919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561431e57600080fd5b505af1158015614332573d6000803e3d6000fd5b505050506040513d602081101561434857600080fd5b81019080805190602001909291905050505050505050614433565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156143f657600080fd5b505af115801561440a573d6000803e3d6000fd5b505050506040513d602081101561442057600080fd5b8101908080519060200190929190505050505b5b5b50505050565b6144d88363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506147eb565b505050565b60008114806145ab575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060206040518083038186803b15801561456e57600080fd5b505afa158015614582573d6000803e3d6000fd5b505050506040513d602081101561459857600080fd5b8101908080519060200190929190505050145b614600576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180614c126036913960400191505060405180910390fd5b61469d8363095ea7b360e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506147eb565b505050565b600080828401905083811015614720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6147e5846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506147eb565b50505050565b606061484d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166148da9092919063ffffffff16565b90506000815111156148d55780806020019051602081101561486e57600080fd5b81019080805190602001909291905050506148d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614be8602a913960400191505060405180910390fd5b5b505050565b60606148e984846000856148f2565b90509392505050565b60608247101561494d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614ba16026913960400191505060405180910390fd5b61495685614a9b565b6149c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614a1857805182526020820191506020810190506020830392506149f5565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614a7a576040519150601f19603f3d011682016040523d82523d6000602084013e614a7f565b606091505b5091509150614a8f828286614aae565b92505050949350505050565b600080823b905060008111915050919050565b60608315614abe57829050614b73565b600083511115614ad15782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614b38578082015181840152602081019050614b1d565b50505050905090810190601f168015614b655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a264697066735822122055f3326445c9a72b495de223f74b9dd84637db8e31e1aaed2e4447f9f825124064736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f08137e54a81ba8bc9468ae13c2c0b1dc31f2fde0000000000000000000000008f9a03d0adebb153e7deafb15d16f6d0c5e3ddfa0000000000000000000000000000000000000000000000004563918244f400000000000000000000000000000000000000000000000000000000000000bc67400000000000000000000000000000000000000000000000000000000000e10640

-----Decoded View---------------
Arg [0] : _token (address): 0xf08137E54A81ba8bC9468ae13c2c0b1Dc31f2FdE
Arg [1] : _teamAddr (address): 0x8F9a03D0ADEBB153E7DeAFb15d16F6d0c5E3ddFA
Arg [2] : _tokenPerBlock (uint256): 5000000000000000000
Arg [3] : _startBlock (uint256): 12347200
Arg [4] : _endBlock (uint256): 14747200

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000f08137e54a81ba8bc9468ae13c2c0b1dc31f2fde
Arg [1] : 0000000000000000000000008f9a03d0adebb153e7deafb15d16f6d0c5e3ddfa
Arg [2] : 0000000000000000000000000000000000000000000000004563918244f40000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000bc6740
Arg [4] : 0000000000000000000000000000000000000000000000000000000000e10640


Deployed Bytecode Sourcemap

52746:12936:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54309:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54580:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53468:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53291:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53500:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53397:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56047:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65377:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53178:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61897:667;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56157:491;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53434:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56807:941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53148:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60748:1141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57944:1523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62572:356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54184:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54449:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57756:180;;;:::i;:::-;;55735:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34093:148;;;:::i;:::-;;53255:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53536:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53213;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33442:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56656:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53324:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;55169:558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54683:478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;65519:158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59475:1261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34396:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53116:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54309:132;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54416:17:::1;54397:16;;:36;;;;;;;;;;;;;;;;;;54309:132:::0;:::o;54580:95::-;54625:7;54652:8;:15;;;;54645:22;;54580:95;:::o;53468:23::-;;;;:::o;53291:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53500:29::-;;;;;;;;;;;;;:::o;53397:30::-;;;;:::o;56047:102::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56132:9:::1;56121:8;;:20;;;;;;;;;;;;;;;;;;56047:102:::0;:::o;65377:134::-;65450:8;;;;;;;;;;;65436:22;;:10;:22;;;65428:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65494:9;65483:8;;:20;;;;;;;;;;;;;;;;;;65377:134;:::o;53178:28::-;;;;:::o;61897:667::-;61964:21;61988:8;61997:4;61988:14;;;;;;;;;;;;;;;;;;61964:38;;62013:21;62037:8;:14;62046:4;62037:14;;;;;;;;;;;:26;62052:10;62037:26;;;;;;;;;;;;;;;62013:50;;62097:7;62082:4;:11;;;:22;;62074:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62138:16;62149:4;62138:10;:16::i;:::-;62165:15;62183:69;62236:4;:15;;;62183:48;62226:4;62183:38;62199:4;:21;;;62183:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;62165:87;;62263:50;62281:10;62293:7;62302:4;:10;;;62263:17;:50::i;:::-;62338:24;62354:7;62338:4;:11;;;:15;;:24;;;;:::i;:::-;62324:4;:11;;:38;;;;62391:48;62434:4;62391:38;62407:4;:21;;;62391:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;62373:4;:15;;:66;;;;62450:55;62484:10;62497:7;62450:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;62542:4;62530:10;62521:35;;;62548:7;62521:35;;;;;;;;;;;;;;;;;;61897:667;;;;;:::o;56157:491::-;56243:1;56214:31;;56222:8;;;;;;;;;;;56214:31;;;;56206:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56281:21;56305:8;56314:4;56305:14;;;;;;;;;;;;;;;;;;56281:38;;56330:14;56347:4;:12;;;;;;;;;;;;56330:29;;56370:11;56384:7;:17;;;56410:4;56384:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56370:46;;56427:43;56455:8;;;;;;;;;;;56466:3;56427:7;:19;;;;:43;;;;;:::i;:::-;56481:17;56501:8;;;;;;;;;;;:16;;;56518:7;56501:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56481:45;;56552:10;:20;;;56581:4;56552:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56545:3;:42;56537:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56630:10;56615:4;:12;;;:25;;;;;;;;;;;;;;;;;;56157:491;;;;;:::o;53434:25::-;;;;:::o;56807:941::-;56881:7;56901:21;56925:8;56934:4;56925:14;;;;;;;;;;;;;;;;;;56901:38;;56950:21;56974:8;:14;56983:4;56974:14;;;;;;;;;;;:21;56989:5;56974:21;;;;;;;;;;;;;;;56950:45;;57006:24;57033:4;:21;;;57006:48;;57065:16;57084:4;:12;;;;;;;;;;;;:22;;;57115:4;57084:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57065:56;;57134:19;57186:8;;57171:12;:23;57168:118;;;57223:8;;57209:22;;57168:118;;;57274:12;57260:26;;57168:118;57325:4;:20;;;57311:11;:34;:51;;;;;57361:1;57349:8;:13;;57311:51;57307:352;;;57379:18;57400:48;57414:4;:20;;;57436:11;57400:13;:48::i;:::-;57379:69;;57463:19;57485:71;57540:15;;57485:50;57519:4;:15;;;57485:29;57500:13;;57485:10;:14;;:29;;;;:::i;:::-;:33;;:50;;;;:::i;:::-;:54;;:71;;;;:::i;:::-;57463:93;;57590:57;57611:35;57637:8;57611:21;57627:4;57611:11;:15;;:21;;;;:::i;:::-;:25;;:35;;;;:::i;:::-;57590:16;:20;;:57;;;;:::i;:::-;57571:76;;57307:352;;;57676:64;57724:4;:15;;;57676:43;57714:4;57676:33;57692:16;57676:4;:11;;;:15;;:33;;;;:::i;:::-;:37;;:43;;;;:::i;:::-;:47;;:64;;;;:::i;:::-;57669:71;;;;;;;56807:941;;;;:::o;53148:23::-;;;;;;;;;;;;;:::o;60748:1141::-;60839:21;60863:8;60872:4;60863:14;;;;;;;;;;;;;;;;;;60839:38;;60888:21;60912:8;:14;60921:4;60912:14;;;;;;;;;;;:28;60927:12;60912:28;;;;;;;;;;;;;;;60888:52;;61074:4;:10;;;61034:13;;;;;;;;;;;:22;;;61057:12;61034:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:50;;61026:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61225:1;61212:4;:10;;;:14;61209:114;;;61291:1;61249:16;;;;;;;;;;;:25;;;61275:12;61249:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:43;61241:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61209:114;61336:16;61347:4;61336:10;:16::i;:::-;61381:1;61367:4;:11;;;:15;61363:202;;;61399:15;61417:69;61470:4;:15;;;61417:48;61460:4;61417:38;61433:4;:21;;;61417:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;61399:87;;61501:52;61519:12;61533:7;61542:4;:10;;;61501:17;:52::i;:::-;61363:202;;61588:1;61578:7;:11;61575:178;;;61614:74;61652:10;61673:4;61680:7;61614:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;61717:24;61733:7;61717:4;:11;;;:15;;:24;;;;:::i;:::-;61703:4;:11;;:38;;;;61575:178;61781:48;61824:4;61781:38;61797:4;:21;;;61781:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;61763:4;:15;;:66;;;;61867:4;61853:12;61845:36;;;61873:7;61845:36;;;;;;;;;;;;;;;;;;60748:1141;;;;;:::o;57944:1523::-;57996:21;58020:8;58029:4;58020:14;;;;;;;;;;;;;;;;;;57996:38;;58065:4;:20;;;58049:12;:36;58045:75;;58102:7;;;58045:75;58130:16;58149:4;:12;;;;;;;;;;;;:22;;;58180:4;58149:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58130:56;;58213:1;58201:8;:13;58197:216;;;58250:8;;58235:12;:23;58231:149;;;58300:8;;58277:4;:20;;:31;;;;58231:149;;;58368:12;58345:4;:20;;:35;;;;58231:149;58395:7;;;;58197:216;58451:8;;58427:4;:20;;;:32;58423:70;;;58475:7;;;;58423:70;58524:8;;58509:12;:23;58505:510;;;58548:18;58569:45;58583:4;:20;;;58605:8;;58569:13;:45::i;:::-;58548:66;;58629:19;58651:71;58706:15;;58651:50;58685:4;:15;;;58651:29;58666:13;;58651:10;:14;;:29;;;;:::i;:::-;:33;;:50;;;;:::i;:::-;:54;;:71;;;;:::i;:::-;58629:93;;58874:62;58900:35;58926:8;58900:21;58916:4;58900:11;:15;;:21;;;;:::i;:::-;:25;;:35;;;;:::i;:::-;58874:4;:21;;;:25;;:62;;;;:::i;:::-;58850:4;:21;;:86;;;;58974:8;;58951:4;:20;;:31;;;;58997:7;;;;;;58505:510;59027:18;59048:49;59062:4;:20;;;59084:12;59048:13;:49::i;:::-;59027:70;;59108:19;59130:71;59185:15;;59130:50;59164:4;:15;;;59130:29;59145:13;;59130:10;:14;;:29;;;;:::i;:::-;:33;;:50;;;;:::i;:::-;:54;;:71;;;;:::i;:::-;59108:93;;59341:62;59367:35;59393:8;59367:21;59383:4;59367:11;:15;;:21;;;;:::i;:::-;:25;;:35;;;;:::i;:::-;59341:4;:21;;;:25;;:62;;;;:::i;:::-;59317:4;:21;;:86;;;;59437:12;59414:4;:20;;:35;;;;57944:1523;;;;;;:::o;62572:356::-;62631:21;62655:8;62664:4;62655:14;;;;;;;;;;;;;;;;;;62631:38;;62680:21;62704:8;:14;62713:4;62704:14;;;;;;;;;;;:26;62719:10;62704:26;;;;;;;;;;;;;;;62680:50;;62741:59;62775:10;62788:4;:11;;;62741:4;:12;;;;;;;;;;;;:25;;;;:59;;;;;:::i;:::-;62846:4;62834:10;62816:48;;;62852:4;:11;;;62816:48;;;;;;;;;;;;;;;;;;62889:1;62875:4;:11;;:15;;;;62919:1;62901:4;:15;;:19;;;;62572:356;;;:::o;54184:117::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54279:14:::1;54263:13;;:30;;;;;;;;;;;;;;;;;;54184:117:::0;:::o;54449:123::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54548:16:::1;54529;:35;;;;54449:123:::0;:::o;57756:180::-;57801:14;57818:8;:15;;;;57801:32;;57849:11;57844:85;57872:6;57866:3;:12;57844:85;;;57902:15;57913:3;57902:10;:15::i;:::-;57880:5;;;;;57844:85;;;;57756:180;:::o;55735:304::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55833:11:::1;55829:61;;;55861:17;:15;:17::i;:::-;55829:61;55918:63;55969:11;55918:46;55938:8;55947:4;55938:14;;;;;;;;;;;;;;;;;;:25;;;55918:15;;:19;;:46;;;;:::i;:::-;:50;;:63;;;;:::i;:::-;55900:15;:81;;;;56020:11;55992:8;56001:4;55992:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;55735:304:::0;;;:::o;34093:148::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34200:1:::1;34163:40;;34184:6;::::0;::::1;;;;;;;;34163:40;;;;;;;;;;;;34231:1;34214:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;34093:148::o:0;53255:29::-;;;;;;;;;;;;;:::o;53536:35::-;;;;;;;;;;;;;:::o;53213:::-;;;;:::o;33442:87::-;33488:7;33515:6;;;;;;;;;;;33508:13;;33442:87;:::o;56656:143::-;56728:7;56755:36;56774:16;;56755:14;56763:5;56755:3;:7;;:14;;;;:::i;:::-;:18;;:36;;;;:::i;:::-;56748:43;;56656:143;;;;:::o;53324:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55169:558::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55286:11:::1;55282:61;;;55314:17;:15;:17::i;:::-;55282:61;55353:23;55394:10;;55379:12;:25;:53;;55422:10;;55379:53;;;55407:12;55379:53;55353:79;;55461:32;55481:11;55461:15;;:19;;:32;;;;:::i;:::-;55443:15;:50;;;;55504:8;55518:200;;;;;;;;55551:8;55518:200;;;;;;55586:11;55518:200;;;;55629:15;55518:200;;;;55677:1;55518:200;;;;55700:6;55518:200;;::::0;55504:215:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33733:1;55169:558:::0;;;;:::o;54683:478::-;54758:4;54780:11;54794:1;54780:15;;54775:356;54803:8;:15;;;;54797:3;:21;54775:356;;;54842:21;54866:8;54875:3;54866:13;;;;;;;;;;;;;;;;;;54842:37;;54894:21;54918:8;:13;54927:3;54918:13;;;;;;;;;;;:20;54932:5;54918:20;;;;;;;;;;;;;;;54894:44;;54958:10;:28;;;;;54985:1;54972:4;:10;;;:14;54958:28;:47;;;;;55004:1;54990:4;:11;;;:15;54958:47;54955:164;;;55031:4;55024:11;;;;;;;54955:164;55060:10;55059:11;:30;;;;;55088:1;55074:4;:11;;;:15;55059:30;55055:64;;;55115:4;55108:11;;;;;;;55055:64;54775:356;;54820:5;;;;;;;54775:356;;;;55148:5;55141:12;;54683:478;;;;;:::o;65519:158::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65607:6:::1;65592:12;:21;65584:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;65663:6;65652:8;:17;;;;65519:158:::0;:::o;59475:1261::-;59541:21;59565:8;59574:4;59565:14;;;;;;;;;;;;;;;;;;59541:38;;59590:21;59614:8;:14;59623:4;59614:14;;;;;;;;;;;:26;59629:10;59614:26;;;;;;;;;;;;;;;59590:50;;59772:4;:10;;;59734:13;;;;;;;;;;;:22;;;59757:10;59734:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:48;;59726:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59920:1;59907:4;:10;;;:14;59904:109;;;59984:1;59944:16;;;;;;;;;;;:25;;;59970:10;59944:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:41;59936:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59904:109;60187:16;60198:4;60187:10;:16::i;:::-;60232:1;60218:4;:11;;;:15;60214:200;;;60250:15;60268:69;60321:4;:15;;;60268:48;60311:4;60268:38;60284:4;:21;;;60268:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;:52;;:69;;;;:::i;:::-;60250:87;;60352:50;60370:10;60382:7;60391:4;:10;;;60352:17;:50::i;:::-;60214:200;;60437:1;60427:7;:11;60424:178;;;60463:74;60501:10;60522:4;60529:7;60463:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;60566:24;60582:7;60566:4;:11;;;:15;;:24;;;;:::i;:::-;60552:4;:11;;:38;;;;60424:178;60630:48;60673:4;60630:38;60646:4;:21;;;60630:4;:11;;;:15;;:38;;;;:::i;:::-;:42;;:48;;;;:::i;:::-;60612:4;:15;;:66;;;;60714:4;60702:10;60694:34;;;60720:7;60694:34;;;;;;;;;;;;;;;;;;59475:1261;;;;:::o;34396:244::-;33673:12;:10;:12::i;:::-;33662:23;;:7;:5;:7::i;:::-;:23;;;33654:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34505:1:::1;34485:22;;:8;:22;;;;34477:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34595:8;34566:38;;34587:6;::::0;::::1;;;;;;;;34566:38;;;;;;;;;;;;34624:8;34615:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;34396:244:::0;:::o;53116:25::-;;;;;;;;;;;;;:::o;32071:106::-;32124:15;32159:10;32152:17;;32071:106;:::o;27701:220::-;27759:7;27788:1;27783;:6;27779:20;;;27798:1;27791:8;;;;27779:20;27810:9;27826:1;27822;:5;27810:17;;27855:1;27850;27846;:5;;;;;;:10;27838:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27912:1;27905:8;;;27701:220;;;;;:::o;28399:153::-;28457:7;28489:1;28485;:5;28477:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28543:1;28539;:5;;;;;;28532:12;;28399:153;;;;:::o;27284:158::-;27342:7;27375:1;27370;:6;;27362:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27433:1;27429;:5;27422:12;;27284:158;;;;:::o;62936:2383::-;63032:16;63051:5;;;;;;;;;;;:15;;;63075:4;63051:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63032:49;;63108:8;63098:7;:18;63094:2218;;;63225:1;63213:9;:13;:52;;;;;63264:1;63230:16;;;;;;;;;;;:25;;;63256:3;63230:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:35;63213:52;63209:993;;;63286:14;63303:16;;;;;;;;;;;:26;;;63330:3;63303:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63286:48;;63353:17;63373:25;63394:3;63373:16;63386:2;63373:8;:12;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;63353:45;;63422:5;;;;;;;;;;;:14;;;63437:6;63445:9;63422:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63474:5;;;;;;;;;;;:14;;;63489:3;63494:23;63507:9;63494:8;:12;;:23;;;;:::i;:::-;63474:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63209:993;;;;;63635:1;63623:9;:13;:52;;;;;63674:1;63640:16;;;;;;;;;;;:25;;;63666:3;63640:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:35;63623:52;63618:584;;;63696:14;63713:16;;;;;;;;;;;:26;;;63740:3;63713:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63696:48;;63763:14;63780:16;;;;;;;;;;;:26;;;63807:6;63780:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63763:51;;63833:17;63853:25;63874:3;63853:16;63866:2;63853:8;:12;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;63833:45;;63902:17;63922:25;63943:3;63922:16;63935:2;63922:8;:12;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;63902:45;;63971:5;;;;;;;;;;;:14;;;63986:6;63994:9;63971:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64023:5;;;;;;;;;;;:14;;;64038:6;64046:9;64023:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64075:5;;;;;;;;;;;:14;;;64090:3;64095:38;64123:9;64095:23;64108:9;64095:8;:12;;:23;;;;:::i;:::-;:27;;:38;;;;:::i;:::-;64075:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63618:584;;;;;;;64173:5;;;;;;;;;;;:14;;;64188:3;64193:8;64173:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63618:584;63209:993;63094:2218;;;64329:1;64317:9;:13;:52;;;;;64368:1;64334:16;;;;;;;;;;;:25;;;64360:3;64334:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:35;64317:52;64313:987;;;64390:14;64407:16;;;;;;;;;;;:26;;;64434:3;64407:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64390:48;;64457:17;64477:24;64497:3;64477:15;64489:2;64477:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;64457:44;;64525:5;;;;;;;;;;;:14;;;64540:6;64548:9;64525:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64577:5;;;;;;;;;;;:14;;;64592:3;64597:22;64609:9;64597:7;:11;;:22;;;;:::i;:::-;64577:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64313:987;;;;;64737:1;64725:9;:13;:52;;;;;64776:1;64742:16;;;;;;;;;;;:25;;;64768:3;64742:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:35;64725:52;64720:580;;;64798:14;64815:16;;;;;;;;;;;:26;;;64842:3;64815:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64798:48;;64865:14;64882:16;;;;;;;;;;;:26;;;64909:6;64882:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64865:51;;64935:17;64955:24;64975:3;64955:15;64967:2;64955:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;64935:44;;65003:17;65023:24;65043:3;65023:15;65035:2;65023:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;65003:44;;65071:5;;;;;;;;;;;:14;;;65086:6;65094:9;65071:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65123:5;;;;;;;;;;;:14;;;65138:6;65146:9;65123:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65175:5;;;;;;;;;;;:14;;;65190:3;65195:37;65222:9;65195:22;65207:9;65195:7;:11;;:22;;;;:::i;:::-;:26;;:37;;;;:::i;:::-;65175:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64720:580;;;;;;;65272:5;;;;;;;;;;;:14;;;65287:3;65292:7;65272:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64720:580;64313:987;63094:2218;62936:2383;;;;:::o;11354:177::-;11437:86;11457:5;11487:23;;;11512:2;11516:5;11464:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11437:19;:86::i;:::-;11354:177;;;:::o;12013:622::-;12392:1;12383:5;:10;12382:62;;;;12442:1;12399:5;:15;;;12423:4;12430:7;12399:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:44;12382:62;12374:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:90;12557:5;12587:22;;;12611:7;12620:5;12564:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;:90::i;:::-;12013:622;;;:::o;26822:179::-;26880:7;26900:9;26916:1;26912;:5;26900:17;;26941:1;26936;:6;;26928:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26992:1;26985:8;;;26822:179;;;;:::o;11539:205::-;11640:96;11660:5;11690:27;;;11719:4;11725:2;11729:5;11667:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11640:19;:96::i;:::-;11539:205;;;;:::o;13659:761::-;14083:23;14109:69;14137:4;14109:69;;;;;;;;;;;;;;;;;14117:5;14109:27;;;;:69;;;;;:::i;:::-;14083:95;;14213:1;14193:10;:17;:21;14189:224;;;14335:10;14324:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14316:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14189:224;13659:761;;;:::o;6417:195::-;6520:12;6552:52;6574:6;6582:4;6588:1;6591:12;6552:21;:52::i;:::-;6545:59;;6417:195;;;;;:::o;7469:530::-;7596:12;7654:5;7629:21;:30;;7621:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7721:18;7732:6;7721:10;:18::i;:::-;7713:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7847:12;7861:23;7888:6;:11;;7908:5;7916:4;7888:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7846:75;;;;7939:52;7957:7;7966:10;7978:12;7939:17;:52::i;:::-;7932:59;;;;7469:530;;;;;;:::o;3499:422::-;3559:4;3767:12;3878:7;3866:20;3858:28;;3912:1;3905:4;:8;3898:15;;;3499:422;;;:::o;10009:742::-;10124:12;10153:7;10149:595;;;10184:10;10177:17;;;;10149:595;10318:1;10298:10;:17;:21;10294:439;;;10561:10;10555:17;10622:15;10609:10;10605:2;10601:19;10594:44;10509:148;10704:12;10697:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10009:742;;;;;;:::o

Swarm Source

ipfs://55f3326445c9a72b495de223f74b9dd84637db8e31e1aaed2e4447f9f8251240

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.