ETH Price: $3,749.79 (+19.23%)
Gas: 27 Gwei

Token

Locked GeoDB Coin Presale 2 (LGEO2)
 

Overview

Max Total Supply

40,280.60858772861492768 LGEO2

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
OKX 3
Balance
7,200 LGEO2

Value
$0.00
0xa7efae728d2936e78bda97dc267687568dd593f3
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:
GeoPreSale2

Compiler Version
v0.6.11+commit.5ef660b1

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-17
*/

pragma solidity ^0.6.0;


// SPDX-License-Identifier: MIT
/**
 * @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;
    }
}

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

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

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

contract Withdrawable is Ownable {

    event EtherWithdrawn(
        address sender,
        uint amount
    );

    receive() external virtual payable {}

    // @dev: allows the owner to withdraw the eth that has been deposited in the contract
    function withdrawEth() external onlyOwner {
        address payable to = payable(msg.sender);
        uint bal;
        assembly {
            bal := selfbalance()
        }
        require(
            bal > 0, 
            "Withdrawable withdrawEth() - No ether balance in the contract"
        );
        (bool success, ) = to.call{value: bal}("");
        require(
            success,
            "Withdrawable withdrawEth() - Could not withdraw eth"
        );

        emit EtherWithdrawn(
            msg.sender,
            bal
        );
    }
}

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

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


abstract contract LockedERC20 is ERC20Burnable {
    // @dev the transfer method burns the locked tokens and sends
    // an equivalent amount of GeoTokens to the desired address
    function transfer(address,uint) public override returns (bool) {
        revert("Disallowed method");
    }

    function approve(address , uint256 ) public virtual override returns (bool) {
        revert("Disallowed method");
    }

    function transferFrom(address,address,uint256 ) public override returns (bool) {
        revert("Disallowed method");
    }

    function increaseAllowance(address,uint256) public override returns (bool) {
        revert("Disallowed method");
    }

    function decreaseAllowance(address,uint256) public override returns (bool) {
        revert("Disallowed method");
    }

    function burn(uint256) public override {
        revert("Disallowed method");
    }

    function burnFrom(address,uint256) public override {
        revert("Disallowed method");
    }
}

/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of {IERC777} tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an {IERC777} token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * {IERC165} interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a {ManagerChanged} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See {setManager}.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as ``account``'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See {interfaceHash} to learn how these are created.
     *
     * Emits an {InterfaceImplementerSet} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement {IERC1820Implementer} and return true when
     * queried for support, unless `implementer` is the caller. See
     * {IERC1820Implementer-canImplementInterfaceForAddress}.
     */
    function setInterfaceImplementer(address account, bytes32 interfaceHash, address implementer) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP].
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     *  @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     *  @param account Address of the contract for which to update the cache.
     *  @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not.
     *  If the result is not cached a direct lookup on the contract address is performed.
     *  If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     *  {updateERC165Cache} with the contract address.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     *  @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache.
     *  @param account Address of the contract to check.
     *  @param interfaceId ERC165 interface to check.
     *  @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);

    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);
}

abstract contract ERC777Receiver is IERC777Recipient {

    // Needed constants to accept ERC777 tokens in deposit
    IERC1820Registry constant private _erc1820 = // See EIP1820
        IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);
    bytes32 constant private TOKENS_RECIPIENT_INTERFACE_HASH = // See EIP777
        keccak256("ERC777TokensRecipient");

    constructor() public {
        // Register as a token receiver
        _erc1820.setInterfaceImplementer(
            address(this), 
            TOKENS_RECIPIENT_INTERFACE_HASH, 
            address(this)
        );
    }

    address private token;

    //  @dev: This hook is called when the contract receives GeoTokens.
    //  The contract can only receive GeoTokens from the owner
    function tokensReceived(
        address /*operator*/,
        address from,
        address /*to*/,
        uint256 ,
        bytes calldata /*userData*/,
        bytes calldata /*operatorData*/
    ) external override {
        require(msg.sender == getToken(), "GeoPreSale.tokensReceived() - Wrong token");
        require(from == getOwner(), "GeoPreSale.tokensReceived() - Only owner");
    }

    function getOwner() virtual public view returns(address);

    function getToken() virtual public view returns(address);
}

interface IWhitelist {
    function addressIsWhitelisted(address addr) external view returns (bool);
}

contract GeoPreSale2 is LockedERC20, ERC777Receiver, Withdrawable {
    using SafeMath for uint;

    IWhitelist private presaleStageOne;
    address private token;

    uint public price;
    uint public whitelistStageStartTimestamp;
    uint public whitelistStageTokensForSale;
    uint public openStageStartTimestamp;
    uint public openStageEndTimestamp;
    uint public openStageTokensForSale;
    uint public vestingTimestamp;

    uint public minCap;
    uint public maxCap;

    mapping(address => uint) public participants;

    event RemainingGeoTokensWithdrawn(
        address sender,
        uint amount
    );

    event UnlockedGeoTokens(
        address indexed sender,
        uint amount
    );

    event PurchasedGeoTokens(
        address indexed sender,
        uint ethAmount,
        uint geoAmount,
        uint returnedEth
    );

    constructor(
        uint _price,
        uint _whitelistStageStartTimestamp,
        uint _whitelistStageTokensForSale,
        uint _openStageStartTimestamp,
        uint _openStageEndTimestamp,
        uint _openStageTokensForSale,
        uint _vestingTimestamp,
        uint _minCap,
        uint _maxCap,
        address _presaleStageOne, 
        address _token
    ) ERC20(erc20initName(), erc20initSymbol()) public {
        price = _price;
        whitelistStageStartTimestamp = _whitelistStageStartTimestamp;
        whitelistStageTokensForSale = _whitelistStageTokensForSale;
        openStageStartTimestamp = _openStageStartTimestamp;
        openStageEndTimestamp = _openStageEndTimestamp;
        openStageTokensForSale = _openStageTokensForSale;
        vestingTimestamp = _vestingTimestamp;
        minCap = _minCap;
        maxCap = _maxCap;
        presaleStageOne = IWhitelist(_presaleStageOne);
        token = _token;
    }

    fallback() external {
        revert("GeoPreSale2 - Fallback function called");
    }

    receive() external payable override {
        swapEtherForGeo();
    }

    function erc20initName() private pure returns (string memory name) {
        name = "Locked GeoDB Coin Presale 2";
    }

    function erc20initSymbol() private pure returns (string memory symbol) {
        symbol =  "LGEO2";
    }

    function withdrawGeo() external onlyOwner {
        require(
            openStageIsOver(), 
            "GeoPreSale2 withdrawGeo - Could not withdraw geo, sale is active"
        );

        // The total amount of locked tokens can be known by ERC20.totalSupply(),
        // as LGEO2 are minted only when eth is deposited 
        // and burned when the unlock period is gone
        IERC20 _token = IERC20(getToken());
        uint remainingTokens = _token.balanceOf(address(this)).sub(ERC20.totalSupply());
        _token.transfer(msg.sender, remainingTokens);

        emit RemainingGeoTokensWithdrawn(
            msg.sender,
            remainingTokens
        );
    }

    function setPrice(uint _price) external onlyOwner {
        require(_price > 0, "GeoPreSale2.setPrice - Price cannot be 0");
        price = _price;
    }

    function setWhitelistStageStartTimestamp(uint timestamp) external onlyOwner {
        require(
            timestamp > block.timestamp, 
            "GeoPreSale2.setWhitelistStageStartTimestamp - Timestamp must be in the future"
        );
        whitelistStageStartTimestamp = timestamp;
    }

    function setWhitelistStageTokensForSale(uint tokens) external onlyOwner {
        require(
            tokens > 0, 
            "GeoPreSale2.setWhitelistStageTokensForSale - Tokens cannot be 0"
        );
        whitelistStageTokensForSale = tokens;
    }

    function setOpenStageStartTimestamp(uint timestamp) external onlyOwner {
        require(
            timestamp > block.timestamp,
            "GeoPreSale2.setOpenStageStartTimestamp - Timestamp must be in the future"
        );
        openStageStartTimestamp = timestamp;
    }

    function setOpenStageEndTimestamp(uint timestamp) external onlyOwner {
        require(
            timestamp > block.timestamp,
            "GeoPreSale2.setOpenStageEndTimestamp - Timestamp must be in the future"
        );
        openStageEndTimestamp = timestamp;
    }

    function setOpenStageTokensForSale(uint tokens) external onlyOwner {
        require(
            tokens > 0,
            "GeoPreSale2.setOpenStageTokensForSale - Tokens cannot be 0"
        );
        openStageTokensForSale = tokens;
    }

    function setVestingTimestamp(uint timestamp) external onlyOwner {
        require(
            timestamp > block.timestamp,
            "GeoPreSale2.setVestingTimestamp - Timestamp must be in the future"
        );
        vestingTimestamp = timestamp;
    }

    function setPresaleStageOne(address addr) external onlyOwner {
        require(
            addr != address(0), 
            "GeoPreSale2.setPresaleStageOne - Cannot set to the 0x0 address"
        );
        presaleStageOne = IWhitelist(addr);
    }

    function setToken(address addr) external onlyOwner {
        require(
            addr != address(0), 
            "GeoPreSale2.setToken - Cannot set to the 0x0 address"
        );
        token = addr;
    }

    function unlockTokens() external returns (bool) {
        require(
            now > vestingTimestamp, 
            "GeoPreSale2 unlockTokens() - Tokens are yet locked"
        );
        uint amount = ERC20.balanceOf(msg.sender);
        require(
            amount > 0, 
            "GeoPreSale2 unlockTokens() - There are no tokens to unlock"
        );
        ERC20._burn(msg.sender, amount);
        IERC20(getToken()).transfer(msg.sender, amount);

        emit UnlockedGeoTokens(
            msg.sender,
            amount
        );
        return true;
    }

    function swapEtherForGeo() public payable returns(bool) {
        bool whitelistStageIsStarted = whitelistStageIsStarted();
        bool openStageIsStarted = openStageIsStarted();
        require(
            openStageIsStarted || 
                (whitelistStageIsStarted && presaleStageOne.addressIsWhitelisted(msg.sender)),
            "GeoPreSale2 swapEtherForGeo - Sale has not started yet"
        );
        require(
            !openStageIsOver(), 
            "GeoPreSale2 swapEtherForGeo - GeoPreSale swapEtherForGeo - Sale is over"
        );

        uint currentPurchasedAmount = participants[msg.sender];
        uint desiredPurchaseAmount = currentPurchasedAmount.add(msg.value);

        require(
            desiredPurchaseAmount >= minCap, 
            "GeoPreSale swapEtherForGeo() - Ether amount is under min cap"
        );


        uint _price = price; // GEO-ETH price. Used in local variable to save storage reads
        uint ethAmount = msg.value; // Amount of wei that will be spent and exchanged for GeoTokens
        uint returnedEth; // Amount of wei that will be returned to sender
        uint geoAmount; // Amount of tokens that the caller will acquire
        uint _maxCap = maxCap; // Maximum amount of wei that the user can deposit in the contract

        // If user is about to buy more than cap
        if(desiredPurchaseAmount > _maxCap) { // Then cap him and return the rest
            ethAmount = _maxCap.sub(currentPurchasedAmount);
            returnedEth = msg.value.sub(ethAmount);
        }

        uint availableGeosToPurchase;

        if(openStageIsStarted) { // Enter whitelist stage
            uint _whitelistStageTokensForSale = whitelistStageTokensForSale;
            if(_whitelistStageTokensForSale > 0) {
                openStageTokensForSale = openStageTokensForSale.add(_whitelistStageTokensForSale);
                whitelistStageTokensForSale = 0;
            }
            availableGeosToPurchase = openStageTokensForSale;
            require(
                availableGeosToPurchase > 0, 
                "GeoPreSale2 swapEtherForGeo - Tokens sold out"
            );
        } else { // Enter open stage
            availableGeosToPurchase = whitelistStageTokensForSale;
            require(
                availableGeosToPurchase > 0, 
                "GeoPreSale2 swapEtherForGeo - Whitelist tokens have sold out"
            );
        }


        geoAmount = _price.mul(ethAmount); // Amount of geos purchased given the price and ethers attached. GEO = ETH * (P[GEO/ETH])

        if(geoAmount > availableGeosToPurchase) { // If amount of geos that can be purchased is higher than what is available in the contract then
            geoAmount = availableGeosToPurchase; // make the purchased amount equal to what is available. Dust will be given for free
            ethAmount = geoAmount.div(_price); // Update the amount of eth that will be used to purchase geos
            returnedEth = msg.value.sub(ethAmount); // return the rest of eth that is remaining after purchasing the available geotokens
        }

        ERC20._mint(msg.sender, geoAmount); // Mint pegged tokens

        if(openStageIsStarted) {
            openStageTokensForSale = availableGeosToPurchase.sub(geoAmount);
        } else {
            whitelistStageTokensForSale = availableGeosToPurchase.sub(geoAmount);
        }
        
        participants[msg.sender] = currentPurchasedAmount.add(ethAmount); // Update ether spent by the address

        // If ether must be returned
        if(returnedEth > 0) {
            address payable sender = payable(msg.sender);
            (bool success, ) = sender.call{value: returnedEth}("");
            require(
                success, 
                "GeoPreSale swapEtherForGeo - Could not send eth back"
            );
        }

        // When the call has succeeded, emit events
        emit PurchasedGeoTokens(
            msg.sender,
            ethAmount,
            geoAmount,
            returnedEth
        );

        return true;
    }

    function getToken() public view override returns (address) {
        return token;
    }

    function getOwner() public view override returns (address) {
        return Ownable.owner();
    }

    function whitelistStageIsStarted() public view returns (bool) {
        return block.timestamp > whitelistStageStartTimestamp;
    }

    function openStageIsStarted() public view returns (bool) {
        return block.timestamp > openStageStartTimestamp;   
    }

    function openStageIsOver() public view returns (bool) {
        return block.timestamp > openStageEndTimestamp;
    }

    function getPurchasedAmount(address addr) public view returns (uint) {
        return participants[addr];
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_whitelistStageStartTimestamp","type":"uint256"},{"internalType":"uint256","name":"_whitelistStageTokensForSale","type":"uint256"},{"internalType":"uint256","name":"_openStageStartTimestamp","type":"uint256"},{"internalType":"uint256","name":"_openStageEndTimestamp","type":"uint256"},{"internalType":"uint256","name":"_openStageTokensForSale","type":"uint256"},{"internalType":"uint256","name":"_vestingTimestamp","type":"uint256"},{"internalType":"uint256","name":"_minCap","type":"uint256"},{"internalType":"uint256","name":"_maxCap","type":"uint256"},{"internalType":"address","name":"_presaleStageOne","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EtherWithdrawn","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"geoAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"returnedEth","type":"uint256"}],"name":"PurchasedGeoTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RemainingGeoTokensWithdrawn","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UnlockedGeoTokens","type":"event"},{"stateMutability":"nonpayable","type":"fallback"},{"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":"","type":"address"},{"internalType":"uint256","name":"","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getPurchasedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openStageEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openStageIsOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openStageIsStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openStageStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openStageTokensForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"participants","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setOpenStageEndTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setOpenStageStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"setOpenStageTokensForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setPresaleStageOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setVestingTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setWhitelistStageStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"setWhitelistStageTokensForSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEtherForGeo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"tokensReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","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":[],"name":"unlockTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStageIsStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStageStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStageTokensForSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawGeo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620046013803806200460183398181016040526101608110156200003857600080fd5b810190808051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050620000bd620003be60201b60201c565b620000cd620003fb60201b60201c565b8160039080519060200190620000e592919062000440565b508060049080519060200190620000fe92919062000440565b506012600560006101000a81548160ff021916908360ff1602179055505050731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d3060405180807f455243373737546f6b656e73526563697069656e74000000000000000000000081525060150190506040518091039020306040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019350505050600060405180830381600087803b1580156200022257600080fd5b505af115801562000237573d6000803e3d6000fd5b5050505060006200024d6200043860201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508a60098190555089600a8190555088600b8190555087600c8190555086600d8190555085600e8190555084600f81905550836010819055508260118190555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050505050505050620004ef565b60606040518060400160405280601b81526020017f4c6f636b65642047656f444220436f696e2050726573616c6520320000000000815250905090565b60606040518060400160405280600581526020017f4c47454f32000000000000000000000000000000000000000000000000000000815250905090565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200048357805160ff1916838001178555620004b4565b82800160010185558215620004b4579182015b82811115620004b357825182559160200191906001019062000496565b5b509050620004c39190620004c7565b5090565b620004ec91905b80821115620004e8576000816000905550600101620004ce565b5090565b90565b61410280620004ff6000396000f3fe6080604052600436106102805760003560e01c806379cc67901161014f578063a177b7a8116100c1578063e5db695a1161007a578063e5db695a14610f47578063ec1c103914610f72578063edc30d8b14610fad578063f2fde38b14610fe8578063f66d745714611039578063f968f4931461106457610290565b8063a177b7a814610d5f578063a457c2d714610d9a578063a9059cbb14610e0d578063b9e571ad14610e80578063bc301cab14610e97578063dd62ed3e14610ec257610290565b806395047d601161011357806395047d6014610be857806395d89b4114610c2357806396c9d17d14610cb357806397b2c57c14610cee578063a035b1fe14610d1d578063a0ef91df14610d4857610290565b806379cc679014610a6957806386ca87ce14610ac4578063893d20e814610aff5780638da5cb5b14610b5657806391b7f5ed14610bad57610290565b8063313ce567116101f357806363b6672f116101ac57806363b6672f14610946578063696d8c87146109715780636cd799be1461099357806370a08231146109be578063715018a614610a2357806376248b5c14610a3a57610290565b8063313ce567146107bc57806338a4a5f6146107ed578063395093511461081c5780633b6c44db1461088f5780633fa615b0146108e057806342966c681461090b57610290565b8063144fa6d711610245578063144fa6d7146105c657806318160ddd1461061757806321df0da71461064257806323548b8b1461069957806323b872dd146106c4578063242857621461075757610290565b806223de29146102ee5780630688c7eb1461043357806306fdde031461045e578063095ea7b3146104ee57806309e69ede1461056157610290565b366102905761028d611093565b50005b34801561029c57600080fd5b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613fbc6026913960400191505060405180910390fd5b3480156102fa57600080fd5b50610431600480360360c081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561039857600080fd5b8201836020820111156103aa57600080fd5b803590602001918460018302840111640100000000831117156103cc57600080fd5b9091929391929390803590602001906401000000008111156103ed57600080fd5b8201836020820111156103ff57600080fd5b8035906020019184600183028401116401000000008311171561042157600080fd5b9091929391929390505050611670565b005b34801561043f57600080fd5b50610448611790565b6040518082815260200191505060405180910390f35b34801561046a57600080fd5b50610473611796565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104b3578082015181840152602081019050610498565b50505050905090810190601f1680156104e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104fa57600080fd5b506105476004803603604081101561051157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611838565b604051808215151515815260200191505060405180910390f35b34801561056d57600080fd5b506105b06004803603602081101561058457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a8565b6040518082815260200191505060405180910390f35b3480156105d257600080fd5b50610615600480360360208110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c0565b005b34801561062357600080fd5b5061062c611a54565b6040518082815260200191505060405180910390f35b34801561064e57600080fd5b50610657611a5e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106a557600080fd5b506106ae611a88565b6040518082815260200191505060405180910390f35b3480156106d057600080fd5b5061073d600480360360608110156106e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a8e565b604051808215151515815260200191505060405180910390f35b34801561076357600080fd5b506107a66004803603602081101561077a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611afe565b6040518082815260200191505060405180910390f35b3480156107c857600080fd5b506107d1611b47565b604051808260ff1660ff16815260200191505060405180910390f35b3480156107f957600080fd5b50610802611b5e565b604051808215151515815260200191505060405180910390f35b34801561082857600080fd5b506108756004803603604081101561083f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b6a565b604051808215151515815260200191505060405180910390f35b34801561089b57600080fd5b506108de600480360360208110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bda565b005b3480156108ec57600080fd5b506108f5611d6e565b6040518082815260200191505060405180910390f35b34801561091757600080fd5b506109446004803603602081101561092e57600080fd5b8101908080359060200190929190505050611d74565b005b34801561095257600080fd5b5061095b611de2565b6040518082815260200191505060405180910390f35b610979611093565b604051808215151515815260200191505060405180910390f35b34801561099f57600080fd5b506109a8611de8565b6040518082815260200191505060405180910390f35b3480156109ca57600080fd5b50610a0d600480360360208110156109e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dee565b6040518082815260200191505060405180910390f35b348015610a2f57600080fd5b50610a38611e36565b005b348015610a4657600080fd5b50610a4f611fc1565b604051808215151515815260200191505060405180910390f35b348015610a7557600080fd5b50610ac260048036036040811015610a8c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fcd565b005b348015610ad057600080fd5b50610afd60048036036020811015610ae757600080fd5b810190808035906020019092919050505061203b565b005b348015610b0b57600080fd5b50610b14612168565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b6257600080fd5b50610b6b612177565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bb957600080fd5b50610be660048036036020811015610bd057600080fd5b81019080803590602001909291905050506121a1565b005b348015610bf457600080fd5b50610c2160048036036020811015610c0b57600080fd5b81019080803590602001909291905050506122ce565b005b348015610c2f57600080fd5b50610c386123fa565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c78578082015181840152602081019050610c5d565b50505050905090810190601f168015610ca55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610cbf57600080fd5b50610cec60048036036020811015610cd657600080fd5b810190808035906020019092919050505061249c565b005b348015610cfa57600080fd5b50610d036125c8565b604051808215151515815260200191505060405180910390f35b348015610d2957600080fd5b50610d326125d4565b6040518082815260200191505060405180910390f35b348015610d5457600080fd5b50610d5d6125da565b005b348015610d6b57600080fd5b50610d9860048036036020811015610d8257600080fd5b8101908080359060200190929190505050612836565b005b348015610da657600080fd5b50610df360048036036040811015610dbd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612962565b604051808215151515815260200191505060405180910390f35b348015610e1957600080fd5b50610e6660048036036040811015610e3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506129d2565b604051808215151515815260200191505060405180910390f35b348015610e8c57600080fd5b50610e95612a42565b005b348015610ea357600080fd5b50610eac612d7c565b6040518082815260200191505060405180910390f35b348015610ece57600080fd5b50610f3160048036036040811015610ee557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d82565b6040518082815260200191505060405180910390f35b348015610f5357600080fd5b50610f5c612e09565b6040518082815260200191505060405180910390f35b348015610f7e57600080fd5b50610fab60048036036020811015610f9557600080fd5b8101908080359060200190929190505050612e0f565b005b348015610fb957600080fd5b50610fe660048036036020811015610fd057600080fd5b8101908080359060200190929190505050612f3b565b005b348015610ff457600080fd5b506110376004803603602081101561100b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613068565b005b34801561104557600080fd5b5061104e613278565b6040518082815260200191505060405180910390f35b34801561107057600080fd5b5061107961327e565b604051808215151515815260200191505060405180910390f35b60008061109e611b5e565b905060006110aa611fc1565b9050808061119757508180156111965750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385d33002336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561115a57600080fd5b505afa15801561116e573d6000803e3d6000fd5b505050506040513d602081101561118457600080fd5b81019080805190602001909291905050505b5b6111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806140976036913960400191505060405180910390fd5b6111f46125c8565b1561124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526047815260200180613bfc6047913960600191505060405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006112a3348361346a90919063ffffffff16565b9050601054811015611300576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180613fe2603c913960400191505060405180910390fd5b60006009549050600034905060008060006011549050808611156113495761133187826134f290919063ffffffff16565b935061134684346134f290919063ffffffff16565b92505b600088156113e9576000600b54905060008111156113855761137681600e5461346a90919063ffffffff16565b600e819055506000600b819055505b600e549150600082116113e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613dc6602d913960400191505060405180910390fd5b50611448565b600b54905060008111611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180613f2b603c913960400191505060405180910390fd5b5b61145b858761353c90919063ffffffff16565b9250808311156114935780925061147b86846135c290919063ffffffff16565b945061149085346134f290919063ffffffff16565b93505b61149d338461360c565b88156114c1576114b683826134f290919063ffffffff16565b600e819055506114db565b6114d483826134f290919063ffffffff16565b600b819055505b6114ee858961346a90919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600084111561160157600033905060008173ffffffffffffffffffffffffffffffffffffffff168660405180600001905060006040518083038185875af1925050503d806000811461159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b50509050806115fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180613e9c6034913960400191505060405180910390fd5b50505b3373ffffffffffffffffffffffffffffffffffffffff167f799f060871d6f61d08d79c9a87c402a8b004abed7258ca3fc95ff08a445b961486858760405180848152602001838152602001828152602001935050505060405180910390a260019a505050505050505050505090565b611678611a5e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613f026029913960400191505060405180910390fd5b611703612168565b73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613b936028913960400191505060405180910390fd5b5050505050505050565b600e5481565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b5050505050905090565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b60126020528060005260406000206000915090505481565b6118c86137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180613f886034913960400191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900460ff16905090565b6000600a544211905090565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b611be26137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613ca6603e913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b600b5481565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e3e6137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c544211905090565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b6120436137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000811161215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a81526020018061401e603a913960400191505060405180910390fd5b80600e8190555050565b6000612172612177565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121a96137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600081116122c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613d9e6028913960400191505060405180910390fd5b8060098190555050565b6122d66137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612398576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b4281116123f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d815260200180613d51604d913960600191505060405180910390fd5b80600a8190555050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124925780601f1061246757610100808354040283529160200191612492565b820191906000526020600020905b81548152906001019060200180831161247557829003601f168201915b5050505050905090565b6124a46137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612566576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b4281116125be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526041815260200180613bbb6041913960600191505060405180910390fd5b80600f8190555050565b6000600d544211905090565b60095481565b6125e26137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000339050600047905060008111612707576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180613c69603d913960400191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612767576040519150601f19603f3d011682016040523d82523d6000602084013e61276c565b606091505b50509050806127c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d1e6033913960400191505060405180910390fd5b7f06097061aeda806b5e9cb4133d9899f332ff0913956567fc0f7ea15e3d19947c3383604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b61283e6137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b428111612958576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526046815260200180613b2b6046913960600191505060405180910390fd5b80600d8190555050565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b612a4a6137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612b146125c8565b612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613df36040913960400191505060405180910390fd5b6000612b73611a5e565b90506000612c48612b82611a54565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bff57600080fd5b505afa158015612c13573d6000803e3d6000fd5b505050506040513d6020811015612c2957600080fd5b81019080805190602001909291905050506134f290919063ffffffff16565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612cd157600080fd5b505af1158015612ce5573d6000803e3d6000fd5b505050506040513d6020811015612cfb57600080fd5b8101908080519060200190929190505050507f791013eaaf7ebdbe02b61150988f0d18ba417cb22b12410743381c4fc71cca2e3382604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b612e176137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ed9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b428111612f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526048815260200180613e336048913960600191505060405180910390fd5b80600c8190555050565b612f436137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613005576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000811161305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180614058603f913960400191505060405180910390fd5b80600b8190555050565b6130706137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613c436026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000600f5442116132da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613ed06032913960400191505060405180910390fd5b60006132e533611dee565b905060008111613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613ce4603a913960400191505060405180910390fd5b61334a33826137db565b613352611a5e565b73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156133d857600080fd5b505af11580156133ec573d6000803e3d6000fd5b505050506040513d602081101561340257600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff167f959a9f7555440f2a868a490d47c69cb51f2874e8d40415ecea52f86bfd041d13826040518082815260200191505060405180910390a2600191505090565b6000808284019050838110156134e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061353483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061399f565b905092915050565b60008083141561354f57600090506135bc565b600082840290508284828161356057fe5b04146135b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e7b6021913960400191505060405180910390fd5b809150505b92915050565b600061360483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a5f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6136bb60008383613b25565b6136d08160025461346a90919063ffffffff16565b600281905550613727816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f676021913960400191505060405180910390fd5b61386d82600083613b25565b6138d881604051806060016040528060228152602001613b71602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461399f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061392f816002546134f290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290613a4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a115780820151818401526020810190506139f6565b50505050905090810190601f168015613a3e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290613b0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ad0578082015181840152602081019050613ab5565b50505050905090810190601f168015613afd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613b1757fe5b049050809150509392505050565b50505056fe47656f50726553616c65322e7365744f70656e5374616765456e6454696d657374616d70202d2054696d657374616d70206d75737420626520696e207468652066757475726545524332303a206275726e20616d6f756e7420657863656564732062616c616e636547656f50726553616c652e746f6b656e7352656365697665642829202d204f6e6c79206f776e657247656f50726553616c65322e73657456657374696e6754696d657374616d70202d2054696d657374616d70206d75737420626520696e207468652066757475726547656f50726553616c653220737761704574686572466f7247656f202d2047656f50726553616c6520737761704574686572466f7247656f202d2053616c65206973206f7665724f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373576974686472617761626c652077697468647261774574682829202d204e6f2065746865722062616c616e636520696e2074686520636f6e747261637447656f50726553616c65322e73657450726573616c6553746167654f6e65202d2043616e6e6f742073657420746f2074686520307830206164647265737347656f50726553616c653220756e6c6f636b546f6b656e732829202d20546865726520617265206e6f20746f6b656e7320746f20756e6c6f636b576974686472617761626c652077697468647261774574682829202d20436f756c64206e6f742077697468647261772065746847656f50726553616c65322e73657457686974656c6973745374616765537461727454696d657374616d70202d2054696d657374616d70206d75737420626520696e207468652066757475726547656f50726553616c65322e7365745072696365202d2050726963652063616e6e6f74206265203047656f50726553616c653220737761704574686572466f7247656f202d20546f6b656e7320736f6c64206f757447656f50726553616c653220776974686472617747656f202d20436f756c64206e6f742077697468647261772067656f2c2073616c652069732061637469766547656f50726553616c65322e7365744f70656e5374616765537461727454696d657374616d70202d2054696d657374616d70206d75737420626520696e2074686520667574757265536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7747656f50726553616c6520737761704574686572466f7247656f202d20436f756c64206e6f742073656e6420657468206261636b47656f50726553616c653220756e6c6f636b546f6b656e732829202d20546f6b656e732061726520796574206c6f636b656447656f50726553616c652e746f6b656e7352656365697665642829202d2057726f6e6720746f6b656e47656f50726553616c653220737761704574686572466f7247656f202d2057686974656c69737420746f6b656e73206861766520736f6c64206f757445524332303a206275726e2066726f6d20746865207a65726f206164647265737347656f50726553616c65322e736574546f6b656e202d2043616e6e6f742073657420746f2074686520307830206164647265737347656f50726553616c6532202d2046616c6c6261636b2066756e6374696f6e2063616c6c656447656f50726553616c6520737761704574686572466f7247656f2829202d20457468657220616d6f756e7420697320756e646572206d696e2063617047656f50726553616c65322e7365744f70656e5374616765546f6b656e73466f7253616c65202d20546f6b656e732063616e6e6f74206265203047656f50726553616c65322e73657457686974656c6973745374616765546f6b656e73466f7253616c65202d20546f6b656e732063616e6e6f74206265203047656f50726553616c653220737761704574686572466f7247656f202d2053616c6520686173206e6f74207374617274656420796574a26469706673582212209f1a990317665c2e464d76d238a44b3dde4509c854534fa2136a2290882fcb4564736f6c634300060b00330000000000000000000000000000000000000000000000000000000000000578000000000000000000000000000000000000000000000000000000005f3bc2c000000000000000000000000000000000000000000000000000000000000222e0000000000000000000000000000000000000000000000000000000005f3bd0d0000000000000000000000000000000000000000000000000000000005f3e73d00000000000000000000000000000000000000000000000000000000000088b80000000000000000000000000000000000000000000000000000000005fb51ad000000000000000000000000000000000000000000000000002c68af0bb1400000000000000000000000000000000000000000000000000004563918244f400000000000000000000000000005199dae8a7fc33b7f25c24ff8930c6432703835f000000000000000000000000147faf8de9d8d8daae129b187f0d02d819126750

Deployed Bytecode

0x6080604052600436106102805760003560e01c806379cc67901161014f578063a177b7a8116100c1578063e5db695a1161007a578063e5db695a14610f47578063ec1c103914610f72578063edc30d8b14610fad578063f2fde38b14610fe8578063f66d745714611039578063f968f4931461106457610290565b8063a177b7a814610d5f578063a457c2d714610d9a578063a9059cbb14610e0d578063b9e571ad14610e80578063bc301cab14610e97578063dd62ed3e14610ec257610290565b806395047d601161011357806395047d6014610be857806395d89b4114610c2357806396c9d17d14610cb357806397b2c57c14610cee578063a035b1fe14610d1d578063a0ef91df14610d4857610290565b806379cc679014610a6957806386ca87ce14610ac4578063893d20e814610aff5780638da5cb5b14610b5657806391b7f5ed14610bad57610290565b8063313ce567116101f357806363b6672f116101ac57806363b6672f14610946578063696d8c87146109715780636cd799be1461099357806370a08231146109be578063715018a614610a2357806376248b5c14610a3a57610290565b8063313ce567146107bc57806338a4a5f6146107ed578063395093511461081c5780633b6c44db1461088f5780633fa615b0146108e057806342966c681461090b57610290565b8063144fa6d711610245578063144fa6d7146105c657806318160ddd1461061757806321df0da71461064257806323548b8b1461069957806323b872dd146106c4578063242857621461075757610290565b806223de29146102ee5780630688c7eb1461043357806306fdde031461045e578063095ea7b3146104ee57806309e69ede1461056157610290565b366102905761028d611093565b50005b34801561029c57600080fd5b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613fbc6026913960400191505060405180910390fd5b3480156102fa57600080fd5b50610431600480360360c081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561039857600080fd5b8201836020820111156103aa57600080fd5b803590602001918460018302840111640100000000831117156103cc57600080fd5b9091929391929390803590602001906401000000008111156103ed57600080fd5b8201836020820111156103ff57600080fd5b8035906020019184600183028401116401000000008311171561042157600080fd5b9091929391929390505050611670565b005b34801561043f57600080fd5b50610448611790565b6040518082815260200191505060405180910390f35b34801561046a57600080fd5b50610473611796565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104b3578082015181840152602081019050610498565b50505050905090810190601f1680156104e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104fa57600080fd5b506105476004803603604081101561051157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611838565b604051808215151515815260200191505060405180910390f35b34801561056d57600080fd5b506105b06004803603602081101561058457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a8565b6040518082815260200191505060405180910390f35b3480156105d257600080fd5b50610615600480360360208110156105e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118c0565b005b34801561062357600080fd5b5061062c611a54565b6040518082815260200191505060405180910390f35b34801561064e57600080fd5b50610657611a5e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106a557600080fd5b506106ae611a88565b6040518082815260200191505060405180910390f35b3480156106d057600080fd5b5061073d600480360360608110156106e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a8e565b604051808215151515815260200191505060405180910390f35b34801561076357600080fd5b506107a66004803603602081101561077a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611afe565b6040518082815260200191505060405180910390f35b3480156107c857600080fd5b506107d1611b47565b604051808260ff1660ff16815260200191505060405180910390f35b3480156107f957600080fd5b50610802611b5e565b604051808215151515815260200191505060405180910390f35b34801561082857600080fd5b506108756004803603604081101561083f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b6a565b604051808215151515815260200191505060405180910390f35b34801561089b57600080fd5b506108de600480360360208110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bda565b005b3480156108ec57600080fd5b506108f5611d6e565b6040518082815260200191505060405180910390f35b34801561091757600080fd5b506109446004803603602081101561092e57600080fd5b8101908080359060200190929190505050611d74565b005b34801561095257600080fd5b5061095b611de2565b6040518082815260200191505060405180910390f35b610979611093565b604051808215151515815260200191505060405180910390f35b34801561099f57600080fd5b506109a8611de8565b6040518082815260200191505060405180910390f35b3480156109ca57600080fd5b50610a0d600480360360208110156109e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611dee565b6040518082815260200191505060405180910390f35b348015610a2f57600080fd5b50610a38611e36565b005b348015610a4657600080fd5b50610a4f611fc1565b604051808215151515815260200191505060405180910390f35b348015610a7557600080fd5b50610ac260048036036040811015610a8c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fcd565b005b348015610ad057600080fd5b50610afd60048036036020811015610ae757600080fd5b810190808035906020019092919050505061203b565b005b348015610b0b57600080fd5b50610b14612168565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b6257600080fd5b50610b6b612177565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bb957600080fd5b50610be660048036036020811015610bd057600080fd5b81019080803590602001909291905050506121a1565b005b348015610bf457600080fd5b50610c2160048036036020811015610c0b57600080fd5b81019080803590602001909291905050506122ce565b005b348015610c2f57600080fd5b50610c386123fa565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c78578082015181840152602081019050610c5d565b50505050905090810190601f168015610ca55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610cbf57600080fd5b50610cec60048036036020811015610cd657600080fd5b810190808035906020019092919050505061249c565b005b348015610cfa57600080fd5b50610d036125c8565b604051808215151515815260200191505060405180910390f35b348015610d2957600080fd5b50610d326125d4565b6040518082815260200191505060405180910390f35b348015610d5457600080fd5b50610d5d6125da565b005b348015610d6b57600080fd5b50610d9860048036036020811015610d8257600080fd5b8101908080359060200190929190505050612836565b005b348015610da657600080fd5b50610df360048036036040811015610dbd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612962565b604051808215151515815260200191505060405180910390f35b348015610e1957600080fd5b50610e6660048036036040811015610e3057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506129d2565b604051808215151515815260200191505060405180910390f35b348015610e8c57600080fd5b50610e95612a42565b005b348015610ea357600080fd5b50610eac612d7c565b6040518082815260200191505060405180910390f35b348015610ece57600080fd5b50610f3160048036036040811015610ee557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612d82565b6040518082815260200191505060405180910390f35b348015610f5357600080fd5b50610f5c612e09565b6040518082815260200191505060405180910390f35b348015610f7e57600080fd5b50610fab60048036036020811015610f9557600080fd5b8101908080359060200190929190505050612e0f565b005b348015610fb957600080fd5b50610fe660048036036020811015610fd057600080fd5b8101908080359060200190929190505050612f3b565b005b348015610ff457600080fd5b506110376004803603602081101561100b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613068565b005b34801561104557600080fd5b5061104e613278565b6040518082815260200191505060405180910390f35b34801561107057600080fd5b5061107961327e565b604051808215151515815260200191505060405180910390f35b60008061109e611b5e565b905060006110aa611fc1565b9050808061119757508180156111965750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166385d33002336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561115a57600080fd5b505afa15801561116e573d6000803e3d6000fd5b505050506040513d602081101561118457600080fd5b81019080805190602001909291905050505b5b6111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806140976036913960400191505060405180910390fd5b6111f46125c8565b1561124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526047815260200180613bfc6047913960600191505060405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006112a3348361346a90919063ffffffff16565b9050601054811015611300576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180613fe2603c913960400191505060405180910390fd5b60006009549050600034905060008060006011549050808611156113495761133187826134f290919063ffffffff16565b935061134684346134f290919063ffffffff16565b92505b600088156113e9576000600b54905060008111156113855761137681600e5461346a90919063ffffffff16565b600e819055506000600b819055505b600e549150600082116113e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613dc6602d913960400191505060405180910390fd5b50611448565b600b54905060008111611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603c815260200180613f2b603c913960400191505060405180910390fd5b5b61145b858761353c90919063ffffffff16565b9250808311156114935780925061147b86846135c290919063ffffffff16565b945061149085346134f290919063ffffffff16565b93505b61149d338461360c565b88156114c1576114b683826134f290919063ffffffff16565b600e819055506114db565b6114d483826134f290919063ffffffff16565b600b819055505b6114ee858961346a90919063ffffffff16565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600084111561160157600033905060008173ffffffffffffffffffffffffffffffffffffffff168660405180600001905060006040518083038185875af1925050503d806000811461159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b50509050806115fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180613e9c6034913960400191505060405180910390fd5b50505b3373ffffffffffffffffffffffffffffffffffffffff167f799f060871d6f61d08d79c9a87c402a8b004abed7258ca3fc95ff08a445b961486858760405180848152602001838152602001828152602001935050505060405180910390a260019a505050505050505050505090565b611678611a5e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613f026029913960400191505060405180910390fd5b611703612168565b73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613b936028913960400191505060405180910390fd5b5050505050505050565b600e5481565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b5050505050905090565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b60126020528060005260406000206000915090505481565b6118c86137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180613f886034913960400191505060405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560009054906101000a900460ff16905090565b6000600a544211905090565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b611be26137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ca4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613ca6603e913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60105481565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b600b5481565b600f5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e3e6137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c544211905090565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b6120436137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000811161215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a81526020018061401e603a913960400191505060405180910390fd5b80600e8190555050565b6000612172612177565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121a96137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600081116122c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613d9e6028913960400191505060405180910390fd5b8060098190555050565b6122d66137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612398576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b4281116123f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d815260200180613d51604d913960600191505060405180910390fd5b80600a8190555050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124925780601f1061246757610100808354040283529160200191612492565b820191906000526020600020905b81548152906001019060200180831161247557829003601f168201915b5050505050905090565b6124a46137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612566576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b4281116125be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526041815260200180613bbb6041913960600191505060405180910390fd5b80600f8190555050565b6000600d544211905090565b60095481565b6125e26137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146126a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000339050600047905060008111612707576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603d815260200180613c69603d913960400191505060405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114612767576040519150601f19603f3d011682016040523d82523d6000602084013e61276c565b606091505b50509050806127c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180613d1e6033913960400191505060405180910390fd5b7f06097061aeda806b5e9cb4133d9899f332ff0913956567fc0f7ea15e3d19947c3383604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b61283e6137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b428111612958576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526046815260200180613b2b6046913960600191505060405180910390fd5b80600d8190555050565b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b60006040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f446973616c6c6f776564206d6574686f6400000000000000000000000000000081525060200191505060405180910390fd5b612a4a6137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b0c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612b146125c8565b612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180613df36040913960400191505060405180910390fd5b6000612b73611a5e565b90506000612c48612b82611a54565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612bff57600080fd5b505afa158015612c13573d6000803e3d6000fd5b505050506040513d6020811015612c2957600080fd5b81019080805190602001909291905050506134f290919063ffffffff16565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612cd157600080fd5b505af1158015612ce5573d6000803e3d6000fd5b505050506040513d6020811015612cfb57600080fd5b8101908080519060200190929190505050507f791013eaaf7ebdbe02b61150988f0d18ba417cb22b12410743381c4fc71cca2e3382604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d5481565b612e176137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612ed9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b428111612f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526048815260200180613e336048913960600191505060405180910390fd5b80600c8190555050565b612f436137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613005576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000811161305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603f815260200180614058603f913960400191505060405180910390fd5b80600b8190555050565b6130706137d3565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613c436026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a5481565b6000600f5442116132da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180613ed06032913960400191505060405180910390fd5b60006132e533611dee565b905060008111613340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613ce4603a913960400191505060405180910390fd5b61334a33826137db565b613352611a5e565b73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156133d857600080fd5b505af11580156133ec573d6000803e3d6000fd5b505050506040513d602081101561340257600080fd5b8101908080519060200190929190505050503373ffffffffffffffffffffffffffffffffffffffff167f959a9f7555440f2a868a490d47c69cb51f2874e8d40415ecea52f86bfd041d13826040518082815260200191505060405180910390a2600191505090565b6000808284019050838110156134e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061353483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061399f565b905092915050565b60008083141561354f57600090506135bc565b600082840290508284828161356057fe5b04146135b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e7b6021913960400191505060405180910390fd5b809150505b92915050565b600061360483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a5f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6136bb60008383613b25565b6136d08160025461346a90919063ffffffff16565b600281905550613727816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461346a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f676021913960400191505060405180910390fd5b61386d82600083613b25565b6138d881604051806060016040528060228152602001613b71602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461399f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061392f816002546134f290919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290613a4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a115780820151818401526020810190506139f6565b50505050905090810190601f168015613a3e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290613b0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ad0578082015181840152602081019050613ab5565b50505050905090810190601f168015613afd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613b1757fe5b049050809150509392505050565b50505056fe47656f50726553616c65322e7365744f70656e5374616765456e6454696d657374616d70202d2054696d657374616d70206d75737420626520696e207468652066757475726545524332303a206275726e20616d6f756e7420657863656564732062616c616e636547656f50726553616c652e746f6b656e7352656365697665642829202d204f6e6c79206f776e657247656f50726553616c65322e73657456657374696e6754696d657374616d70202d2054696d657374616d70206d75737420626520696e207468652066757475726547656f50726553616c653220737761704574686572466f7247656f202d2047656f50726553616c6520737761704574686572466f7247656f202d2053616c65206973206f7665724f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373576974686472617761626c652077697468647261774574682829202d204e6f2065746865722062616c616e636520696e2074686520636f6e747261637447656f50726553616c65322e73657450726573616c6553746167654f6e65202d2043616e6e6f742073657420746f2074686520307830206164647265737347656f50726553616c653220756e6c6f636b546f6b656e732829202d20546865726520617265206e6f20746f6b656e7320746f20756e6c6f636b576974686472617761626c652077697468647261774574682829202d20436f756c64206e6f742077697468647261772065746847656f50726553616c65322e73657457686974656c6973745374616765537461727454696d657374616d70202d2054696d657374616d70206d75737420626520696e207468652066757475726547656f50726553616c65322e7365745072696365202d2050726963652063616e6e6f74206265203047656f50726553616c653220737761704574686572466f7247656f202d20546f6b656e7320736f6c64206f757447656f50726553616c653220776974686472617747656f202d20436f756c64206e6f742077697468647261772067656f2c2073616c652069732061637469766547656f50726553616c65322e7365744f70656e5374616765537461727454696d657374616d70202d2054696d657374616d70206d75737420626520696e2074686520667574757265536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7747656f50726553616c6520737761704574686572466f7247656f202d20436f756c64206e6f742073656e6420657468206261636b47656f50726553616c653220756e6c6f636b546f6b656e732829202d20546f6b656e732061726520796574206c6f636b656447656f50726553616c652e746f6b656e7352656365697665642829202d2057726f6e6720746f6b656e47656f50726553616c653220737761704574686572466f7247656f202d2057686974656c69737420746f6b656e73206861766520736f6c64206f757445524332303a206275726e2066726f6d20746865207a65726f206164647265737347656f50726553616c65322e736574546f6b656e202d2043616e6e6f742073657420746f2074686520307830206164647265737347656f50726553616c6532202d2046616c6c6261636b2066756e6374696f6e2063616c6c656447656f50726553616c6520737761704574686572466f7247656f2829202d20457468657220616d6f756e7420697320756e646572206d696e2063617047656f50726553616c65322e7365744f70656e5374616765546f6b656e73466f7253616c65202d20546f6b656e732063616e6e6f74206265203047656f50726553616c65322e73657457686974656c6973745374616765546f6b656e73466f7253616c65202d20546f6b656e732063616e6e6f74206265203047656f50726553616c653220737761704574686572466f7247656f202d2053616c6520686173206e6f74207374617274656420796574a26469706673582212209f1a990317665c2e464d76d238a44b3dde4509c854534fa2136a2290882fcb4564736f6c634300060b0033

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

0000000000000000000000000000000000000000000000000000000000000578000000000000000000000000000000000000000000000000000000005f3bc2c000000000000000000000000000000000000000000000000000000000000222e0000000000000000000000000000000000000000000000000000000005f3bd0d0000000000000000000000000000000000000000000000000000000005f3e73d00000000000000000000000000000000000000000000000000000000000088b80000000000000000000000000000000000000000000000000000000005fb51ad000000000000000000000000000000000000000000000000002c68af0bb1400000000000000000000000000000000000000000000000000004563918244f400000000000000000000000000005199dae8a7fc33b7f25c24ff8930c6432703835f000000000000000000000000147faf8de9d8d8daae129b187f0d02d819126750

-----Decoded View---------------
Arg [0] : _price (uint256): 1400
Arg [1] : _whitelistStageStartTimestamp (uint256): 1597752000
Arg [2] : _whitelistStageTokensForSale (uint256): 140000
Arg [3] : _openStageStartTimestamp (uint256): 1597755600
Arg [4] : _openStageEndTimestamp (uint256): 1597928400
Arg [5] : _openStageTokensForSale (uint256): 560000
Arg [6] : _vestingTimestamp (uint256): 1605704400
Arg [7] : _minCap (uint256): 200000000000000000
Arg [8] : _maxCap (uint256): 5000000000000000000
Arg [9] : _presaleStageOne (address): 0x5199daE8A7Fc33B7f25C24Ff8930C6432703835f
Arg [10] : _token (address): 0x147faF8De9d8D8DAAE129B187F0D02D819126750

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000578
Arg [1] : 000000000000000000000000000000000000000000000000000000005f3bc2c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000222e0
Arg [3] : 000000000000000000000000000000000000000000000000000000005f3bd0d0
Arg [4] : 000000000000000000000000000000000000000000000000000000005f3e73d0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000088b80
Arg [6] : 000000000000000000000000000000000000000000000000000000005fb51ad0
Arg [7] : 00000000000000000000000000000000000000000000000002c68af0bb140000
Arg [8] : 0000000000000000000000000000000000000000000000004563918244f40000
Arg [9] : 0000000000000000000000005199dae8a7fc33b7f25c24ff8930c6432703835f
Arg [10] : 000000000000000000000000147faf8de9d8d8daae129b187f0d02d819126750


Deployed Bytecode Sourcemap

38602:10802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40619:17;:15;:17::i;:::-;;38602:10802;;;;;;;;;;;;40508:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37951:406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38977:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20269:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30482:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39107:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43712:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21344:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48676:90;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39080:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30612:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;49286:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21196:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48882:134;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30745:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43448:256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39055:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31003:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38849:39;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44528:4140;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;39018:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21507:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;7909:148;;;;;;;;;;;;;:::i;:::-;;49024:127;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31096:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42922:246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48774:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7267:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41598:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41763:301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20471:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43176:264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49159:119;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38778:17;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8724:573;;;;;;;;;;;;;:::i;:::-;;42635:279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30874:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30365:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40897:693;;;;;;;;;;;;;:::i;:::-;;38895:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22077:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38937:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42342:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42072:262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8212:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38802:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43934:586;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44528:4140;44578:4;44595:28;44626:25;:23;:25::i;:::-;44595:56;;44662:23;44688:20;:18;:20::i;:::-;44662:46;;44741:18;:117;;;;44782:23;:75;;;;;44809:15;;;;;;;;;;;:36;;;44846:10;44809:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44782:75;44741:117;44719:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44974:17;:15;:17::i;:::-;44973:18;44951:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45104:27;45134:12;:24;45147:10;45134:24;;;;;;;;;;;;;;;;45104:54;;45169:26;45198:37;45225:9;45198:22;:26;;:37;;;;:::i;:::-;45169:66;;45295:6;;45270:21;:31;;45248:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45405:11;45419:5;;45405:19;;45498:14;45515:9;45498:26;;45599:16;45675:14;45749:12;45764:6;;45749:21;;45927:7;45903:21;:31;45900:199;;;45999:35;46011:22;45999:7;:11;;:35;;;;:::i;:::-;45987:47;;46063:24;46077:9;46063;:13;;:24;;;;:::i;:::-;46049:38;;45900:199;46111:28;46155:18;46152:839;;;46215:33;46251:27;;46215:63;;46327:1;46296:28;:32;46293:203;;;46374:56;46401:28;46374:22;;:26;;:56;;;;:::i;:::-;46349:22;:81;;;;46479:1;46449:27;:31;;;;46293:203;46536:22;;46510:48;;46625:1;46599:23;:27;46573:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46152:839;;;;46787:27;;46761:53;;46881:1;46855:23;:27;46829:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46152:839;47017:21;47028:9;47017:6;:10;;:21;;;;:::i;:::-;47005:33;;47156:23;47144:9;:35;47141:533;;;47305:23;47293:35;;47440:21;47454:6;47440:9;:13;;:21;;;;:::i;:::-;47428:33;;47553:24;47567:9;47553;:13;;:24;;;;:::i;:::-;47539:38;;47141:533;47686:34;47698:10;47710:9;47686:11;:34::i;:::-;47758:18;47755:214;;;47818:38;47846:9;47818:23;:27;;:38;;;;:::i;:::-;47793:22;:63;;;;47755:214;;;47919:38;47947:9;47919:23;:27;;:38;;;;:::i;:::-;47889:27;:68;;;;47755:214;48016:37;48043:9;48016:22;:26;;:37;;;;:::i;:::-;47989:12;:24;48002:10;47989:24;;;;;;;;;;;;;;;:64;;;;48158:1;48144:11;:15;48141:297;;;48176:22;48209:10;48176:44;;48236:12;48254:6;:11;;48273;48254:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48235:54;;;48330:7;48304:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48141:297;;;48541:10;48508:128;;;48566:9;48590;48614:11;48508:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48656:4;48649:11;;;;;;;;;;;;44528:4140;:::o;37951:406::-;38211:10;:8;:10::i;:::-;38197:24;;:10;:24;;;38189:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38294:10;:8;:10::i;:::-;38286:18;;:4;:18;;;38278:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37951:406;;;;;;;;:::o;38977:34::-;;;;:::o;20269:83::-;20306:13;20339:5;20332:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20269:83;:::o;30482:122::-;30552:4;30569:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39107:44;;;;;;;;;;;;;;;;;:::o;43712:214::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43812:1:::1;43796:18;;:4;:18;;;;43774:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43914:4;43906:5;;:12;;;;;;;;;;;;;;;;;;43712:214:::0;:::o;21344:100::-;21397:7;21424:12;;21417:19;;21344:100;:::o;48676:90::-;48726:7;48753:5;;;;;;;;;;;48746:12;;48676:90;:::o;39080:18::-;;;;:::o;30612:125::-;30685:4;30702:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49286:113;49349:4;49373:12;:18;49386:4;49373:18;;;;;;;;;;;;;;;;49366:25;;49286:113;;;:::o;21196:83::-;21237:5;21262:9;;;;;;;;;;;21255:16;;21196:83;:::o;48882:134::-;48938:4;48980:28;;48962:15;:46;48955:53;;48882:134;:::o;30745:121::-;30814:4;30831:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43448:256;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43558:1:::1;43542:18;;:4;:18;;;;43520:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43691:4;43662:15;;:34;;;;;;;;;;;;;;;;;;43448:256:::0;:::o;39055:18::-;;;;:::o;31003:85::-;31053:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38849:39;;;;:::o;39018:28::-;;;;:::o;21507:119::-;21573:7;21600:9;:18;21610:7;21600:18;;;;;;;;;;;;;;;;21593:25;;21507:119;;;:::o;7909:148::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8016:1:::1;7979:40;;8000:6;;;;;;;;;;;7979:40;;;;;;;;;;;;8047:1;8030:6;;:19;;;;;;;;;;;;;;;;;;7909:148::o:0;49024:127::-;49075:4;49117:23;;49099:15;:41;49092:48;;49024:127;:::o;31096:97::-;31158:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42922:246;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43031:1:::1;43022:6;:10;43000:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43154:6;43129:22;:31;;;;42922:246:::0;:::o;48774:100::-;48824:7;48851:15;:13;:15::i;:::-;48844:22;;48774:100;:::o;7267:79::-;7305:7;7332:6;;;;;;;;;;;7325:13;;7267:79;:::o;41598:157::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41676:1:::1;41667:6;:10;41659:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41741:6;41733:5;:14;;;;41598:157:::0;:::o;41763:301::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41884:15:::1;41872:9;:27;41850:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42047:9;42016:28;:40;;;;41763:301:::0;:::o;20471:87::-;20510:13;20543:7;20536:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20471:87;:::o;43176:264::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43285:15:::1;43273:9;:27;43251:142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43423:9;43404:16;:28;;;;43176:264:::0;:::o;49159:119::-;49207:4;49249:21;;49231:15;:39;49224:46;;49159:119;:::o;38778:17::-;;;;:::o;8724:573::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8777:18:::1;8806:10;8777:40;;8828:8;8878:13;8871:20;;8940:1;8934:3;:7;8912:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9043:12;9061:2;:7;;9076:3;9061:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9042:42;;;9117:7;9095:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9221:68;9250:10;9275:3;9221:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;7549:1;;;8724:573::o:0;42635:279::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42749:15:::1;42737:9;:27;42715:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42897:9;42873:21;:33;;;;42635:279:::0;:::o;30874:121::-;30943:4;30960:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30365:109;30422:4;30439:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40897:693;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40972:17:::1;:15;:17::i;:::-;40950:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41292:13;41315:10;:8;:10::i;:::-;41292:34;;41337:20;41360:56;41396:19;:17;:19::i;:::-;41360:6;:16;;;41385:4;41360:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;:35;;:56;;;;:::i;:::-;41337:79;;41427:6;:15;;;41443:10;41455:15;41427:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;41489:93;41531:10;41556:15;41489:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;7549:1;;40897:693::o:0;38895:35::-;;;;:::o;22077:151::-;22166:7;22193:11;:18;22205:5;22193:18;;;;;;;;;;;;;;;:27;22212:7;22193:27;;;;;;;;;;;;;;;;22186:34;;22077:151;;;;:::o;38937:33::-;;;;:::o;42342:285::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42458:15:::1;42446:9;:27;42424:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42610:9;42584:23;:35;;;;42342:285:::0;:::o;42072:262::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42186:1:::1;42177:6;:10;42155:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42320:6;42290:27;:36;;;;42072:262:::0;:::o;8212:244::-;7489:12;:10;:12::i;:::-;7479:22;;:6;;;;;;;;;;;:22;;;7471:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8321:1:::1;8301:22;;:8;:22;;;;8293:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8411:8;8382:38;;8403:6;;;;;;;;;;;8382:38;;;;;;;;;;;;8440:8;8431:6;;:17;;;;;;;;;;;;;;;;;;8212:244:::0;:::o;38802:40::-;;;;:::o;43934:586::-;43976:4;44021:16;;44015:3;:22;43993:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44127:11;44141:27;44157:10;44141:15;:27::i;:::-;44127:41;;44210:1;44201:6;:10;44179:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44309:31;44321:10;44333:6;44309:11;:31::i;:::-;44358:10;:8;:10::i;:::-;44351:27;;;44379:10;44391:6;44351:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44448:10;44416:74;;;44473:6;44416:74;;;;;;;;;;;;;;;;;;44508:4;44501:11;;;43934:586;:::o;902:181::-;960:7;980:9;996:1;992;:5;980:17;;1021:1;1016;:6;;1008:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1074:1;1067:8;;;902:181;;;;:::o;1366:136::-;1424:7;1451:43;1455:1;1458;1451:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1444:50;;1366:136;;;;:::o;2256:471::-;2314:7;2564:1;2559;:6;2555:47;;;2589:1;2582:8;;;;2555:47;2614:9;2630:1;2626;:5;2614:17;;2659:1;2654;2650;:5;;;;;;:10;2642:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2718:1;2711:8;;;2256:471;;;;;:::o;3203:132::-;3261:7;3288:39;3292:1;3295;3288:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3281:46;;3203:132;;;;:::o;26048:378::-;26151:1;26132:21;;:7;:21;;;;26124:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26202:49;26231:1;26235:7;26244:6;26202:20;:49::i;:::-;26279:24;26296:6;26279:12;;:16;;:24;;;;:::i;:::-;26264:12;:39;;;;26335:30;26358:6;26335:9;:18;26345:7;26335:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;26314:9;:18;26324:7;26314:18;;;;;;;;;;;;;;;:51;;;;26402:7;26381:37;;26398:1;26381:37;;;26411:6;26381:37;;;;;;;;;;;;;;;;;;26048:378;;:::o;5905:106::-;5958:15;5993:10;5986:17;;5905:106;:::o;26758:418::-;26861:1;26842:21;;:7;:21;;;;26834:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26914:49;26935:7;26952:1;26956:6;26914:20;:49::i;:::-;26997:68;27020:6;26997:68;;;;;;;;;;;;;;;;;:9;:18;27007:7;26997:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;26976:9;:18;26986:7;26976:18;;;;;;;;;;;;;;;:89;;;;27091:24;27108:6;27091:12;;:16;;:24;;;;:::i;:::-;27076:12;:39;;;;27157:1;27131:37;;27140:7;27131:37;;;27161:6;27131:37;;;;;;;;;;;;;;;;;;26758:418;;:::o;1805:192::-;1891:7;1924:1;1919;:6;;1927:12;1911:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1951:9;1967:1;1963;:5;1951:17;;1988:1;1981:8;;;1805:192;;;;;:::o;3831:278::-;3917:7;3949:1;3945;:5;3952:12;3937:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3976:9;3992:1;3988;:5;;;;;;3976:17;;4100:1;4093:8;;;3831:278;;;;;:::o;28987:92::-;;;;:::o

Swarm Source

ipfs://9f1a990317665c2e464d76d238a44b3dde4509c854534fa2136a2290882fcb45
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.