ETH Price: $3,328.64 (-4.43%)
Gas: 3 Gwei

Token

DarkHippoV2 (dHIPPOv2)
 

Overview

Max Total Supply

1,887.8647176146730947 dHIPPOv2

Holders

275

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
119.794331695841225274 dHIPPOv2

Value
$0.00
0xd6Bd6Feaeb82a53C473Ca5206Ba4a990Cc5a632c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DarkHippo

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 999999 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-11
*/

/*
  ___ ___ ._______________________________                          
 /   |   \|   \______   \______   \_____  \                         
/    ~    \   ||     ___/|     ___//   |   \                        
\    Y    /   ||    |    |    |   /    |    \                       
 \___|_  /|___||____|    |____|   \_______  /                       
       \/                                 \/                        
___________.___ _______      _____    _______  _________ ___________
\_   _____/|   |\      \    /  _  \   \      \ \_   ___ \\_   _____/
 |    __)  |   |/   |   \  /  /_\  \  /   |   \/    \  \/ |    __)_ 
 |     \   |   /    |    \/    |    \/    |    \     \____|        \
 \___  /   |___\____|__  /\____|__  /\____|__  /\______  /_______  /
     \/                \/         \/         \/        \/        \/ 
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity ^0.6.0;

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

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

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



pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

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



pragma solidity ^0.6.0;

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

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



pragma solidity ^0.6.2;

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.6.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;
    using Address for address;

    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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 {
        _decimals = decimals_;
    }

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

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



pragma solidity ^0.6.0;




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

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

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

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

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

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

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

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

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



pragma solidity ^0.6.0;

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

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

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

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

// File: contracts/DarkHippo.sol

pragma solidity 0.6.12;





contract DarkHippo is ERC20("DarkHippoV2", "dHIPPOv2"), Ownable {
    using SafeMath for uint256;

    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    // Addresses
    address public devAddress;
    address public fundAddress;

    // Reward
    uint256 public rewardPerBlock;
    uint256 public rewardPerBlockLP;

    // Rate of Reward
    uint256 public rateDevFee = 5;
    uint256 public rateReward = 75;
    uint256 public rateFund = 20;
    uint256 public start_block = 0;

    // Addresses for stake
    IERC20 public HippoToken;
    IERC20 public HippoLPToken;

    // Start?
    bool public isStart;


    // Stakeaddress
    struct stakeTracker {
        uint256 lastBlock;
        uint256 lastBlockLP;
        uint256 rewards;
        uint256 rewardsLP;
        uint256 stakedHIPPO;
        uint256 stakedHippoLP;
    }
    mapping(address => stakeTracker) public staked;

    // Amount
    uint256 private totalStakedAmount = 0; // for HIPPO
    uint256 private totalStakedAmountLP = 0; // for HIPPO/ETH


    constructor(
        address hippoToken,
        address _devAddress,
        address _fundAddress,
        uint256 _start_block
    ) public {
        _mint(msg.sender, 500 * 1000000000000000000);
        devAddress = _devAddress;
        fundAddress = _fundAddress;
        rewardPerBlock = 0.01 * 1000000000000000000;
        rewardPerBlockLP = 0 * 1000000000000000000;
        start_block = _start_block;
        HippoToken = IERC20(address(hippoToken));
        isStart = false;
    }


    // Events
    event Staked(address indexed user, uint256 amount, uint256 total);
    event Unstaked(address indexed user, uint256 amount, uint256 total);
    event StakedLP(address indexed user, uint256 amount, uint256 total);
    event UnstakedLP(address indexed user, uint256 amount, uint256 total);
    event Rewards(address indexed user, uint256 amount);


    // Reward Updater
    modifier updateStakingReward(address account) {

        uint256 h = 0;
        uint256 lastBlock = staked[account].lastBlock;
        if(block.number > staked[account].lastBlock && totalStakedAmount != 0) {
            uint256 multiplier = block.number.sub(lastBlock);
            uint256 hippoReward = multiplier.mul(rewardPerBlock);
            h = hippoReward.mul(staked[account].stakedHIPPO).div(totalStakedAmount);
            staked[account].rewards = staked[account].rewards.add(h);
            staked[account].lastBlock = block.number;
        }

        _;
    }


    // Reward Updater LP
    modifier updateStakingRewardLP(address account) {

        uint256 h = 0;
        uint256 lastBlockLP = staked[account].lastBlockLP;
        if(block.number > staked[account].lastBlockLP && totalStakedAmountLP != 0) {
            uint256 multiplier = block.number.sub(lastBlockLP);
            uint256 hippoReward = multiplier.mul(rewardPerBlockLP);
            h = hippoReward.mul(staked[account].stakedHippoLP).div(totalStakedAmountLP);
            staked[account].rewardsLP = staked[account].rewardsLP.add(h);
            staked[account].lastBlockLP = block.number;
        }

        _;
    }



    function setHippoToken(address _addr) public onlyOwner {
        HippoToken = IERC20(address(_addr));
    }

    function setHippoLPToken(address _addr) public onlyOwner {
        HippoLPToken = IERC20(address(_addr));
    }


    // Set Rewards both
    function setRewardPerBlockBoth(uint256 _hippo, uint256 _lp) public onlyOwner {
        rewardPerBlock = _hippo;
        rewardPerBlockLP = _lp;
    }

    // Set Reward Per Block
    function setRewardPerBlock(uint256 _amount) public onlyOwner {
        rewardPerBlock = _amount;
    }

    // Set Reward Per Block - LP
    function setRewardPerBlockLP(uint256 _amount) public onlyOwner {
        rewardPerBlockLP = _amount;
    }

    // Set Reward
    function setDevAddress(address addr) public onlyOwner {
        devAddress = addr;
    }

    // Set Funding Contract
    function setFundAddress(address addr) public onlyOwner {
        fundAddress = addr;
    }


    // Stake $HIPPO
    function stake(uint256 amount) public updateStakingReward(msg.sender) {
        require(isStart, "not started");
        require(0 < amount, ":stake: Fund Error");
        totalStakedAmount = totalStakedAmount.add(amount);
        staked[msg.sender].stakedHIPPO = staked[msg.sender].stakedHIPPO.add(amount);
        HippoToken.safeTransferFrom(msg.sender, address(this), amount);
        staked[msg.sender].lastBlock = block.number;
        emit Staked(msg.sender, amount, totalStakedAmount);
    }

    // Unstake $HIPPO
    function unstake(uint256 amount) public updateStakingReward(msg.sender) {
        require(isStart, "not started");
        require(amount <= staked[msg.sender].stakedHIPPO, ":unstake: Fund ERROR");
        require(0 < amount, ":unstake: Fund Error 2");
        totalStakedAmount = totalStakedAmount.sub(amount);
        staked[msg.sender].stakedHIPPO = staked[msg.sender].stakedHIPPO.sub(amount);
        HippoToken.safeTransfer(msg.sender, amount);
        staked[msg.sender].lastBlock = block.number;
        emit Unstaked(msg.sender, amount, totalStakedAmount);
    }

    // Stake $HIPPO/ETH
    function stakeLP(uint256 amount) public updateStakingRewardLP(msg.sender) {
        require(isStart, "not started");
        require(0 < amount, ":stakeLP: Fund Error");
        totalStakedAmountLP = totalStakedAmountLP.add(amount);
        staked[msg.sender].stakedHippoLP = staked[msg.sender].stakedHippoLP.add(amount);
        HippoLPToken.safeTransferFrom(msg.sender, address(this), amount);
        staked[msg.sender].lastBlockLP = block.number;
        emit StakedLP(msg.sender, amount, totalStakedAmount);
    }

    // Unstake $HIPPO/ETH
    function unstakeLP(uint256 amount) public updateStakingRewardLP(msg.sender) {
        require(isStart, "not started");
        require(amount <= staked[msg.sender].stakedHippoLP, ":unstakeLP: Fund ERROR, amount <= stakedHippo");
        require(0 < amount, ":unstakeLP: Fund Error 2");
        totalStakedAmountLP = totalStakedAmountLP.sub(amount);
        staked[msg.sender].stakedHippoLP = staked[msg.sender].stakedHippoLP.sub(amount);
        HippoLPToken.safeTransfer(msg.sender, amount);
        staked[msg.sender].lastBlockLP = block.number;
        emit UnstakedLP(msg.sender, amount, totalStakedAmountLP);
    }   

    // Claim
    function sendReward() public updateStakingReward(msg.sender) {
        require(isStart, "not started");
        require(0 < staked[msg.sender].rewards, "More than 0");
        uint256 reward = staked[msg.sender].rewards;
        staked[msg.sender].rewards = 0;
        uint256 totalWeight = rateReward.add(rateDevFee).add(rateFund);
        // 75% to User
        _mint(msg.sender, reward.div(totalWeight).mul(rateReward));
        // 20% to Funding event
        _mint(fundAddress, reward.div(totalWeight).mul(rateFund));
        // 5% to DevFee
        _mint(devAddress, reward.div(totalWeight).mul(rateDevFee));
        emit Rewards(msg.sender, reward);
    }
    

    // Claim LP
    function sendRewardLP() public updateStakingRewardLP(msg.sender) {
        require(isStart, "not started");
        require(0 < staked[msg.sender].rewardsLP, "More than 0");
        uint256 reward = staked[msg.sender].rewardsLP;
        staked[msg.sender].rewardsLP = 0;
        uint256 totalWeight = rateReward.add(rateDevFee).add(rateFund);
        // 75% to User
        _mint(msg.sender, reward.div(totalWeight).mul(rateReward));
        // 20% to Funding event
        _mint(fundAddress, reward.div(totalWeight).mul(rateFund));
        // 5% to DevFee
        _mint(devAddress, reward.div(totalWeight).mul(rateDevFee));
        emit Rewards(msg.sender, reward);
    }

    function setStart() public onlyOwner {
        isStart = true;
    }

    // Get my reward
    function getHippoReward(address account) public view returns (uint256) {
        uint256 h = 0;
        uint256 lastBlock = staked[account].lastBlock;
        if(block.number > staked[account].lastBlock && totalStakedAmount != 0) {
            uint256 multiplier = block.number.sub(lastBlock);
            uint256 hippoReward = multiplier.mul(rewardPerBlock);
            h = hippoReward.mul(staked[account].stakedHIPPO).div(totalStakedAmount);
        }
        return staked[account].rewards.add(h);
    }

    function getHippoLPReward(address account) public view returns (uint256) {
        uint256 h = 0;
        uint256 lastBlock = staked[account].lastBlockLP;
        if(block.number > staked[account].lastBlockLP && totalStakedAmountLP != 0) {
            uint256 multiplier = block.number.sub(lastBlock);
            uint256 hippoReward = multiplier.mul(rewardPerBlockLP);
            h = hippoReward.mul(staked[account].stakedHippoLP).div(totalStakedAmountLP);
        }
        return staked[account].rewardsLP.add(h);
    }

    // Get staked amount of angry hippo
    function getStakedAmount(address _account) public view returns (uint256) {
        return staked[_account].stakedHIPPO;
    }
    
    // Get staked amount of angry hippo / eth
    function getStakedAmountOfLP(address _account) public view returns (uint256) {
        return staked[_account].stakedHippoLP;
    }

    // Get total staked aHIPPO
    function getTotalStakedAmount() public view returns (uint256) {
        return totalStakedAmount;
    }

    // Get total staked aHIPPO/ETH
    function getTotalStakedAmountLP() public view returns (uint256) {
        return totalStakedAmountLP;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"hippoToken","type":"address"},{"internalType":"address","name":"_devAddress","type":"address"},{"internalType":"address","name":"_fundAddress","type":"address"},{"internalType":"uint256","name":"_start_block","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Rewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"StakedLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"Unstaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"UnstakedLP","type":"event"},{"inputs":[],"name":"HippoLPToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HippoToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getHippoLPReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getHippoReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getStakedAmountOfLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalStakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalStakedAmountLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateFund","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerBlockLP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendRewardLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setFundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setHippoLPToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setHippoToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardPerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hippo","type":"uint256"},{"internalType":"uint256","name":"_lp","type":"uint256"}],"name":"setRewardPerBlockBoth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardPerBlockLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"staked","outputs":[{"internalType":"uint256","name":"lastBlock","type":"uint256"},{"internalType":"uint256","name":"lastBlockLP","type":"uint256"},{"internalType":"uint256","name":"rewards","type":"uint256"},{"internalType":"uint256","name":"rewardsLP","type":"uint256"},{"internalType":"uint256","name":"stakedHIPPO","type":"uint256"},{"internalType":"uint256","name":"stakedHippoLP","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start_block","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstakeLP","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005600a55604b600b556014600c556000600d55600060115560006012553480156200002f57600080fd5b50604051620039c5380380620039c5833981810160405260808110156200005557600080fd5b50805160208083015160408085015160609095015181518083018352600b81526a2230b935a434b83837ab1960a91b81860190815283518085019094526008845267322424a82827bb1960c11b9584019590955280519596939593949193909291620000c5916003919062000342565b508051620000db90600490602084019062000342565b50506005805460ff19166012179055506000620000f7620001c8565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200016233681b1ae4d6e2ef500000620001cc565b600680546001600160a01b039485166001600160a01b0319918216179091556007805493851693821693909317909255662386f26fc100006008556000600955600d55600e8054939092169216919091179055600f805460ff60a01b19169055620003de565b3390565b6001600160a01b03821662000228576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200023660008383620002db565b6200025281600254620002e060201b620029331790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200028591839062002933620002e0821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200033b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200038557805160ff1916838001178555620003b5565b82800160010185558215620003b5579182015b82811115620003b557825182559160200191906001019062000398565b50620003c3929150620003c7565b5090565b5b80821115620003c35760008155600101620003c8565b6135d780620003ee6000396000f3fe608060405234801561001057600080fd5b506004361061030a5760003560e01c80638da5cb5b1161019c578063b87fb3db116100ee578063d890da1511610097578063e5da2cb211610071578063e5da2cb2146108da578063e82bef29146108f7578063f2fde38b146108ff5761030a565b8063d890da1514610864578063dd62ed3e1461086c578063e3cd8b9d146108a75761030a565b8063c94fdb79116100c8578063c94fdb7914610821578063d0d41fe114610829578063d150d3201461085c5761030a565b8063b87fb3db146107df578063bb872b4a146107e7578063c4778998146108045761030a565b8063a442ecee11610150578063a694fc3a1161012a578063a694fc3a14610781578063a9059cbb1461079e578063adc2347b146107d75761030a565b8063a442ecee1461070d578063a457c2d714610715578063a677cd3d1461074e5761030a565b806398807d841161018157806398807d84146106975780639fd98de1146106fd578063a14c41b8146107055761030a565b80638da5cb5b1461068757806395d89b411461068f5761030a565b80633ad10ef61161026057806370a082311161020957806385dc3004116101e357806385dc3004146106445780638a55d36e146106775780638ae39cac1461067f5761030a565b806370a08231146105ec578063715018a61461061f5780637d43c50e146106275761030a565b80634da6a5561161023a5780634da6a5561461056357806351648b06146105965780636ed5d52c146105c95761030a565b80633ad10ef6146104f55780633f55b41d146104fd5780634ad2e517146105305761030a565b806323b872dd116102c257806335975a371161029c57806335975a37146104ac57806338adb6f0146104b457806339509351146104bc5761030a565b806323b872dd1461042e5780632e17de7814610471578063313ce5671461048e5761030a565b80631149a81a116102f35780631149a81a146103d957806318160ddd146103e35780632238b5c9146103fd5761030a565b806306fdde031461030f578063095ea7b31461038c575b600080fd5b610317610932565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610351578181015183820152602001610339565b50505050905090810190601f16801561037e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103c5600480360360408110156103a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109e6565b604080519115158252519081900360200190f35b6103e1610a04565b005b6103eb610d00565b60408051918252519081900360200190f35b610405610d06565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103c56004803603606081101561044457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610d22565b6103e16004803603602081101561048757600080fd5b5035610dc3565b6104966110eb565b6040805160ff9092168252519081900360200190f35b6103e16110f4565b6103eb6111cb565b6103c5600480360360408110156104d257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356111d1565b61040561122c565b6103e16004803603602081101561051357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611248565b6103e16004803603602081101561054657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611325565b6103eb6004803603602081101561057957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611402565b6103eb600480360360208110156105ac57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661142d565b6103e1600480360360408110156105df57600080fd5b5080359060200135611458565b6103eb6004803603602081101561060257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114f9565b6103e1611521565b6103e16004803603602081101561063d57600080fd5b503561162b565b6103e16004803603602081101561065a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166116c6565b6103c56117a3565b6103eb6117c4565b6104056117ca565b6103176117eb565b6106ca600480360360208110156106ad57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661186a565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103eb61189f565b6103eb6118a5565b6104056118ab565b6103c56004803603604081101561072b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356118c7565b6103eb6004803603602081101561076457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661193c565b6103e16004803603602081101561079757600080fd5b5035611a1f565b6103c5600480360360408110156107b457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611cc7565b6103eb611cdb565b6103eb611ce1565b6103e1600480360360208110156107fd57600080fd5b5035611ce7565b6103e16004803603602081101561081a57600080fd5b5035611d82565b6103e161209f565b6103e16004803603602081101561083f57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166122d1565b6103eb6123ae565b6103eb6123b4565b6103eb6004803603604081101561088257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166123ba565b6103eb600480360360208110156108bd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166123f2565b6103e1600480360360208110156108f057600080fd5b50356124ca565b61040561277d565b6103e16004803603602081101561091557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612799565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b820191906000526020600020905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b60006109fa6109f36129ae565b84846129b2565b5060015b92915050565b336000818152601060205260408120544381108015610a24575060115415155b15610afb576000610a354383612af9565b90506000610a4e60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610a9291610a8c908490612b3b565b90612bae565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610ac89085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610b8457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060020154610c0257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600201805490829055600c54600a54600b54929392610c3b9291610c359190612933565b90612933565b9050610c6533610c60600b54610c5a8587612bae90919063ffffffff16565b90612b3b565b612bf0565b600754600c54610c949173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b600654600a54610cc39173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b60408051838152905133917fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a919081900360200190a25050505050565b60025490565b600e5473ffffffffffffffffffffffffffffffffffffffff1681565b6000610d2f848484612d21565b610db984610d3b6129ae565b610db4856040518060600160405280602881526020016134b56028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610d866129ae565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612ef1565b6129b2565b5060019392505050565b336000818152601060205260408120544381108015610de3575060115415155b15610eb4576000610df44383612af9565b90506000610e0d60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610e4b91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610e819085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610f3d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060040154841115610fbe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a756e7374616b653a2046756e64204552524f52000000000000000000000000604482015290519081900360640190fd5b8360001061102d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f3a756e7374616b653a2046756e64204572726f72203200000000000000000000604482015290519081900360640190fd5b60115461103a9085612af9565b6011553360009081526010602052604090206004015461105a9085612af9565b33600081815260106020526040902060040191909155600e546110969173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b3360008181526010602090815260409182902043905560115482518881529182015281517f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e929181900390910190a250505050565b60055460ff1690565b6110fc6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461118a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60115490565b60006109fa6111de6129ae565b84610db485600160006111ef6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490612933565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b6112506129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146112de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61132d6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146113bb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206004015490565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206005015490565b6114606129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146114ee57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600891909155600955565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6115296129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146115b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6116336129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146116c157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600955565b6116ce6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461175c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600f5474010000000000000000000000000000000000000000900460ff1681565b60085481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b601060205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b600b5481565b600c5481565b600f5473ffffffffffffffffffffffffffffffffffffffff1681565b60006109fa6118d46129ae565b84610db48560405180606001604052806025815260200161357d60259139600160006118fe6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff811660009081526010602052604081206001015481904381108015611977575060125415155b156119e45760006119884383612af9565b905060006119a160095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff88166000908152601060205260409020600501549192506119df91610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060030154611a179083612933565b949350505050565b336000818152601060205260408120544381108015611a3f575060115415155b15611b10576000611a504383612af9565b90506000611a6960085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250611aa791610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450611add9085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16611b9957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b83600010611c0857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f3a7374616b653a2046756e64204572726f720000000000000000000000000000604482015290519081900360640190fd5b601154611c159085612933565b60115533600090815260106020526040902060040154611c359085612933565b33600081815260106020526040902060040191909155600e54611c729173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b3360008181526010602090815260409182902043905560115482518881529182015281517f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee90929181900390910190a250505050565b60006109fa611cd46129ae565b8484612d21565b60095481565b600d5481565b611cef6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff908116911614611d7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b336000818152601060205260408120600101544381108015611da5575060125415155b15611e7a576000611db64383612af9565b90506000611dcf60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060050154919250611e0d91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060030154909450611e439085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff16611f0357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060050154841115611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613526602d913960400191505060405180910390fd5b83600010611fdd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f3a756e7374616b654c503a2046756e64204572726f7220320000000000000000604482015290519081900360640190fd5b601254611fea9085612af9565b6012553360009081526010602052604090206005015461200a9085612af9565b33600081815260106020526040902060050191909155600f546120469173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b336000818152601060209081526040918290204360019091015560125482518881529182015281517f0a0035bf4ccb68b30fd60b18335e5f1de41ba7f32ec99133192c40b2af5ddf2a929181900390910190a250505050565b3360008181526010602052604081206001015443811080156120c2575060125415155b156121975760006120d34383612af9565b905060006120ec60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061212a91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600301549094506121609085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661222057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b3360009081526010602052604090206003015461229e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600301805490829055600c54600a54600b54929392610c3b9291610c359190612933565b6122d96129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461236757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600a5481565b60125490565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601060205260408120548190438110801561242a575060115415155b1561249757600061243b4383612af9565b9050600061245460085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff881660009081526010602052604090206004015491925061249291610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060020154611a179083612933565b3360008181526010602052604081206001015443811080156124ed575060125415155b156125c25760006124fe4383612af9565b9050600061251760095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061255591610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526010602052604090206003015490945061258b9085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661264b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b836000106126ba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a7374616b654c503a2046756e64204572726f72000000000000000000000000604482015290519081900360640190fd5b6012546126c79085612933565b601255336000908152601060205260409020600501546126e79085612933565b33600081815260106020526040902060050191909155600f546127249173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b336000818152601060209081526040918290204360019091015560115482518881529182015281517fb7b233b6521c7f0372a87c02ad816107c5cbe56f7a82c3607d13bb14579fa05d929181900390910190a250505050565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b6127a16129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461282f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134266026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000828201838110156129a757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316612a1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806135026024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612a8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061344c6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006129a783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ef1565b600082612b4a575060006109fe565b82820282848281612b5757fe5b04146129a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134946021913960400191505060405180910390fd5b60006129a783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130cf565b73ffffffffffffffffffffffffffffffffffffffff8216612c7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612c7e6000838361302f565b600254612c8b9082612933565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054612cbe9082612933565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316612d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134dd6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612df9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806134036023913960400191505060405180910390fd5b612e0483838361302f565b612e4e8160405180606001604052806026815260200161346e6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054612e8a9082612933565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612f9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f5f578181015183820152602001612f47565b50505050905090810190601f168015612f8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261302f90849061314e565b505050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526130c990859061314e565b50505050565b60008183613138576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315612f5f578181015183820152602001612f47565b50600083858161314457fe5b0495945050505050565b60606131b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166132269092919063ffffffff16565b80519091501561302f578080602001905160208110156131cf57600080fd5b505161302f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613553602a913960400191505060405180910390fd5b6060611a178484600085606061323b856133fc565b6132a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061331057805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016132d3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613372576040519150601f19603f3d011682016040523d82523d6000602084013e613377565b606091505b5091509150811561338b579150611a179050565b80511561339b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152865160248401528651879391928392604401919085019080838360008315612f5f578181015183820152602001612f47565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573733a756e7374616b654c503a2046756e64204552524f522c20616d6f756e74203c3d207374616b6564486970706f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202cedc543a346b0efa05eaceb9d53c35787c6ed079fcd3f6457ef0cff2a66937e64736f6c634300060c00330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000811940e927d30129929014715f56833d9c2a406e000000000000000000000000d6bd6feaeb82a53c473ca5206ba4a990cc5a632c000000000000000000000000000000000000000000000000000000000002a300

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061030a5760003560e01c80638da5cb5b1161019c578063b87fb3db116100ee578063d890da1511610097578063e5da2cb211610071578063e5da2cb2146108da578063e82bef29146108f7578063f2fde38b146108ff5761030a565b8063d890da1514610864578063dd62ed3e1461086c578063e3cd8b9d146108a75761030a565b8063c94fdb79116100c8578063c94fdb7914610821578063d0d41fe114610829578063d150d3201461085c5761030a565b8063b87fb3db146107df578063bb872b4a146107e7578063c4778998146108045761030a565b8063a442ecee11610150578063a694fc3a1161012a578063a694fc3a14610781578063a9059cbb1461079e578063adc2347b146107d75761030a565b8063a442ecee1461070d578063a457c2d714610715578063a677cd3d1461074e5761030a565b806398807d841161018157806398807d84146106975780639fd98de1146106fd578063a14c41b8146107055761030a565b80638da5cb5b1461068757806395d89b411461068f5761030a565b80633ad10ef61161026057806370a082311161020957806385dc3004116101e357806385dc3004146106445780638a55d36e146106775780638ae39cac1461067f5761030a565b806370a08231146105ec578063715018a61461061f5780637d43c50e146106275761030a565b80634da6a5561161023a5780634da6a5561461056357806351648b06146105965780636ed5d52c146105c95761030a565b80633ad10ef6146104f55780633f55b41d146104fd5780634ad2e517146105305761030a565b806323b872dd116102c257806335975a371161029c57806335975a37146104ac57806338adb6f0146104b457806339509351146104bc5761030a565b806323b872dd1461042e5780632e17de7814610471578063313ce5671461048e5761030a565b80631149a81a116102f35780631149a81a146103d957806318160ddd146103e35780632238b5c9146103fd5761030a565b806306fdde031461030f578063095ea7b31461038c575b600080fd5b610317610932565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610351578181015183820152602001610339565b50505050905090810190601f16801561037e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103c5600480360360408110156103a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356109e6565b604080519115158252519081900360200190f35b6103e1610a04565b005b6103eb610d00565b60408051918252519081900360200190f35b610405610d06565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103c56004803603606081101561044457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610d22565b6103e16004803603602081101561048757600080fd5b5035610dc3565b6104966110eb565b6040805160ff9092168252519081900360200190f35b6103e16110f4565b6103eb6111cb565b6103c5600480360360408110156104d257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356111d1565b61040561122c565b6103e16004803603602081101561051357600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611248565b6103e16004803603602081101561054657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611325565b6103eb6004803603602081101561057957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611402565b6103eb600480360360208110156105ac57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661142d565b6103e1600480360360408110156105df57600080fd5b5080359060200135611458565b6103eb6004803603602081101561060257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166114f9565b6103e1611521565b6103e16004803603602081101561063d57600080fd5b503561162b565b6103e16004803603602081101561065a57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166116c6565b6103c56117a3565b6103eb6117c4565b6104056117ca565b6103176117eb565b6106ca600480360360208110156106ad57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661186a565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6103eb61189f565b6103eb6118a5565b6104056118ab565b6103c56004803603604081101561072b57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356118c7565b6103eb6004803603602081101561076457600080fd5b503573ffffffffffffffffffffffffffffffffffffffff1661193c565b6103e16004803603602081101561079757600080fd5b5035611a1f565b6103c5600480360360408110156107b457600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611cc7565b6103eb611cdb565b6103eb611ce1565b6103e1600480360360208110156107fd57600080fd5b5035611ce7565b6103e16004803603602081101561081a57600080fd5b5035611d82565b6103e161209f565b6103e16004803603602081101561083f57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166122d1565b6103eb6123ae565b6103eb6123b4565b6103eb6004803603604081101561088257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160200135166123ba565b6103eb600480360360208110156108bd57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166123f2565b6103e1600480360360208110156108f057600080fd5b50356124ca565b61040561277d565b6103e16004803603602081101561091557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612799565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b820191906000526020600020905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b60006109fa6109f36129ae565b84846129b2565b5060015b92915050565b336000818152601060205260408120544381108015610a24575060115415155b15610afb576000610a354383612af9565b90506000610a4e60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610a9291610a8c908490612b3b565b90612bae565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610ac89085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610b8457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060020154610c0257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600201805490829055600c54600a54600b54929392610c3b9291610c359190612933565b90612933565b9050610c6533610c60600b54610c5a8587612bae90919063ffffffff16565b90612b3b565b612bf0565b600754600c54610c949173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b600654600a54610cc39173ffffffffffffffffffffffffffffffffffffffff1690610c6090610c5a8686612bae565b60408051838152905133917fc083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a919081900360200190a25050505050565b60025490565b600e5473ffffffffffffffffffffffffffffffffffffffff1681565b6000610d2f848484612d21565b610db984610d3b6129ae565b610db4856040518060600160405280602881526020016134b56028913973ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040812090610d866129ae565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549190612ef1565b6129b2565b5060019392505050565b336000818152601060205260408120544381108015610de3575060115415155b15610eb4576000610df44383612af9565b90506000610e0d60085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250610e4b91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450610e819085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16610f3d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060040154841115610fbe57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a756e7374616b653a2046756e64204552524f52000000000000000000000000604482015290519081900360640190fd5b8360001061102d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f3a756e7374616b653a2046756e64204572726f72203200000000000000000000604482015290519081900360640190fd5b60115461103a9085612af9565b6011553360009081526010602052604090206004015461105a9085612af9565b33600081815260106020526040902060040191909155600e546110969173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b3360008181526010602090815260409182902043905560115482518881529182015281517f7fc4727e062e336010f2c282598ef5f14facb3de68cf8195c2f23e1454b2b74e929181900390910190a250505050565b60055460ff1690565b6110fc6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461118a57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b60115490565b60006109fa6111de6129ae565b84610db485600160006111ef6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c168152925290205490612933565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b6112506129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146112de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600e80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61132d6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146113bb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600f80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206004015490565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090206005015490565b6114606129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146114ee57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600891909155600955565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6115296129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146115b757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600554604051600091610100900473ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff169055565b6116336129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff9081169116146116c157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600955565b6116ce6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461175c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600f5474010000000000000000000000000000000000000000900460ff1681565b60085481565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1690565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109dc5780601f106109b1576101008083540402835291602001916109dc565b601060205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b600b5481565b600c5481565b600f5473ffffffffffffffffffffffffffffffffffffffff1681565b60006109fa6118d46129ae565b84610db48560405180606001604052806025815260200161357d60259139600160006118fe6129ae565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918d16815292529020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff811660009081526010602052604081206001015481904381108015611977575060125415155b156119e45760006119884383612af9565b905060006119a160095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff88166000908152601060205260409020600501549192506119df91610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060030154611a179083612933565b949350505050565b336000818152601060205260408120544381108015611a3f575060115415155b15611b10576000611a504383612af9565b90506000611a6960085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060040154919250611aa791610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060020154909450611add9085612933565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600281019190915543905550505b600f5474010000000000000000000000000000000000000000900460ff16611b9957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b83600010611c0857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f3a7374616b653a2046756e64204572726f720000000000000000000000000000604482015290519081900360640190fd5b601154611c159085612933565b60115533600090815260106020526040902060040154611c359085612933565b33600081815260106020526040902060040191909155600e54611c729173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b3360008181526010602090815260409182902043905560115482518881529182015281517f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee90929181900390910190a250505050565b60006109fa611cd46129ae565b8484612d21565b60095481565b600d5481565b611cef6129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff908116911614611d7d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600855565b336000818152601060205260408120600101544381108015611da5575060125415155b15611e7a576000611db64383612af9565b90506000611dcf60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff8716600090815260106020526040902060050154919250611e0d91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060030154909450611e439085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff16611f0357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b33600090815260106020526040902060050154841115611f6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613526602d913960400191505060405180910390fd5b83600010611fdd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f3a756e7374616b654c503a2046756e64204572726f7220320000000000000000604482015290519081900360640190fd5b601254611fea9085612af9565b6012553360009081526010602052604090206005015461200a9085612af9565b33600081815260106020526040902060050191909155600f546120469173ffffffffffffffffffffffffffffffffffffffff9091169086612fa2565b336000818152601060209081526040918290204360019091015560125482518881529182015281517f0a0035bf4ccb68b30fd60b18335e5f1de41ba7f32ec99133192c40b2af5ddf2a929181900390910190a250505050565b3360008181526010602052604081206001015443811080156120c2575060125415155b156121975760006120d34383612af9565b905060006120ec60095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061212a91610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601060205260409020600301549094506121609085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661222057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b3360009081526010602052604090206003015461229e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f4d6f7265207468616e2030000000000000000000000000000000000000000000604482015290519081900360640190fd5b336000908152601060205260408120600301805490829055600c54600a54600b54929392610c3b9291610c359190612933565b6122d96129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461236757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600a5481565b60125490565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601060205260408120548190438110801561242a575060115415155b1561249757600061243b4383612af9565b9050600061245460085483612b3b90919063ffffffff16565b60115473ffffffffffffffffffffffffffffffffffffffff881660009081526010602052604090206004015491925061249291610a8c908490612b3b565b935050505b73ffffffffffffffffffffffffffffffffffffffff8416600090815260106020526040902060020154611a179083612933565b3360008181526010602052604081206001015443811080156124ed575060125415155b156125c25760006124fe4383612af9565b9050600061251760095483612b3b90919063ffffffff16565b60125473ffffffffffffffffffffffffffffffffffffffff871660009081526010602052604090206005015491925061255591610a8c908490612b3b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526010602052604090206003015490945061258b9085612933565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260106020526040902060038101919091554360019091015550505b600f5474010000000000000000000000000000000000000000900460ff1661264b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f6e6f742073746172746564000000000000000000000000000000000000000000604482015290519081900360640190fd5b836000106126ba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f3a7374616b654c503a2046756e64204572726f72000000000000000000000000604482015290519081900360640190fd5b6012546126c79085612933565b601255336000908152601060205260409020600501546126e79085612933565b33600081815260106020526040902060050191909155600f546127249173ffffffffffffffffffffffffffffffffffffffff909116903087613034565b336000818152601060209081526040918290204360019091015560115482518881529182015281517fb7b233b6521c7f0372a87c02ad816107c5cbe56f7a82c3607d13bb14579fa05d929181900390910190a250505050565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b6127a16129ae565b600554610100900473ffffffffffffffffffffffffffffffffffffffff90811691161461282f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff811661289b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806134266026913960400191505060405180910390fd5b60055460405173ffffffffffffffffffffffffffffffffffffffff80841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b6000828201838110156129a757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff8316612a1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806135026024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612a8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061344c6022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006129a783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612ef1565b600082612b4a575060006109fe565b82820282848281612b5757fe5b04146129a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134946021913960400191505060405180910390fd5b60006129a783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506130cf565b73ffffffffffffffffffffffffffffffffffffffff8216612c7257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612c7e6000838361302f565b600254612c8b9082612933565b60025573ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054612cbe9082612933565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b73ffffffffffffffffffffffffffffffffffffffff8316612d8d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806134dd6025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216612df9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806134036023913960400191505060405180910390fd5b612e0483838361302f565b612e4e8160405180606001604052806026815260200161346e6026913973ffffffffffffffffffffffffffffffffffffffff86166000908152602081905260409020549190612ef1565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082209390935590841681522054612e8a9082612933565b73ffffffffffffffffffffffffffffffffffffffff8084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612f9a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f5f578181015183820152602001612f47565b50505050905090810190601f168015612f8c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261302f90849061314e565b505050565b6040805173ffffffffffffffffffffffffffffffffffffffff80861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd000000000000000000000000000000000000000000000000000000001790526130c990859061314e565b50505050565b60008183613138576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152835160248401528351909283926044909101919085019080838360008315612f5f578181015183820152602001612f47565b50600083858161314457fe5b0495945050505050565b60606131b0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166132269092919063ffffffff16565b80519091501561302f578080602001905160208110156131cf57600080fd5b505161302f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613553602a913960400191505060405180910390fd5b6060611a178484600085606061323b856133fc565b6132a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061331057805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016132d3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613372576040519150601f19603f3d011682016040523d82523d6000602084013e613377565b606091505b5091509150811561338b579150611a179050565b80511561339b5780518082602001fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201818152865160248401528651879391928392604401919085019080838360008315612f5f578181015183820152602001612f47565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573733a756e7374616b654c503a2046756e64204552524f522c20616d6f756e74203c3d207374616b6564486970706f5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202cedc543a346b0efa05eaceb9d53c35787c6ed079fcd3f6457ef0cff2a66937e64736f6c634300060c0033

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

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000811940e927d30129929014715f56833d9c2a406e000000000000000000000000d6bd6feaeb82a53c473ca5206ba4a990cc5a632c000000000000000000000000000000000000000000000000000000000002a300

-----Decoded View---------------
Arg [0] : hippoToken (address): 0x0000000000000000000000000000000000000000
Arg [1] : _devAddress (address): 0x811940E927D30129929014715f56833D9C2a406e
Arg [2] : _fundAddress (address): 0xd6Bd6Feaeb82a53C473Ca5206Ba4a990Cc5a632c
Arg [3] : _start_block (uint256): 172800

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 000000000000000000000000811940e927d30129929014715f56833d9c2a406e
Arg [2] : 000000000000000000000000d6bd6feaeb82a53c473ca5206ba4a990cc5a632c
Arg [3] : 000000000000000000000000000000000000000000000000000000000002a300


Deployed Bytecode Sourcemap

33195:9805:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18288:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20394:169;;;;;;;;;;;;;;;;-1:-1:-1;20394:169:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39776:675;;;:::i;:::-;;19363:100;;;:::i;:::-;;;;;;;;;;;;;;;;33743:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21037:321;;;;;;;;;;;;;;;;-1:-1:-1;21037:321:0;;;;;;;;;;;;;;;;;;:::i;37950:579::-;;;;;;;;;;;;;;;;-1:-1:-1;37950:579:0;;:::i;19215:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41175:70;;;:::i;42739:105::-;;;:::i;21767:218::-;;;;;;;;;;;;;;;;-1:-1:-1;21767:218:0;;;;;;;;;:::i;33387:25::-;;;:::i;36428:109::-;;;;;;;;;;;;;;;;-1:-1:-1;36428:109:0;;;;:::i;36545:113::-;;;;;;;;;;;;;;;;-1:-1:-1;36545:113:0;;;;:::i;42380:127::-;;;;;;;;;;;;;;;;-1:-1:-1;42380:127:0;;;;:::i;42566:133::-;;;;;;;;;;;;;;;;-1:-1:-1;42566:133:0;;;;:::i;36693:152::-;;;;;;;;;;;;;;;;-1:-1:-1;36693:152:0;;;;;;;:::i;19526:119::-;;;;;;;;;;;;;;;;-1:-1:-1;19526:119:0;;;;:::i;32570:148::-;;;:::i;37028:108::-;;;;;;;;;;;;;;;;-1:-1:-1;37028:108:0;;:::i;37290:92::-;;;;;;;;;;;;;;;;-1:-1:-1;37290:92:0;;;;:::i;33824:19::-;;;:::i;33469:29::-;;;:::i;31928:79::-;;;:::i;18490:87::-;;;:::i;34083:46::-;;;;;;;;;;;;;;;;-1:-1:-1;34083:46:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33604:30;;;:::i;33641:28::-;;;:::i;33774:26::-;;;:::i;22488:269::-;;;;;;;;;;;;;;;;-1:-1:-1;22488:269:0;;;;;;;;;:::i;41799:532::-;;;;;;;;;;;;;;;;-1:-1:-1;41799:532:0;;;;:::i;37413:506::-;;;;;;;;;;;;;;;;-1:-1:-1;37413:506:0;;:::i;19858:175::-;;;;;;;;;;;;;;;;-1:-1:-1;19858:175:0;;;;;;;;;:::i;33505:31::-;;;:::i;33676:30::-;;;:::i;36882:104::-;;;;;;;;;;;;;;;;-1:-1:-1;36882:104:0;;:::i;39123:628::-;;;;;;;;;;;;;;;;-1:-1:-1;39123:628:0;;:::i;40482:685::-;;;:::i;37163:90::-;;;;;;;;;;;;;;;;-1:-1:-1;37163:90:0;;;;:::i;33568:29::-;;;:::i;42888:109::-;;;:::i;20096:151::-;;;;;;;;;;;;;;;;-1:-1:-1;20096:151:0;;;;;;;;;;;:::i;41275:516::-;;;;;;;;;;;;;;;;-1:-1:-1;41275:516:0;;;;:::i;38562:526::-;;;;;;;;;;;;;;;;-1:-1:-1;38562:526:0;;:::i;33419:26::-;;;:::i;32873:244::-;;;;;;;;;;;;;;;;-1:-1:-1;32873:244:0;;;;:::i;18288:83::-;18358:5;18351:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18325:13;;18351:12;;18358:5;;18351:12;;18358:5;18351:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18288:83;:::o;20394:169::-;20477:4;20494:39;20503:12;:10;:12::i;:::-;20517:7;20526:6;20494:8;:39::i;:::-;-1:-1:-1;20551:4:0;20394:169;;;;;:::o;39776:675::-;39825:10;35245:9;35289:15;;;:6;:15;;;;;:25;35328:12;:40;-1:-1:-1;35328:66:0;;;;-1:-1:-1;35372:17:0;;:22;;35328:66;35325:425;;;35411:18;35432:27;:12;35449:9;35432:16;:27::i;:::-;35411:48;;35474:19;35496:30;35511:14;;35496:10;:14;;:30;;;;:::i;:::-;35594:17;;35561:15;;;;;;;:6;:15;;;;;:27;;;35474:52;;-1:-1:-1;35545:67:0;;:44;;35474:52;;35545:15;:44::i;:::-;:48;;:67::i;:::-;35653:15;;;;;;;:6;:15;;;;;:23;;;35541:71;;-1:-1:-1;35653:30:0;;35541:71;35653:27;:30::i;:::-;35627:15;;;;;;;:6;:15;;;;;:23;;;:56;;;;35726:12;35698:40;;-1:-1:-1;;35325:425:0;39856:7:::1;::::0;;;::::1;;;39848:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39909:10;39902:18;::::0;;;:6:::1;:18;::::0;;;;:26:::1;;::::0;39890:54:::1;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39979:10;39955:14;39972:18:::0;;;:6:::1;:18;::::0;;;;:26:::1;;::::0;;40009:30;;;;40103:8:::1;::::0;40087:10:::1;::::0;40072::::1;::::0;39972:26;;39955:14;40072:40:::1;::::0;40103:8;40072:26:::1;::::0;:10;:14:::1;:26::i;:::-;:30:::0;::::1;:40::i;:::-;40050:62;;40147:58;40153:10;40165:39;40193:10;;40165:23;40176:11;40165:6;:10;;:23;;;;:::i;:::-;:27:::0;::::1;:39::i;:::-;40147:5;:58::i;:::-;40255:11;::::0;40296:8:::1;::::0;40249:57:::1;::::0;40255:11:::1;;::::0;40268:37:::1;::::0;:23:::1;:6:::0;40279:11;40268:10:::1;:23::i;40249:57::-;40348:10;::::0;40388::::1;::::0;40342:58:::1;::::0;40348:10:::1;;::::0;40360:39:::1;::::0;:23:::1;:6:::0;40371:11;40360:10:::1;:23::i;40342:58::-;40416:27;::::0;;;;;;;40424:10:::1;::::0;40416:27:::1;::::0;;;;;::::1;::::0;;::::1;35762:1;;39776:675:::0;;;:::o;19363:100::-;19443:12;;19363:100;:::o;33743:24::-;;;;;;:::o;21037:321::-;21143:4;21160:36;21170:6;21178:9;21189:6;21160:9;:36::i;:::-;21207:121;21216:6;21224:12;:10;:12::i;:::-;21238:89;21276:6;21238:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;21258:12;:10;:12::i;:::-;21238:33;;;;;;;;;;;;;-1:-1:-1;21238:33:0;;;:89;:37;:89::i;:::-;21207:8;:121::i;:::-;-1:-1:-1;21346:4:0;21037:321;;;;;:::o;37950:579::-;38010:10;35245:9;35289:15;;;:6;:15;;;;;:25;35328:12;:40;-1:-1:-1;35328:66:0;;;;-1:-1:-1;35372:17:0;;:22;;35328:66;35325:425;;;35411:18;35432:27;:12;35449:9;35432:16;:27::i;:::-;35411:48;;35474:19;35496:30;35511:14;;35496:10;:14;;:30;;;;:::i;:::-;35594:17;;35561:15;;;;;;;:6;:15;;;;;:27;;;35474:52;;-1:-1:-1;35545:67:0;;:44;;35474:52;;35545:15;:44::i;:67::-;35653:15;;;;;;;:6;:15;;;;;:23;;;35541:71;;-1:-1:-1;35653:30:0;;35541:71;35653:27;:30::i;:::-;35627:15;;;;;;;:6;:15;;;;;:23;;;:56;;;;35726:12;35698:40;;-1:-1:-1;;35325:425:0;38041:7:::1;::::0;;;::::1;;;38033:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38100:10;38093:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;::::0;38083:40;::::1;;38075:73;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38171:6;38167:1;:10;38159:45;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38235:17;::::0;:29:::1;::::0;38257:6;38235:21:::1;:29::i;:::-;38215:17;:49:::0;38315:10:::1;38308:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;::::0;:42:::1;::::0;38343:6;38308:34:::1;:42::i;:::-;38282:10;38275:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;:75:::0;;;;38361:10:::1;::::0;:43:::1;::::0;38275:18:::1;38361:10:::0;;::::1;::::0;38397:6;38361:23:::1;:43::i;:::-;38422:10;38415:18;::::0;;;:6:::1;:18;::::0;;;;;;;;38446:12:::1;38415:43:::0;;38503:17:::1;::::0;38474:47;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;37950:579:::0;;;;:::o;19215:83::-;19281:9;;;;19215:83;:::o;41175:70::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41223:7:::1;:14:::0;;;::::1;::::0;::::1;::::0;;41175:70::o;42739:105::-;42819:17;;42739:105;:::o;21767:218::-;21855:4;21872:83;21881:12;:10;:12::i;:::-;21895:7;21904:50;21943:10;21904:11;:25;21916:12;:10;:12::i;:::-;21904:25;;;;;;;;;;;;;;;;;;-1:-1:-1;21904:25:0;;;:34;;;;;;;;;;;:38;:50::i;33387:25::-;;;;;;:::o;36428:109::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36494:10:::1;:35:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;36428:109::o;36545:113::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36613:12:::1;:37:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;36545:113::o;42380:127::-;42471:16;;42444:7;42471:16;;;:6;:16;;;;;:28;;;;42380:127::o;42566:133::-;42661:16;;42634:7;42661:16;;;:6;:16;;;;;:30;;;;42566:133::o;36693:152::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36781:14:::1;:23:::0;;;;36815:16:::1;:22:::0;36693:152::o;19526:119::-;19619:18;;19592:7;19619:18;;;;;;;;;;;;19526:119::o;32570:148::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32661:6:::1;::::0;32640:40:::1;::::0;32677:1:::1;::::0;32661:6:::1;::::0;::::1;32640:40;32661:6;::::0;32640:40:::1;::::0;32677:1;;32640:40:::1;32691:6;:19:::0;;;::::1;::::0;;32570:148::o;37028:108::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37102:16:::1;:26:::0;37028:108::o;37290:92::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37356:11:::1;:18:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;37290:92::o;33824:19::-;;;;;;;;;:::o;33469:29::-;;;;:::o;31928:79::-;31993:6;;;;;;;;31928:79::o;18490:87::-;18562:7;18555:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18529:13;;18555:14;;18562:7;;18555:14;;18562:7;18555:14;;;;;;;;;;;;;;;;;;;;;;;;34083:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33604:30::-;;;;:::o;33641:28::-;;;;:::o;33774:26::-;;;;;;:::o;22488:269::-;22581:4;22598:129;22607:12;:10;:12::i;:::-;22621:7;22630:96;22669:15;22630:96;;;;;;;;;;;;;;;;;:11;:25;22642:12;:10;:12::i;:::-;22630:25;;;;;;;;;;;;;;;;;;-1:-1:-1;22630:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;41799:532::-;41927:15;;;41863:7;41927:15;;;:6;:15;;;;;:27;;;41863:7;;41968:12;:42;-1:-1:-1;41968:70:0;;;;-1:-1:-1;42014:19:0;;:24;;41968:70;41965:309;;;42055:18;42076:27;:12;42093:9;42076:16;:27::i;:::-;42055:48;;42118:19;42140:32;42155:16;;42140:10;:14;;:32;;;;:::i;:::-;42242:19;;42207:15;;;;;;;:6;:15;;;;;:29;;;42118:54;;-1:-1:-1;42191:71:0;;:46;;42118:54;;42191:15;:46::i;:71::-;42187:75;;41965:309;;;42291:15;;;;;;;:6;:15;;;;;:25;;;:32;;42321:1;42291:29;:32::i;:::-;42284:39;41799:532;-1:-1:-1;;;;41799:532:0:o;37413:506::-;37471:10;35245:9;35289:15;;;:6;:15;;;;;:25;35328:12;:40;-1:-1:-1;35328:66:0;;;;-1:-1:-1;35372:17:0;;:22;;35328:66;35325:425;;;35411:18;35432:27;:12;35449:9;35432:16;:27::i;:::-;35411:48;;35474:19;35496:30;35511:14;;35496:10;:14;;:30;;;;:::i;:::-;35594:17;;35561:15;;;;;;;:6;:15;;;;;:27;;;35474:52;;-1:-1:-1;35545:67:0;;:44;;35474:52;;35545:15;:44::i;:67::-;35653:15;;;;;;;:6;:15;;;;;:23;;;35541:71;;-1:-1:-1;35653:30:0;;35541:71;35653:27;:30::i;:::-;35627:15;;;;;;;:6;:15;;;;;:23;;;:56;;;;35726:12;35698:40;;-1:-1:-1;;35325:425:0;37502:7:::1;::::0;;;::::1;;;37494:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37548:6;37544:1;:10;37536:41;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;37608:17;::::0;:29:::1;::::0;37630:6;37608:21:::1;:29::i;:::-;37588:17;:49:::0;37688:10:::1;37681:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;::::0;:42:::1;::::0;37716:6;37681:34:::1;:42::i;:::-;37655:10;37648:18;::::0;;;:6:::1;:18;::::0;;;;:30:::1;;:75:::0;;;;37734:10:::1;::::0;:62:::1;::::0;37648:18:::1;37734:10:::0;;::::1;::::0;37782:4:::1;37789:6:::0;37734:27:::1;:62::i;:::-;37814:10;37807:18;::::0;;;:6:::1;:18;::::0;;;;;;;;37838:12:::1;37807:43:::0;;37893:17:::1;::::0;37866:45;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;37413:506:::0;;;;:::o;19858:175::-;19944:4;19961:42;19971:12;:10;:12::i;:::-;19985:9;19996:6;19961:9;:42::i;33505:31::-;;;;:::o;33676:30::-;;;;:::o;36882:104::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36954:14:::1;:24:::0;36882:104::o;39123:628::-;39187:10;35868:9;35914:15;;;:6;:15;;;;;:27;;;35955:12;:42;-1:-1:-1;35955:70:0;;;;-1:-1:-1;36001:19:0;;:24;;35955:70;35952:443;;;36042:18;36063:29;:12;36080:11;36063:16;:29::i;:::-;36042:50;;36107:19;36129:32;36144:16;;36129:10;:14;;:32;;;;:::i;:::-;36231:19;;36196:15;;;;;;;:6;:15;;;;;:29;;;36107:54;;-1:-1:-1;36180:71:0;;:46;;36107:54;;36180:15;:46::i;:71::-;36294:15;;;;;;;:6;:15;;;;;:25;;;36176:75;;-1:-1:-1;36294:32:0;;36176:75;36294:29;:32::i;:::-;36266:15;;;;;;;:6;:15;;;;;:25;;;:60;;;;36371:12;36341:27;;;;:42;-1:-1:-1;;35952:443:0;39218:7:::1;::::0;;;::::1;;;39210:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39277:10;39270:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;::::0;39260:42;::::1;;39252:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39375:6;39371:1;:10;39363:47;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39443:19;::::0;:31:::1;::::0;39467:6;39443:23:::1;:31::i;:::-;39421:19;:53:::0;39527:10:::1;39520:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;::::0;:44:::1;::::0;39557:6;39520:36:::1;:44::i;:::-;39492:10;39485:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;:79:::0;;;;39575:12:::1;::::0;:45:::1;::::0;39485:18:::1;39575:12:::0;;::::1;::::0;39613:6;39575:25:::1;:45::i;:::-;39638:10;39631:18;::::0;;;:6:::1;:18;::::0;;;;;;;;39664:12:::1;39631:30;::::0;;::::1;:45:::0;39723:19:::1;::::0;39692:51;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;39123:628:::0;;;;:::o;40482:685::-;40535:10;35868:9;35914:15;;;:6;:15;;;;;:27;;;35955:12;:42;-1:-1:-1;35955:70:0;;;;-1:-1:-1;36001:19:0;;:24;;35955:70;35952:443;;;36042:18;36063:29;:12;36080:11;36063:16;:29::i;:::-;36042:50;;36107:19;36129:32;36144:16;;36129:10;:14;;:32;;;;:::i;:::-;36231:19;;36196:15;;;;;;;:6;:15;;;;;:29;;;36107:54;;-1:-1:-1;36180:71:0;;:46;;36107:54;;36180:15;:46::i;:71::-;36294:15;;;;;;;:6;:15;;;;;:25;;;36176:75;;-1:-1:-1;36294:32:0;;36176:75;36294:29;:32::i;:::-;36266:15;;;;;;;:6;:15;;;;;:25;;;:60;;;;36371:12;36341:27;;;;:42;-1:-1:-1;;35952:443:0;40566:7:::1;::::0;;;::::1;;;40558:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40619:10;40612:18;::::0;;;:6:::1;:18;::::0;;;;:28:::1;;::::0;40600:56:::1;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40691:10;40667:14;40684:18:::0;;;:6:::1;:18;::::0;;;;:28:::1;;::::0;;40723:32;;;;40819:8:::1;::::0;40803:10:::1;::::0;40788::::1;::::0;40684:28;;40667:14;40788:40:::1;::::0;40819:8;40788:26:::1;::::0;:10;:14:::1;:26::i;37163:90::-:0;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37228:10:::1;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;37163:90::o;33568:29::-;;;;:::o;42888:109::-;42970:19;;42888:109;:::o;20096:151::-;20212:18;;;;20185:7;20212:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20096:151::o;41275:516::-;41401:15;;;41337:7;41401:15;;;:6;:15;;;;;:25;41337:7;;41440:12;:40;-1:-1:-1;41440:66:0;;;;-1:-1:-1;41484:17:0;;:22;;41440:66;41437:299;;;41523:18;41544:27;:12;41561:9;41544:16;:27::i;:::-;41523:48;;41586:19;41608:30;41623:14;;41608:10;:14;;:30;;;;:::i;:::-;41706:17;;41673:15;;;;;;;:6;:15;;;;;:27;;;41586:52;;-1:-1:-1;41657:67:0;;:44;;41586:52;;41657:15;:44::i;:67::-;41653:71;;41437:299;;;41753:15;;;;;;;:6;:15;;;;;:23;;;:30;;41781:1;41753:27;:30::i;38562:526::-;38624:10;35868:9;35914:15;;;:6;:15;;;;;:27;;;35955:12;:42;-1:-1:-1;35955:70:0;;;;-1:-1:-1;36001:19:0;;:24;;35955:70;35952:443;;;36042:18;36063:29;:12;36080:11;36063:16;:29::i;:::-;36042:50;;36107:19;36129:32;36144:16;;36129:10;:14;;:32;;;;:::i;:::-;36231:19;;36196:15;;;;;;;:6;:15;;;;;:29;;;36107:54;;-1:-1:-1;36180:71:0;;:46;;36107:54;;36180:15;:46::i;:71::-;36294:15;;;;;;;:6;:15;;;;;:25;;;36176:75;;-1:-1:-1;36294:32:0;;36176:75;36294:29;:32::i;:::-;36266:15;;;;;;;:6;:15;;;;;:25;;;:60;;;;36371:12;36341:27;;;;:42;-1:-1:-1;;35952:443:0;38655:7:::1;::::0;;;::::1;;;38647:31;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38701:6;38697:1;:10;38689:43;;;::::0;;::::1;::::0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38765:19;::::0;:31:::1;::::0;38789:6;38765:23:::1;:31::i;:::-;38743:19;:53:::0;38849:10:::1;38842:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;::::0;:44:::1;::::0;38879:6;38842:36:::1;:44::i;:::-;38814:10;38807:18;::::0;;;:6:::1;:18;::::0;;;;:32:::1;;:79:::0;;;;38897:12:::1;::::0;:64:::1;::::0;38807:18:::1;38897:12:::0;;::::1;::::0;38947:4:::1;38954:6:::0;38897:29:::1;:64::i;:::-;38979:10;38972:18;::::0;;;:6:::1;:18;::::0;;;;;;;;39005:12:::1;38972:30;::::0;;::::1;:45:::0;39062:17:::1;::::0;39033:47;;;;;;;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;38562:526:::0;;;;:::o;33419:26::-;;;;;;:::o;32873:244::-;32150:12;:10;:12::i;:::-;32140:6;;;;;:22;:6;;;:22;;;32132:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32962:22:::1;::::0;::::1;32954:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33064:6;::::0;33043:38:::1;::::0;::::1;::::0;;::::1;::::0;33064:6:::1;::::0;::::1;;::::0;33043:38:::1;::::0;;;::::1;33092:6;:17:::0;;::::1;::::0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;32873:244::o;5591:181::-;5649:7;5681:5;;;5705:6;;;;5697:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5763:1;5591:181;-1:-1:-1;;;5591:181:0:o;1509:106::-;1597:10;1509:106;:::o;25633:346::-;25735:19;;;25727:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25814:21;;;25806:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25887:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25939:32;;;;;;;;;;;;;;;;;25633:346;;;:::o;6055:136::-;6113:7;6140:43;6144:1;6147;6140:43;;;;;;;;;;;;;;;;;:3;:43::i;6945:471::-;7003:7;7248:6;7244:47;;-1:-1:-1;7278:1:0;7271:8;;7244:47;7315:5;;;7319:1;7315;:5;:1;7339:5;;;;;:10;7331:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7892:132;7950:7;7977:39;7981:1;7984;7977:39;;;;;;;;;;;;;;;;;:3;:39::i;24067:378::-;24151:21;;;24143:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24221:49;24250:1;24254:7;24263:6;24221:20;:49::i;:::-;24298:12;;:24;;24315:6;24298:16;:24::i;:::-;24283:12;:39;24354:18;;;:9;:18;;;;;;;;;;;:30;;24377:6;24354:22;:30::i;:::-;24333:18;;;:9;:18;;;;;;;;;;;:51;;;;24400:37;;;;;;;24333:18;;:9;;24400:37;;;;;;;;;;24067:378;;:::o;23247:539::-;23353:20;;;23345:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23434:23;;;23426:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23510:47;23531:6;23539:9;23550:6;23510:20;:47::i;:::-;23590:71;23612:6;23590:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;23570:17;;;;:9;:17;;;;;;;;;;;:91;;;;23695:20;;;;;;;:32;;23720:6;23695:24;:32::i;:::-;23672:20;;;;:9;:20;;;;;;;;;;;;:55;;;;23743:35;;;;;;;23672:20;;23743:35;;;;;;;;;;;;;23247:539;;;:::o;6494:192::-;6580:7;6616:12;6608:6;;;;6600:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6652:5:0;;;6494:192::o;27761:177::-;27871:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27894:23;27871:58;;;27844:86;;27864:5;;27844:19;:86::i;:::-;27761:177;;;:::o;27946:205::-;28074:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28097:27;28074:68;;;28047:96;;28067:5;;28047:19;:96::i;:::-;27946:205;;;;:::o;8520:278::-;8606:7;8641:12;8634:5;8626:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8665:9;8681:1;8677;:5;;;;;;;8520:278;-1:-1:-1;;;;;8520:278:0:o;30066:761::-;30490:23;30516:69;30544:4;30516:69;;;;;;;;;;;;;;;;;30524:5;30516:27;;;;:69;;;;;:::i;:::-;30600:17;;30490:95;;-1:-1:-1;30600:21:0;30596:224;;30742:10;30731:30;;;;;;;;;;;;;;;-1:-1:-1;30731:30:0;30723:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13735:196;13838:12;13870:53;13893:6;13901:4;13907:1;13910:12;15242;15275:18;15286:6;15275:10;:18::i;:::-;15267:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15401:12;15415:23;15442:6;:11;;15462:8;15473:4;15442:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15400:78;;;;15493:7;15489:595;;;15524:10;-1:-1:-1;15517:17:0;;-1:-1:-1;15517:17:0;15489:595;15638:17;;:21;15634:439;;15901:10;15895:17;15962:15;15949:10;15945:2;15941:19;15934:44;15849:148;16037:20;;;;;;;;;;;;;;;;;;;;16044:12;;16037:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10817:422;11184:20;11223:8;;;10817:422::o

Swarm Source

ipfs://2cedc543a346b0efa05eaceb9d53c35787c6ed079fcd3f6457ef0cff2a66937e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.