ETH Price: $3,515.11 (+2.75%)
Gas: 5 Gwei

Token

Pre-EtherLite (xETL)
 

Overview

Max Total Supply

51,202,305,120,200,000,000,240,999,042.555 xETL

Holders

1,120

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.0078224103 xETL

Value
$0.00
0x6D728585Cc9Eb0E0A48FdE826E3277D8058a0B9e
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:
PreEtherlite

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-11
*/

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;




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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.6.0;

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();
    event NotPausable();

    bool public paused = false;
    bool public canPause = true;


    /**
    * @dev Modifier to make a function callable only when the contract is not paused.
    */
    modifier whenNotPaused() {
        require(!paused);
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused);
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpause();
    }
    
      /**
     * @dev Prevent the token from ever being paused again
     **/
    function notPausable() onlyOwner public{
        paused = false;
        canPause = false;
        emit NotPausable();
    }
    
}

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/PreEtherlite.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;


contract PreEtherlite is ERC20, Ownable, AccessControl, Pausable {

    address payable receipientAddress;
    IERC20 tokenAddresses;
    uint public minInvest = 500000000000000000000000;
    address[] public tokenAddress;
    mapping(address => bool) public allowTokenAddress;
    bytes32 private DOMAIN_SEPERATOR;
    uint256 public referralFee = 10;
    mapping(address => address) public ownerToReferral;
    mapping(address => address[]) public referralToreferee;

    bytes32 private constant INVITE_ONLY = keccak256("INVITE_ONLY"); 

    event TokenBoughtWithETH(address indexed buyerAddress, address admin, address indexed referralAddress, uint256 value, uint256 amount);
    event TokenBoughtWithToken(address indexed buyerAddress, address admin, address indexed referralAddress, uint256 value, uint256 amount, address tokenAddress);
    
    constructor(uint256 initialSupply, bytes32 key, address payable _receipientAddress) public ERC20("Pre-EtherLite", "xETL") {
        _mint(address(this), initialSupply);
        receipientAddress = _receipientAddress;
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(INVITE_ONLY, _msgSender());
        _setupRole(INVITE_ONLY, _receipientAddress);
        DOMAIN_SEPERATOR = key;
    }
    
    modifier authorisedSignatory(bytes32 signature){
        bytes32 authKey = keccak256(
            abi.encodePacked(
                INVITE_ONLY,
                keccak256(abi.encodePacked(DOMAIN_SEPERATOR, _msgSender()))
            )
        );
        require(signature == authKey, "Invalid Transaction");
        _;
    }
    
    function changeMin(uint _minInvest) public onlyOwner returns(bool){
        minInvest = _minInvest;
    }
    
    function changeReferralFee(uint _referralFee) public onlyOwner returns(bool){
        referralFee = _referralFee;
    }

    function mint(address to, uint256 amount) public onlyOwner{
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Caller is not a minter");
        _mint(to, amount);
    }

    function whiteListAddress(address _to, uint _isWhitelist) public onlyOwner{
        if(_isWhitelist == 1) _setupRole(INVITE_ONLY, _to);
        if(_isWhitelist == 0) revokeRole(INVITE_ONLY, _to);
    }

    function whiteListTokenAddress(address[] memory _tokenAddress) public onlyOwner returns(bool){
        tokenAddress = _tokenAddress;
        for(uint256 i=0; i < tokenAddress.length; i++){
            allowTokenAddress[tokenAddress[i]] = true;
        }
        return true;
    }
    
    function isReferralvalid(address _referralAddress) public view returns (bool){
       return hasRole(INVITE_ONLY, _referralAddress);
    }
    
    function buyToken(address _buyerAddress, address _referralAddress, uint256 _amount, bytes32 _signature) public payable authorisedSignatory(_signature) whenNotPaused returns(uint256) {
        require(hasRole(INVITE_ONLY, _referralAddress), "Caller is not allow to buy token");
        require(_buyerAddress != address(0));
        require(_amount >= minInvest, "Require Minimum investment");
        require(msg.value > 0, "ETH value to small");
        tokenAddresses = IERC20(address(this));
        uint256 referralAmount = _amount.mul(referralFee).div(100);
        require(tokenAddresses.transfer(_buyerAddress, _amount));
        require(tokenAddresses.transfer(_referralAddress, referralAmount));
        receipientAddress.transfer(msg.value);
        _setupRole(INVITE_ONLY, _buyerAddress);
        ownerToReferral[_buyerAddress] = _referralAddress;
        referralToreferee[_referralAddress].push(_buyerAddress);
        TokenBoughtWithETH(_buyerAddress, receipientAddress, _referralAddress, msg.value, _amount);
        return _amount;
    }

    function buyTokenWithToken(address _buyerAddress, address _referralAddress, address _tokenAddress, uint _value, uint _amount, bytes32 _signature) public authorisedSignatory(_signature) whenNotPaused returns(uint256) {
        require(hasRole(INVITE_ONLY, _referralAddress), "Caller is not allow to buy token");
        require(allowTokenAddress[_tokenAddress], "Token Address is invalid");
        require(_buyerAddress != address(0));
        require(_amount >= minInvest, "Sent Token Amount is too small");
        require(_value > 0, "Receive value to small");
        tokenAddresses = IERC20(address(this));
        uint256 referralAmount = _amount.mul(referralFee).div(100);
        require(tokenAddresses.transfer(_buyerAddress, _amount));
        require(tokenAddresses.transfer(_referralAddress, referralAmount));
        tokenAddresses = IERC20(_tokenAddress);
        require(tokenAddresses.transferFrom(_buyerAddress, address(this), _value));
        require(tokenAddresses.transfer(receipientAddress, _value));
        _setupRole(INVITE_ONLY, _buyerAddress);
        ownerToReferral[_buyerAddress] = _referralAddress;
        referralToreferee[_referralAddress].push(_buyerAddress);
        TokenBoughtWithToken(_buyerAddress, receipientAddress, _referralAddress, _value, _amount, _tokenAddress);
        return _amount;
    }
    
    function getReferral(address _referralAddress) public view returns(address[] memory) {
        return referralToreferee[_referralAddress];
    }

    // Allow transfer of accidentally sent ERC20 tokens
    function withdrawTokens(address _recipient, address _token) public onlyOwner {
        IERC20 token = IERC20(_token);
        uint256 balance = token.balanceOf(address(this));
        require(token.transfer(_recipient, balance));
    }

    function withdrawETH() public onlyOwner {
         receipientAddress.transfer(address(this).balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"bytes32","name":"key","type":"bytes32"},{"internalType":"address payable","name":"_receipientAddress","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":[],"name":"NotPausable","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyerAddress","type":"address"},{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":true,"internalType":"address","name":"referralAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenBoughtWithETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyerAddress","type":"address"},{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":true,"internalType":"address","name":"referralAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"}],"name":"TokenBoughtWithToken","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":[],"name":"Unpause","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowTokenAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_buyerAddress","type":"address"},{"internalType":"address","name":"_referralAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_signature","type":"bytes32"}],"name":"buyToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_buyerAddress","type":"address"},{"internalType":"address","name":"_referralAddress","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32","name":"_signature","type":"bytes32"}],"name":"buyTokenWithToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minInvest","type":"uint256"}],"name":"changeMin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_referralFee","type":"uint256"}],"name":"changeReferralFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_referralAddress","type":"address"}],"name":"getReferral","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_referralAddress","type":"address"}],"name":"isReferralvalid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minInvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notPausable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ownerToReferral","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"referralToreferee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_isWhitelist","type":"uint256"}],"name":"whiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokenAddress","type":"address[]"}],"name":"whiteListTokenAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805461ffff19166101001790556969e10de76676d0800000600955600a600d553480156200003357600080fd5b506040516200359238038062003592833981810160405260608110156200005957600080fd5b50805160208083015160409384015184518086018652600d81526c5072652d45746865724c69746560981b818501908152865180880190975260048752631e11551360e21b948701949094528051949592949193909291620000be91600391620004d0565b508051620000d4906004906020840190620004d0565b50506005805460ff19166012179055506000620000f96001600160e01b036200021d16565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200016430846001600160e01b036200022216565b6007805462010000600160b01b031916620100006001600160a01b03841602179055620001a56000620001966200021d565b6001600160e01b036200033a16565b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020620001dd90620001966001600160e01b036200021d16565b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b0190206200021290826001600160e01b036200033a16565b50600c555062000572565b335b90565b6001600160a01b0382166200027e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000295600083836001600160e01b036200035316565b620002b1816002546200035860201b620029f81790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002e4918390620029f862000358821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200034f82826001600160e01b03620003bc16565b5050565b505050565b600082820183811015620003b3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000828152600660209081526040909120620003e391839062002b7f62000440821b17901c565b156200034f57620003fc6001600160e01b036200021d16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620003b3836001600160a01b0384166001600160e01b036200046016565b60006200047783836001600160e01b03620004b816565b620004af57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003b6565b506000620003b6565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200051357805160ff191683800117855562000543565b8280016001018555821562000543579182015b828111156200054357825182559160200191906001019062000526565b506200055192915062000555565b5090565b6200021f91905b808211156200055157600081556001016200055c565b61301080620005826000396000f3fe6080604052600436106102675760003560e01c8063715018a6116101445780639f0adb80116100b6578063ca15c8731161007a578063ca15c87314610a48578063d547741f14610a72578063dd62ed3e14610aab578063e086e5ec14610ae6578063f1eea1a314610afb578063f2fde38b14610b3457610267565b80639f0adb8014610953578063a217fddf14610986578063a457c2d71461099b578063a522ad25146109d4578063a9059cbb14610a0f57610267565b80639010d07c116101085780639010d07c1461082357806391d148541461085357806395d89b411461088c57806396748a1f146108a15780639b7bd20a146108d45780639e6b26ba1461092957610267565b8063715018a6146107a557806378a6743b146107ba5780638456cb59146107e457806384ae2bc6146107f95780638da5cb5b1461080e57610267565b806336568abe116101dd57806340c10f19116101a157806340c10f191461064a57806343cdcbbc146106835780634be8b05e146107335780635c975abb1461074857806363fd9e381461075d57806370a082311461077257610267565b806336568abe14610516578063395093511461054f5780633b0f0f2f146105885780633bd0f4121461060b5780633f4ba83a1461063557610267565b80631ebdcb4b1161022f5780631ebdcb4b146103f257806323b872dd1461042e578063248a9ca3146104715780632f2ff15d1461049b578063313ce567146104d6578063323be1c51461050157610267565b80630448271a1461026c57806306eb3c76146102c157806306fdde03146102f4578063095ea7b31461037e57806318160ddd146103cb575b600080fd5b34801561027857600080fd5b506102a56004803603604081101561028f57600080fd5b506001600160a01b038135169060200135610b67565b604080516001600160a01b039092168252519081900360200190f35b3480156102cd57600080fd5b506102a5600480360360208110156102e457600080fd5b50356001600160a01b0316610b9c565b34801561030057600080fd5b50610309610bb7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034357818101518382015260200161032b565b50505050905090810190601f1680156103705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038a57600080fd5b506103b7600480360360408110156103a157600080fd5b506001600160a01b038135169060200135610c4e565b604080519115158252519081900360200190f35b3480156103d757600080fd5b506103e0610c6c565b60408051918252519081900360200190f35b6103e06004803603608081101561040857600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135610c72565b34801561043a57600080fd5b506103b76004803603606081101561045157600080fd5b506001600160a01b03813581169160208101359091169060400135611111565b34801561047d57600080fd5b506103e06004803603602081101561049457600080fd5b503561119e565b3480156104a757600080fd5b506104d4600480360360408110156104be57600080fd5b50803590602001356001600160a01b03166111b3565b005b3480156104e257600080fd5b506104eb61121f565b6040805160ff9092168252519081900360200190f35b34801561050d57600080fd5b506103b7611228565b34801561052257600080fd5b506104d46004803603604081101561053957600080fd5b50803590602001356001600160a01b0316611236565b34801561055b57600080fd5b506103b76004803603604081101561057257600080fd5b506001600160a01b038135169060200135611297565b34801561059457600080fd5b506105bb600480360360208110156105ab57600080fd5b50356001600160a01b03166112eb565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156105f75781810151838201526020016105df565b505050509050019250505060405180910390f35b34801561061757600080fd5b506103b76004803603602081101561062e57600080fd5b5035611361565b34801561064157600080fd5b506104d46113ce565b34801561065657600080fd5b506104d46004803603604081101561066d57600080fd5b506001600160a01b038135169060200135611474565b34801561068f57600080fd5b506103b7600480360360208110156106a657600080fd5b8101906020810181356401000000008111156106c157600080fd5b8201836020820111156106d357600080fd5b803590602001918460208302840111640100000000831117156106f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611535945050505050565b34801561073f57600080fd5b506104d4611609565b34801561075457600080fd5b506103b76116a1565b34801561076957600080fd5b506103e06116aa565b34801561077e57600080fd5b506103e06004803603602081101561079557600080fd5b50356001600160a01b03166116b0565b3480156107b157600080fd5b506104d46116cb565b3480156107c657600080fd5b506103b7600480360360208110156107dd57600080fd5b503561177d565b3480156107f057600080fd5b506104d46117ea565b34801561080557600080fd5b506103e0611894565b34801561081a57600080fd5b506102a561189a565b34801561082f57600080fd5b506102a56004803603604081101561084657600080fd5b50803590602001356118ae565b34801561085f57600080fd5b506103b76004803603604081101561087657600080fd5b50803590602001356001600160a01b03166118d3565b34801561089857600080fd5b506103096118f1565b3480156108ad57600080fd5b506103b7600480360360208110156108c457600080fd5b50356001600160a01b0316611952565b3480156108e057600080fd5b506103e0600480360360c08110156108f757600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060808101359060a00135611967565b34801561093557600080fd5b506102a56004803603602081101561094c57600080fd5b5035612014565b34801561095f57600080fd5b506103b76004803603602081101561097657600080fd5b50356001600160a01b031661203b565b34801561099257600080fd5b506103e0612068565b3480156109a757600080fd5b506103b7600480360360408110156109be57600080fd5b506001600160a01b03813516906020013561206d565b3480156109e057600080fd5b506104d4600480360360408110156109f757600080fd5b506001600160a01b03813581169160200135166120db565b348015610a1b57600080fd5b506103b760048036036040811015610a3257600080fd5b506001600160a01b038135169060200135612245565b348015610a5457600080fd5b506103e060048036036020811015610a6b57600080fd5b5035612259565b348015610a7e57600080fd5b506104d460048036036040811015610a9557600080fd5b50803590602001356001600160a01b0316612270565b348015610ab757600080fd5b506103e060048036036040811015610ace57600080fd5b506001600160a01b03813581169160200135166122c9565b348015610af257600080fd5b506104d46122f4565b348015610b0757600080fd5b506104d460048036036040811015610b1e57600080fd5b506001600160a01b03813516906020013561239a565b348015610b4057600080fd5b506104d460048036036020811015610b5757600080fd5b50356001600160a01b031661245e565b600f6020528160005260406000208181548110610b8057fe5b6000918252602090912001546001600160a01b03169150829050565b600e602052600090815260409020546001600160a01b031681565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c435780601f10610c1857610100808354040283529160200191610c43565b820191906000526020600020905b815481529060010190602001808311610c2657829003601f168201915b505050505090505b90565b6000610c62610c5b61256c565b8484612570565b5060015b92915050565b60025490565b600081600060405180806a494e564954455f4f4e4c5960a81b815250600b0190506040518091039020600c54610ca661256c565b60405160200180838152602001826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001206040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209050808214610d61576040805162461bcd60e51b815260206004820152601360248201527224b73b30b634b2102a3930b739b0b1ba34b7b760691b604482015290519081900360640190fd5b60075460ff1615610d7157600080fd5b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020610d9b90876118d3565b610dec576040805162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f7420616c6c6f7720746f2062757920746f6b656e604482015290519081900360640190fd5b6001600160a01b038716610dff57600080fd5b600954851015610e56576040805162461bcd60e51b815260206004820152601a60248201527f52657175697265204d696e696d756d20696e766573746d656e74000000000000604482015290519081900360640190fd5b60003411610ea0576040805162461bcd60e51b8152602060048201526012602482015271115512081d985b1d59481d1bc81cdb585b1b60721b604482015290519081900360640190fd5b600880546001600160a01b03191630179055600d54600090610edc90606490610ed090899063ffffffff61265c16565b9063ffffffff6126b516565b6008546040805163a9059cbb60e01b81526001600160a01b038c81166004830152602482018b9052915193945091169163a9059cbb916044808201926020929091908290030181600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050506040513d6020811015610f5e57600080fd5b5051610f6957600080fd5b6008546040805163a9059cbb60e01b81526001600160a01b038a81166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015610fbf57600080fd5b505af1158015610fd3573d6000803e3d6000fd5b505050506040513d6020811015610fe957600080fd5b5051610ff457600080fd5b6007546040516001600160a01b036201000090920491909116903480156108fc02916000818181858888f19350505050158015611035573d6000803e3d6000fd5b50604080516a494e564954455f4f4e4c5960a81b8152905190819003600b0190206110609089611211565b6001600160a01b038089166000818152600e602090815260408083208054868e166001600160a01b03199182168117909255818552600f845282852080546001810182559086529484902090940180549094168517909355600754815162010000909104909516855234918501919091528381018a90525190927f0775e31b659af513d25596699c467dff6dedb181b4e7e6fdeb1343599aa70ba5919081900360600190a350939695505050505050565b600061111e84848461271c565b6111948461112a61256c565b61118f85604051806060016040528060288152602001612ef6602891396001600160a01b038a1660009081526001602052604081209061116861256c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61288316565b612570565b5060019392505050565b60009081526006602052604090206002015490565b6000828152600660205260409020600201546111d6906111d161256c565b6118d3565b6112115760405162461bcd60e51b815260040180806020018281038252602f815260200180612e08602f913960400191505060405180910390fd5b61121b828261291a565b5050565b60055460ff1690565b600754610100900460ff1681565b61123e61256c565b6001600160a01b0316816001600160a01b03161461128d5760405162461bcd60e51b815260040180806020018281038252602f815260200180612fac602f913960400191505060405180910390fd5b61121b8282612989565b6000610c626112a461256c565b8461118f85600160006112b561256c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6129f816565b6001600160a01b0381166000908152600f602090815260409182902080548351818402810184019094528084526060939283018282801561135557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611337575b50505050509050919050565b600061136b61256c565b6001600160a01b031661137c61189a565b6001600160a01b0316146113c5576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60099190915590565b6113d661256c565b6001600160a01b03166113e761189a565b6001600160a01b031614611430576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60075460ff1661143f57600080fd5b6007805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b61147c61256c565b6001600160a01b031661148d61189a565b6001600160a01b0316146114d6576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6114e16000336118d3565b61152b576040805162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba10309036b4b73a32b960511b604482015290519081900360640190fd5b61121b8282612a52565b600061153f61256c565b6001600160a01b031661155061189a565b6001600160a01b031614611599576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b81516115ac90600a906020850190612d39565b5060005b600a54811015610c62576001600b6000600a84815481106115cd57fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff19169115159190911790556001016115b0565b61161161256c565b6001600160a01b031661162261189a565b6001600160a01b03161461166b576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6007805461ffff191690556040517faff39f66825d4448497d384dee3f4a3adf00a622960add00806503ae4ccee01c90600090a1565b60075460ff1681565b60095481565b6001600160a01b031660009081526020819052604090205490565b6116d361256c565b6001600160a01b03166116e461189a565b6001600160a01b03161461172d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061178761256c565b6001600160a01b031661179861189a565b6001600160a01b0316146117e1576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b600d9190915590565b6117f261256c565b6001600160a01b031661180361189a565b6001600160a01b03161461184c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60075460ff161561185c57600080fd5b6007805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600d5481565b60055461010090046001600160a01b031690565b60008281526006602052604081206118cc908363ffffffff612b4e16565b9392505050565b60008281526006602052604081206118cc908363ffffffff612b5a16565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c435780601f10610c1857610100808354040283529160200191610c43565b600b6020526000908152604090205460ff1681565b600081600060405180806a494e564954455f4f4e4c5960a81b815250600b0190506040518091039020600c5461199b61256c565b60405160200180838152602001826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001206040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209050808214611a56576040805162461bcd60e51b815260206004820152601360248201527224b73b30b634b2102a3930b739b0b1ba34b7b760691b604482015290519081900360640190fd5b60075460ff1615611a6657600080fd5b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020611a9090896118d3565b611ae1576040805162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f7420616c6c6f7720746f2062757920746f6b656e604482015290519081900360640190fd5b6001600160a01b0387166000908152600b602052604090205460ff16611b4e576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e204164647265737320697320696e76616c69640000000000000000604482015290519081900360640190fd5b6001600160a01b038916611b6157600080fd5b600954851015611bb8576040805162461bcd60e51b815260206004820152601e60248201527f53656e7420546f6b656e20416d6f756e7420697320746f6f20736d616c6c0000604482015290519081900360640190fd5b60008611611c06576040805162461bcd60e51b8152602060048201526016602482015275149958d95a5d99481d985b1d59481d1bc81cdb585b1b60521b604482015290519081900360640190fd5b600880546001600160a01b03191630179055600d54600090611c3690606490610ed090899063ffffffff61265c16565b6008546040805163a9059cbb60e01b81526001600160a01b038e81166004830152602482018b9052915193945091169163a9059cbb916044808201926020929091908290030181600087803b158015611c8e57600080fd5b505af1158015611ca2573d6000803e3d6000fd5b505050506040513d6020811015611cb857600080fd5b5051611cc357600080fd5b6008546040805163a9059cbb60e01b81526001600160a01b038c81166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611d1957600080fd5b505af1158015611d2d573d6000803e3d6000fd5b505050506040513d6020811015611d4357600080fd5b5051611d4e57600080fd5b600880546001600160a01b0319166001600160a01b038a81169190911791829055604080516323b872dd60e01b81528d83166004820152306024820152604481018b9052905192909116916323b872dd916064808201926020929091908290030181600087803b158015611dc157600080fd5b505af1158015611dd5573d6000803e3d6000fd5b505050506040513d6020811015611deb57600080fd5b5051611df657600080fd5b6008546007546040805163a9059cbb60e01b8152620100009092046001600160a01b039081166004840152602483018b9052905192169163a9059cbb916044808201926020929091908290030181600087803b158015611e5557600080fd5b505af1158015611e69573d6000803e3d6000fd5b505050506040513d6020811015611e7f57600080fd5b5051611e8a57600080fd5b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020611eb4908b611211565b88600e60008c6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600f60008a6001600160a01b03166001600160a01b031681526020019081526020016000208a9080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b03160217905550886001600160a01b03168a6001600160a01b03167f6aec6cc275031575bda84bf0c7558e0a08f5cf5219bfc6de1b36a834382359dc600760029054906101000a90046001600160a01b03168a8a8d60405180856001600160a01b03166001600160a01b03168152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405180910390a3509398975050505050505050565b600a818154811061202157fe5b6000918252602090912001546001600160a01b0316905081565b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020600090610c6690836118d3565b600081565b6000610c6261207a61256c565b8461118f85604051806060016040528060258152602001612f8760259139600160006120a461256c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61288316565b6120e361256c565b6001600160a01b03166120f461189a565b6001600160a01b03161461213d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905182916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561218857600080fd5b505afa15801561219c573d6000803e3d6000fd5b505050506040513d60208110156121b257600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0387811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561220a57600080fd5b505af115801561221e573d6000803e3d6000fd5b505050506040513d602081101561223457600080fd5b505161223f57600080fd5b50505050565b6000610c6261225261256c565b848461271c565b6000818152600660205260408120610c6690612b6f565b60008281526006602052604090206002015461228e906111d161256c565b61128d5760405162461bcd60e51b8152600401808060200182810382526030815260200180612ea56030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6122fc61256c565b6001600160a01b031661230d61189a565b6001600160a01b031614612356576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6007546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f19350505050158015612397573d6000803e3d6000fd5b50565b6123a261256c565b6001600160a01b03166123b361189a565b6001600160a01b0316146123fc576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b806001141561242f57604080516a494e564954455f4f4e4c5960a81b8152905190819003600b01902061242f9083611211565b8061121b57604080516a494e564954455f4f4e4c5960a81b8152905190819003600b01902061121b9083612270565b61246661256c565b6001600160a01b031661247761189a565b6001600160a01b0316146124c0576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6001600160a01b0381166125055760405162461bcd60e51b8152600401808060200182810382526026815260200180612e376026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166125b55760405162461bcd60e51b8152600401808060200182810382526024815260200180612f636024913960400191505060405180910390fd5b6001600160a01b0382166125fa5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e5d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261266b57506000610c66565b8282028284828161267857fe5b04146118cc5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ed56021913960400191505060405180910390fd5b600080821161270b576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161271457fe5b049392505050565b6001600160a01b0383166127615760405162461bcd60e51b8152600401808060200182810382526025815260200180612f3e6025913960400191505060405180910390fd5b6001600160a01b0382166127a65760405162461bcd60e51b8152600401808060200182810382526023815260200180612de56023913960400191505060405180910390fd5b6127b1838383612b7a565b6127f481604051806060016040528060268152602001612e7f602691396001600160a01b038616600090815260208190526040902054919063ffffffff61288316565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612829908263ffffffff6129f816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156129125760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128d75781810151838201526020016128bf565b50505050905090810190601f1680156129045780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152600660205260409020612938908263ffffffff612b7f16565b1561121b5761294561256c565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602052604090206129a7908263ffffffff612b9416565b1561121b576129b461256c565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000828201838110156118cc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612aad576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612ab960008383612b7a565b600254612acc908263ffffffff6129f816565b6002556001600160a01b038216600090815260208190526040902054612af8908263ffffffff6129f816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60006118cc8383612ba9565b60006118cc836001600160a01b038416612c0d565b6000610c6682612c25565b505050565b60006118cc836001600160a01b038416612c29565b60006118cc836001600160a01b038416612c73565b81546000908210612beb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612dc36022913960400191505060405180910390fd5b826000018281548110612bfa57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000612c358383612c0d565b612c6b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c66565b506000610c66565b60008181526001830160205260408120548015612d2f5783546000198083019190810190600090879083908110612ca657fe5b9060005260206000200154905080876000018481548110612cc357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612cf357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c66565b6000915050610c66565b828054828255906000526020600020908101928215612d8e579160200282015b82811115612d8e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612d59565b50612d9a929150612d9e565b5090565b610c4b91905b80821115612d9a5780546001600160a01b0319168155600101612da456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122040b5531c61c398796efb45015bca06186028cc6e58119c1bf6c483a6ef57e7d564736f6c634300060200330000000000000000000000000000000000000000005afd67f2dc0e1b2e00000023df4687187ef105cec7eeb011476c40e2e84089ef4c6d5c7ff1e8e4a7d5110e0000000000000000000000009f8cc1285401f763ed806494e0307f69447a43a2

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a6116101445780639f0adb80116100b6578063ca15c8731161007a578063ca15c87314610a48578063d547741f14610a72578063dd62ed3e14610aab578063e086e5ec14610ae6578063f1eea1a314610afb578063f2fde38b14610b3457610267565b80639f0adb8014610953578063a217fddf14610986578063a457c2d71461099b578063a522ad25146109d4578063a9059cbb14610a0f57610267565b80639010d07c116101085780639010d07c1461082357806391d148541461085357806395d89b411461088c57806396748a1f146108a15780639b7bd20a146108d45780639e6b26ba1461092957610267565b8063715018a6146107a557806378a6743b146107ba5780638456cb59146107e457806384ae2bc6146107f95780638da5cb5b1461080e57610267565b806336568abe116101dd57806340c10f19116101a157806340c10f191461064a57806343cdcbbc146106835780634be8b05e146107335780635c975abb1461074857806363fd9e381461075d57806370a082311461077257610267565b806336568abe14610516578063395093511461054f5780633b0f0f2f146105885780633bd0f4121461060b5780633f4ba83a1461063557610267565b80631ebdcb4b1161022f5780631ebdcb4b146103f257806323b872dd1461042e578063248a9ca3146104715780632f2ff15d1461049b578063313ce567146104d6578063323be1c51461050157610267565b80630448271a1461026c57806306eb3c76146102c157806306fdde03146102f4578063095ea7b31461037e57806318160ddd146103cb575b600080fd5b34801561027857600080fd5b506102a56004803603604081101561028f57600080fd5b506001600160a01b038135169060200135610b67565b604080516001600160a01b039092168252519081900360200190f35b3480156102cd57600080fd5b506102a5600480360360208110156102e457600080fd5b50356001600160a01b0316610b9c565b34801561030057600080fd5b50610309610bb7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561034357818101518382015260200161032b565b50505050905090810190601f1680156103705780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561038a57600080fd5b506103b7600480360360408110156103a157600080fd5b506001600160a01b038135169060200135610c4e565b604080519115158252519081900360200190f35b3480156103d757600080fd5b506103e0610c6c565b60408051918252519081900360200190f35b6103e06004803603608081101561040857600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135610c72565b34801561043a57600080fd5b506103b76004803603606081101561045157600080fd5b506001600160a01b03813581169160208101359091169060400135611111565b34801561047d57600080fd5b506103e06004803603602081101561049457600080fd5b503561119e565b3480156104a757600080fd5b506104d4600480360360408110156104be57600080fd5b50803590602001356001600160a01b03166111b3565b005b3480156104e257600080fd5b506104eb61121f565b6040805160ff9092168252519081900360200190f35b34801561050d57600080fd5b506103b7611228565b34801561052257600080fd5b506104d46004803603604081101561053957600080fd5b50803590602001356001600160a01b0316611236565b34801561055b57600080fd5b506103b76004803603604081101561057257600080fd5b506001600160a01b038135169060200135611297565b34801561059457600080fd5b506105bb600480360360208110156105ab57600080fd5b50356001600160a01b03166112eb565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156105f75781810151838201526020016105df565b505050509050019250505060405180910390f35b34801561061757600080fd5b506103b76004803603602081101561062e57600080fd5b5035611361565b34801561064157600080fd5b506104d46113ce565b34801561065657600080fd5b506104d46004803603604081101561066d57600080fd5b506001600160a01b038135169060200135611474565b34801561068f57600080fd5b506103b7600480360360208110156106a657600080fd5b8101906020810181356401000000008111156106c157600080fd5b8201836020820111156106d357600080fd5b803590602001918460208302840111640100000000831117156106f557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611535945050505050565b34801561073f57600080fd5b506104d4611609565b34801561075457600080fd5b506103b76116a1565b34801561076957600080fd5b506103e06116aa565b34801561077e57600080fd5b506103e06004803603602081101561079557600080fd5b50356001600160a01b03166116b0565b3480156107b157600080fd5b506104d46116cb565b3480156107c657600080fd5b506103b7600480360360208110156107dd57600080fd5b503561177d565b3480156107f057600080fd5b506104d46117ea565b34801561080557600080fd5b506103e0611894565b34801561081a57600080fd5b506102a561189a565b34801561082f57600080fd5b506102a56004803603604081101561084657600080fd5b50803590602001356118ae565b34801561085f57600080fd5b506103b76004803603604081101561087657600080fd5b50803590602001356001600160a01b03166118d3565b34801561089857600080fd5b506103096118f1565b3480156108ad57600080fd5b506103b7600480360360208110156108c457600080fd5b50356001600160a01b0316611952565b3480156108e057600080fd5b506103e0600480360360c08110156108f757600080fd5b506001600160a01b03813581169160208101358216916040820135169060608101359060808101359060a00135611967565b34801561093557600080fd5b506102a56004803603602081101561094c57600080fd5b5035612014565b34801561095f57600080fd5b506103b76004803603602081101561097657600080fd5b50356001600160a01b031661203b565b34801561099257600080fd5b506103e0612068565b3480156109a757600080fd5b506103b7600480360360408110156109be57600080fd5b506001600160a01b03813516906020013561206d565b3480156109e057600080fd5b506104d4600480360360408110156109f757600080fd5b506001600160a01b03813581169160200135166120db565b348015610a1b57600080fd5b506103b760048036036040811015610a3257600080fd5b506001600160a01b038135169060200135612245565b348015610a5457600080fd5b506103e060048036036020811015610a6b57600080fd5b5035612259565b348015610a7e57600080fd5b506104d460048036036040811015610a9557600080fd5b50803590602001356001600160a01b0316612270565b348015610ab757600080fd5b506103e060048036036040811015610ace57600080fd5b506001600160a01b03813581169160200135166122c9565b348015610af257600080fd5b506104d46122f4565b348015610b0757600080fd5b506104d460048036036040811015610b1e57600080fd5b506001600160a01b03813516906020013561239a565b348015610b4057600080fd5b506104d460048036036020811015610b5757600080fd5b50356001600160a01b031661245e565b600f6020528160005260406000208181548110610b8057fe5b6000918252602090912001546001600160a01b03169150829050565b600e602052600090815260409020546001600160a01b031681565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c435780601f10610c1857610100808354040283529160200191610c43565b820191906000526020600020905b815481529060010190602001808311610c2657829003601f168201915b505050505090505b90565b6000610c62610c5b61256c565b8484612570565b5060015b92915050565b60025490565b600081600060405180806a494e564954455f4f4e4c5960a81b815250600b0190506040518091039020600c54610ca661256c565b60405160200180838152602001826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001206040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209050808214610d61576040805162461bcd60e51b815260206004820152601360248201527224b73b30b634b2102a3930b739b0b1ba34b7b760691b604482015290519081900360640190fd5b60075460ff1615610d7157600080fd5b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020610d9b90876118d3565b610dec576040805162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f7420616c6c6f7720746f2062757920746f6b656e604482015290519081900360640190fd5b6001600160a01b038716610dff57600080fd5b600954851015610e56576040805162461bcd60e51b815260206004820152601a60248201527f52657175697265204d696e696d756d20696e766573746d656e74000000000000604482015290519081900360640190fd5b60003411610ea0576040805162461bcd60e51b8152602060048201526012602482015271115512081d985b1d59481d1bc81cdb585b1b60721b604482015290519081900360640190fd5b600880546001600160a01b03191630179055600d54600090610edc90606490610ed090899063ffffffff61265c16565b9063ffffffff6126b516565b6008546040805163a9059cbb60e01b81526001600160a01b038c81166004830152602482018b9052915193945091169163a9059cbb916044808201926020929091908290030181600087803b158015610f3457600080fd5b505af1158015610f48573d6000803e3d6000fd5b505050506040513d6020811015610f5e57600080fd5b5051610f6957600080fd5b6008546040805163a9059cbb60e01b81526001600160a01b038a81166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015610fbf57600080fd5b505af1158015610fd3573d6000803e3d6000fd5b505050506040513d6020811015610fe957600080fd5b5051610ff457600080fd5b6007546040516001600160a01b036201000090920491909116903480156108fc02916000818181858888f19350505050158015611035573d6000803e3d6000fd5b50604080516a494e564954455f4f4e4c5960a81b8152905190819003600b0190206110609089611211565b6001600160a01b038089166000818152600e602090815260408083208054868e166001600160a01b03199182168117909255818552600f845282852080546001810182559086529484902090940180549094168517909355600754815162010000909104909516855234918501919091528381018a90525190927f0775e31b659af513d25596699c467dff6dedb181b4e7e6fdeb1343599aa70ba5919081900360600190a350939695505050505050565b600061111e84848461271c565b6111948461112a61256c565b61118f85604051806060016040528060288152602001612ef6602891396001600160a01b038a1660009081526001602052604081209061116861256c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61288316565b612570565b5060019392505050565b60009081526006602052604090206002015490565b6000828152600660205260409020600201546111d6906111d161256c565b6118d3565b6112115760405162461bcd60e51b815260040180806020018281038252602f815260200180612e08602f913960400191505060405180910390fd5b61121b828261291a565b5050565b60055460ff1690565b600754610100900460ff1681565b61123e61256c565b6001600160a01b0316816001600160a01b03161461128d5760405162461bcd60e51b815260040180806020018281038252602f815260200180612fac602f913960400191505060405180910390fd5b61121b8282612989565b6000610c626112a461256c565b8461118f85600160006112b561256c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6129f816565b6001600160a01b0381166000908152600f602090815260409182902080548351818402810184019094528084526060939283018282801561135557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611337575b50505050509050919050565b600061136b61256c565b6001600160a01b031661137c61189a565b6001600160a01b0316146113c5576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60099190915590565b6113d661256c565b6001600160a01b03166113e761189a565b6001600160a01b031614611430576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60075460ff1661143f57600080fd5b6007805460ff191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b61147c61256c565b6001600160a01b031661148d61189a565b6001600160a01b0316146114d6576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6114e16000336118d3565b61152b576040805162461bcd60e51b815260206004820152601660248201527521b0b63632b91034b9903737ba10309036b4b73a32b960511b604482015290519081900360640190fd5b61121b8282612a52565b600061153f61256c565b6001600160a01b031661155061189a565b6001600160a01b031614611599576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b81516115ac90600a906020850190612d39565b5060005b600a54811015610c62576001600b6000600a84815481106115cd57fe5b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff19169115159190911790556001016115b0565b61161161256c565b6001600160a01b031661162261189a565b6001600160a01b03161461166b576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6007805461ffff191690556040517faff39f66825d4448497d384dee3f4a3adf00a622960add00806503ae4ccee01c90600090a1565b60075460ff1681565b60095481565b6001600160a01b031660009081526020819052604090205490565b6116d361256c565b6001600160a01b03166116e461189a565b6001600160a01b03161461172d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600061178761256c565b6001600160a01b031661179861189a565b6001600160a01b0316146117e1576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b600d9190915590565b6117f261256c565b6001600160a01b031661180361189a565b6001600160a01b03161461184c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b60075460ff161561185c57600080fd5b6007805460ff191660011790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600d5481565b60055461010090046001600160a01b031690565b60008281526006602052604081206118cc908363ffffffff612b4e16565b9392505050565b60008281526006602052604081206118cc908363ffffffff612b5a16565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c435780601f10610c1857610100808354040283529160200191610c43565b600b6020526000908152604090205460ff1681565b600081600060405180806a494e564954455f4f4e4c5960a81b815250600b0190506040518091039020600c5461199b61256c565b60405160200180838152602001826001600160a01b03166001600160a01b031660601b815260140192505050604051602081830303815290604052805190602001206040516020018083815260200182815260200192505050604051602081830303815290604052805190602001209050808214611a56576040805162461bcd60e51b815260206004820152601360248201527224b73b30b634b2102a3930b739b0b1ba34b7b760691b604482015290519081900360640190fd5b60075460ff1615611a6657600080fd5b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020611a9090896118d3565b611ae1576040805162461bcd60e51b815260206004820181905260248201527f43616c6c6572206973206e6f7420616c6c6f7720746f2062757920746f6b656e604482015290519081900360640190fd5b6001600160a01b0387166000908152600b602052604090205460ff16611b4e576040805162461bcd60e51b815260206004820152601860248201527f546f6b656e204164647265737320697320696e76616c69640000000000000000604482015290519081900360640190fd5b6001600160a01b038916611b6157600080fd5b600954851015611bb8576040805162461bcd60e51b815260206004820152601e60248201527f53656e7420546f6b656e20416d6f756e7420697320746f6f20736d616c6c0000604482015290519081900360640190fd5b60008611611c06576040805162461bcd60e51b8152602060048201526016602482015275149958d95a5d99481d985b1d59481d1bc81cdb585b1b60521b604482015290519081900360640190fd5b600880546001600160a01b03191630179055600d54600090611c3690606490610ed090899063ffffffff61265c16565b6008546040805163a9059cbb60e01b81526001600160a01b038e81166004830152602482018b9052915193945091169163a9059cbb916044808201926020929091908290030181600087803b158015611c8e57600080fd5b505af1158015611ca2573d6000803e3d6000fd5b505050506040513d6020811015611cb857600080fd5b5051611cc357600080fd5b6008546040805163a9059cbb60e01b81526001600160a01b038c81166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611d1957600080fd5b505af1158015611d2d573d6000803e3d6000fd5b505050506040513d6020811015611d4357600080fd5b5051611d4e57600080fd5b600880546001600160a01b0319166001600160a01b038a81169190911791829055604080516323b872dd60e01b81528d83166004820152306024820152604481018b9052905192909116916323b872dd916064808201926020929091908290030181600087803b158015611dc157600080fd5b505af1158015611dd5573d6000803e3d6000fd5b505050506040513d6020811015611deb57600080fd5b5051611df657600080fd5b6008546007546040805163a9059cbb60e01b8152620100009092046001600160a01b039081166004840152602483018b9052905192169163a9059cbb916044808201926020929091908290030181600087803b158015611e5557600080fd5b505af1158015611e69573d6000803e3d6000fd5b505050506040513d6020811015611e7f57600080fd5b5051611e8a57600080fd5b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020611eb4908b611211565b88600e60008c6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600f60008a6001600160a01b03166001600160a01b031681526020019081526020016000208a9080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b03160217905550886001600160a01b03168a6001600160a01b03167f6aec6cc275031575bda84bf0c7558e0a08f5cf5219bfc6de1b36a834382359dc600760029054906101000a90046001600160a01b03168a8a8d60405180856001600160a01b03166001600160a01b03168152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405180910390a3509398975050505050505050565b600a818154811061202157fe5b6000918252602090912001546001600160a01b0316905081565b604080516a494e564954455f4f4e4c5960a81b8152905190819003600b019020600090610c6690836118d3565b600081565b6000610c6261207a61256c565b8461118f85604051806060016040528060258152602001612f8760259139600160006120a461256c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61288316565b6120e361256c565b6001600160a01b03166120f461189a565b6001600160a01b03161461213d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905182916000916001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561218857600080fd5b505afa15801561219c573d6000803e3d6000fd5b505050506040513d60208110156121b257600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0387811660048301526024820184905291519293509084169163a9059cbb916044808201926020929091908290030181600087803b15801561220a57600080fd5b505af115801561221e573d6000803e3d6000fd5b505050506040513d602081101561223457600080fd5b505161223f57600080fd5b50505050565b6000610c6261225261256c565b848461271c565b6000818152600660205260408120610c6690612b6f565b60008281526006602052604090206002015461228e906111d161256c565b61128d5760405162461bcd60e51b8152600401808060200182810382526030815260200180612ea56030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6122fc61256c565b6001600160a01b031661230d61189a565b6001600160a01b031614612356576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6007546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f19350505050158015612397573d6000803e3d6000fd5b50565b6123a261256c565b6001600160a01b03166123b361189a565b6001600160a01b0316146123fc576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b806001141561242f57604080516a494e564954455f4f4e4c5960a81b8152905190819003600b01902061242f9083611211565b8061121b57604080516a494e564954455f4f4e4c5960a81b8152905190819003600b01902061121b9083612270565b61246661256c565b6001600160a01b031661247761189a565b6001600160a01b0316146124c0576040805162461bcd60e51b81526020600482018190526024820152600080516020612f1e833981519152604482015290519081900360640190fd5b6001600160a01b0381166125055760405162461bcd60e51b8152600401808060200182810382526026815260200180612e376026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166125b55760405162461bcd60e51b8152600401808060200182810382526024815260200180612f636024913960400191505060405180910390fd5b6001600160a01b0382166125fa5760405162461bcd60e51b8152600401808060200182810382526022815260200180612e5d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261266b57506000610c66565b8282028284828161267857fe5b04146118cc5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ed56021913960400191505060405180910390fd5b600080821161270b576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161271457fe5b049392505050565b6001600160a01b0383166127615760405162461bcd60e51b8152600401808060200182810382526025815260200180612f3e6025913960400191505060405180910390fd5b6001600160a01b0382166127a65760405162461bcd60e51b8152600401808060200182810382526023815260200180612de56023913960400191505060405180910390fd5b6127b1838383612b7a565b6127f481604051806060016040528060268152602001612e7f602691396001600160a01b038616600090815260208190526040902054919063ffffffff61288316565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612829908263ffffffff6129f816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156129125760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156128d75781810151838201526020016128bf565b50505050905090810190601f1680156129045780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152600660205260409020612938908263ffffffff612b7f16565b1561121b5761294561256c565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602052604090206129a7908263ffffffff612b9416565b1561121b576129b461256c565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000828201838110156118cc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612aad576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612ab960008383612b7a565b600254612acc908263ffffffff6129f816565b6002556001600160a01b038216600090815260208190526040902054612af8908263ffffffff6129f816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60006118cc8383612ba9565b60006118cc836001600160a01b038416612c0d565b6000610c6682612c25565b505050565b60006118cc836001600160a01b038416612c29565b60006118cc836001600160a01b038416612c73565b81546000908210612beb5760405162461bcd60e51b8152600401808060200182810382526022815260200180612dc36022913960400191505060405180910390fd5b826000018281548110612bfa57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000612c358383612c0d565b612c6b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c66565b506000610c66565b60008181526001830160205260408120548015612d2f5783546000198083019190810190600090879083908110612ca657fe5b9060005260206000200154905080876000018481548110612cc357fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080612cf357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c66565b6000915050610c66565b828054828255906000526020600020908101928215612d8e579160200282015b82811115612d8e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190612d59565b50612d9a929150612d9e565b5090565b610c4b91905b80821115612d9a5780546001600160a01b0319168155600101612da456fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e744f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a264697066735822122040b5531c61c398796efb45015bca06186028cc6e58119c1bf6c483a6ef57e7d564736f6c63430006020033

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

0000000000000000000000000000000000000000005afd67f2dc0e1b2e00000023df4687187ef105cec7eeb011476c40e2e84089ef4c6d5c7ff1e8e4a7d5110e0000000000000000000000009f8cc1285401f763ed806494e0307f69447a43a2

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 110000000000000000000000000
Arg [1] : key (bytes32): 0x23df4687187ef105cec7eeb011476c40e2e84089ef4c6d5c7ff1e8e4a7d5110e
Arg [2] : _receipientAddress (address): 0x9f8cc1285401f763ed806494E0307f69447A43a2

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000005afd67f2dc0e1b2e000000
Arg [1] : 23df4687187ef105cec7eeb011476c40e2e84089ef4c6d5c7ff1e8e4a7d5110e
Arg [2] : 0000000000000000000000009f8cc1285401f763ed806494e0307f69447a43a2


Deployed Bytecode Sourcemap

51581:5753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52004:54;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52004:54:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;52004:54:0;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;52004:54:0;;;;;;;;;;;;;;51947:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51947:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51947:50:0;-1:-1:-1;;;;;51947:50:0;;:::i;13557:91::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13557:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13557:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15703:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15703:169:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15703:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14656:108;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14656:108:0;;;:::i;:::-;;;;;;;;;;;;;;;;54319:1067;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;54319:1067:0;;;;;;;;;;;;;;;;;;;;;;:::i;16354:321::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16354:321:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16354:321:0;;;;;;;;;;;;;;;;;:::i;48257:114::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48257:114:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48257:114:0;;:::i;48633:227::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48633:227:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48633:227:0;;;;;;-1:-1:-1;;;;;48633:227:0;;:::i;:::-;;14500:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14500:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42871:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42871:27:0;;;:::i;49842:209::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49842:209:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49842:209:0;;;;;;-1:-1:-1;;;;;49842:209:0;;:::i;17084:218::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17084:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17084:218:0;;;;;;;;:::i;56762:146::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56762:146:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56762:146:0;-1:-1:-1;;;;;56762:146:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;56762:146:0;;;;;;;;;;;;;;;;;53222:107;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53222:107:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53222:107:0;;:::i;43553:105::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43553:105:0;;;:::i;53470:179::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53470:179:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;53470:179:0;;;;;;;;:::i;53869:286::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53869:286:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53869:286:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;53869:286:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;53869:286:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;53869:286:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;53869:286:0;;-1:-1:-1;53869:286:0;;-1:-1:-1;;;;;53869:286:0:i;43751:128::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43751:128:0;;;:::i;42838:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42838:26:0;;;:::i;51723:48::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51723:48:0;;;:::i;14827:127::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14827:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14827:127:0;-1:-1:-1;;;;;14827:127:0;;:::i;24223:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24223:148:0;;;:::i;53341:121::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53341:121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53341:121:0;;:::i;43355:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43355:103:0;;;:::i;51909:31::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51909:31:0;;;:::i;23572:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23572:87:0;;;:::i;47930:138::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47930:138:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47930:138:0;;;;;;;:::i;46891:139::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46891:139:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46891:139:0;;;;;;-1:-1:-1;;;;;46891:139:0;;:::i;13767:95::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13767:95:0;;;:::i;51814:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51814:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51814:49:0;-1:-1:-1;;;;;51814:49:0;;:::i;55394:1356::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55394:1356:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;55394:1356:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;51778:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51778:29:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51778:29:0;;:::i;54167:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54167:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54167:140:0;-1:-1:-1;;;;;54167:140:0;;:::i;45636:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45636:49:0;;;:::i;17805:269::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17805:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17805:269:0;;;;;;;;:::i;56973:239::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56973:239:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;56973:239:0;;;;;;;;;;:::i;15167:175::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15167:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15167:175:0;;;;;;;;:::i;47204:127::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47204:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47204:127:0;;:::i;49105:230::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49105:230:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49105:230:0;;;;;;-1:-1:-1;;;;;49105:230:0;;:::i;15405:151::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15405:151:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15405:151:0;;;;;;;;;;:::i;57220:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57220:109:0;;;:::i;53657:204::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53657:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;53657:204:0;;;;;;;;:::i;24526:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24526:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24526:244:0;-1:-1:-1;;;;;24526:244:0;;:::i;52004:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52004:54:0;;-1:-1:-1;52004:54:0;;-1:-1:-1;52004:54:0:o;51947:50::-;;;;;;;;;;;;-1:-1:-1;;;;;51947:50:0;;:::o;13557:91::-;13635:5;13628:12;;;;;;;;-1:-1:-1;;13628:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13602:13;;13628:12;;13635:5;;13628:12;;13635:5;13628:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13557:91;;:::o;15703:169::-;15786:4;15803:39;15812:12;:10;:12::i;:::-;15826:7;15835:6;15803:8;:39::i;:::-;-1:-1:-1;15860:4:0;15703:169;;;;;:::o;14656:108::-;14744:12;;14656:108;:::o;54319:1067::-;54492:7;54458:10;52935:15;52106:24;;;;-1:-1:-1;;;52106:24:0;;;;;;;;;;;;;;53069:16;;53087:12;:10;:12::i;:::-;53052:48;;;;;;;;;;;-1:-1:-1;;;;;53052:48:0;-1:-1:-1;;;;;53052:48:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;53052:48:0;;;53042:59;;;;;;52977:139;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52977:139:0;;;52953:174;;;;;;52935:192;;53159:7;53146:9;:20;53138:52;;;;;-1:-1:-1;;;53138:52:0;;;;;;;;;;;;-1:-1:-1;;;53138:52:0;;;;;;;;;;;;;;;43058:6:::1;::::0;::::1;;43057:7;43049:16;;;::::0;::::1;;52106:24:::2;::::0;;-1:-1:-1;;;52106:24:0;;;;;;;;::::2;::::0;;;54520:38:::2;::::0;54541:16;54520:7:::2;:38::i;:::-;54512:83;;;::::0;;-1:-1:-1;;;54512:83:0;;::::2;;::::0;::::2;::::0;;;;;;;::::2;::::0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;54614:27:0;::::2;54606:36;;;::::0;::::2;;54672:9;;54661:7;:20;;54653:59;;;::::0;;-1:-1:-1;;;54653:59:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;54743:1;54731:9;:13;54723:44;;;::::0;;-1:-1:-1;;;54723:44:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;54723:44:0;;;;;;;;;;;;;::::2;;54778:14;:38:::0;;-1:-1:-1;;;;;;54778:38:0::2;54810:4;54778:38;::::0;;54864:11:::2;::::0;54778:14:::2;::::0;54852:33:::2;::::0;54881:3:::2;::::0;54852:24:::2;::::0;:7;;:24:::2;:11;:24;:::i;:::-;:28:::0;:33:::2;:28;:33;:::i;:::-;54904:14;::::0;:47:::2;::::0;;-1:-1:-1;;;54904:47:0;;-1:-1:-1;;;;;54904:47:0;;::::2;;::::0;::::2;::::0;;;;;;;;;54827:58;;-1:-1:-1;54904:14:0;::::2;::::0;:23:::2;::::0;:47;;;;;::::2;::::0;;;;;;;;;:14:::2;::::0;:47;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;54904:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;54904:47:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;-1:-1:::0;54904:47:0;54896:56:::2;;;::::0;::::2;;54971:14;::::0;:57:::2;::::0;;-1:-1:-1;;;54971:57:0;;-1:-1:-1;;;;;54971:57:0;;::::2;;::::0;::::2;::::0;;;;;;;;;:14;;;::::2;::::0;:23:::2;::::0;:57;;;;;::::2;::::0;;;;;;;;:14:::2;::::0;:57;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;54971:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;54971:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;-1:-1:::0;54971:57:0;54963:66:::2;;;::::0;::::2;;55040:17;::::0;:37:::2;::::0;-1:-1:-1;;;;;55040:17:0;;;::::2;::::0;;;::::2;::::0;55067:9:::2;55040:37:::0;::::2;;;::::0;::::2;::::0;;;55067:9;55040:17;:37;::::2;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;52106:24:0::2;::::0;;-1:-1:-1;;;52106:24:0;;;;;;;;::::2;::::0;;;55088:38:::2;::::0;55112:13;55088:10:::2;:38::i;:::-;-1:-1:-1::0;;;;;55137:30:0;;::::2;;::::0;;;:15:::2;:30;::::0;;;;;;;:49;;;;::::2;-1:-1:-1::0;;;;;;55137:49:0;;::::2;::::0;::::2;::::0;;;55197:35;;;:17:::2;:35:::0;;;;;27:10:-1;;55137:49:0;23:18:-1;::::2;45:23:::0;;55197:55:0;;;;;;;;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;;55297:17:::2;::::0;55263:90;;55297:17;;;::::2;::::0;;::::2;55263:90:::0;;55334:9:::2;55263:90:::0;;::::2;::::0;;;;;;;;;;;55137:49;;55263:90:::2;::::0;;;;;;;;::::2;-1:-1:-1::0;55371:7:0;;54319:1067;-1:-1:-1;;;;;;54319:1067:0:o;16354:321::-;16460:4;16477:36;16487:6;16495:9;16506:6;16477:9;:36::i;:::-;16524:121;16533:6;16541:12;:10;:12::i;:::-;16555:89;16593:6;16555:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16555:19:0;;;;;;:11;:19;;;;;;16575:12;:10;:12::i;:::-;-1:-1:-1;;;;;16555:33:0;;;;;;;;;;;;-1:-1:-1;16555:33:0;;;:89;;:37;:89;:::i;:::-;16524:8;:121::i;:::-;-1:-1:-1;16663:4:0;16354:321;;;;;:::o;48257:114::-;48314:7;48341:12;;;:6;:12;;;;;:22;;;;48257:114::o;48633:227::-;48725:12;;;;:6;:12;;;;;:22;;;48717:45;;48749:12;:10;:12::i;:::-;48717:7;:45::i;:::-;48709:105;;;;-1:-1:-1;;;48709:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48827:25;48838:4;48844:7;48827:10;:25::i;:::-;48633:227;;:::o;14500:91::-;14574:9;;;;14500:91;:::o;42871:27::-;;;;;;;;;:::o;49842:209::-;49940:12;:10;:12::i;:::-;-1:-1:-1;;;;;49929:23:0;:7;-1:-1:-1;;;;;49929:23:0;;49921:83;;;;-1:-1:-1;;;49921:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50017:26;50029:4;50035:7;50017:11;:26::i;17084:218::-;17172:4;17189:83;17198:12;:10;:12::i;:::-;17212:7;17221:50;17260:10;17221:11;:25;17233:12;:10;:12::i;:::-;-1:-1:-1;;;;;17221:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17221:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;56762:146::-;-1:-1:-1;;;;;56865:35:0;;;;;;:17;:35;;;;;;;;;56858:42;;;;;;;;;;;;;;;;;56829:16;;56858:42;;;56865:35;56858:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56858:42:0;;;;;;;;;;;;;;;;;;;;;;;56762:146;;;:::o;53222:107::-;53283:4;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;53299:9:::1;:22:::0;;;;53222:107;:::o;43553:105::-;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;43236:6:::1;::::0;::::1;;43228:15;;;::::0;::::1;;43611:6:::2;:14:::0;;-1:-1:-1;;43611:14:0::2;::::0;;43641:9:::2;::::0;::::2;::::0;43620:5:::2;::::0;43641:9:::2;43553:105::o:0;53470:179::-;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;53547:39:::1;45681:4;53575:10;53547:7;:39::i;:::-;53539:74;;;::::0;;-1:-1:-1;;;53539:74:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;53539:74:0;;;;;;;;;;;;;::::1;;53624:17;53630:2;53634:6;53624:5;:17::i;53869:286::-:0;53957:4;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;53973:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;54016:9:0::1;54012:114;54033:12;:19:::0;54029:23;::::1;54012:114;;;54110:4;54073:17;:34;54091:12;54104:1;54091:15;;;;;;;;;::::0;;;::::1;::::0;;;;;;::::1;::::0;-1:-1:-1;;;;;54091:15:0::1;54073:34:::0;;;::::1;::::0;;;;;;;;:41;;-1:-1:-1;;54073:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;54054:3:0::1;54012:114;;43751:128:::0;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;43801:6:::1;:14:::0;;-1:-1:-1;;43826:16:0;;;43858:13:::1;::::0;::::1;::::0;43810:5:::1;::::0;43858:13:::1;43751:128::o:0;42838:26::-;;;;;;:::o;51723:48::-;;;;:::o;14827:127::-;-1:-1:-1;;;;;14928:18:0;14901:7;14928:18;;;;;;;;;;;;14827:127::o;24223:148::-;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;24314:6:::1;::::0;24293:40:::1;::::0;24330:1:::1;::::0;24314:6:::1;::::0;::::1;-1:-1:-1::0;;;;;24314:6:0::1;::::0;24293:40:::1;::::0;24330:1;;24293:40:::1;24344:6;:19:::0;;-1:-1:-1;;;;;;24344:19:0::1;::::0;;24223:148::o;53341:121::-;53412:4;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;53428:11:::1;:26:::0;;;;53341:121;:::o;43355:103::-;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;43058:6:::1;::::0;::::1;;43057:7;43049:16;;;::::0;::::1;;43414:6:::2;:13:::0;;-1:-1:-1;;43414:13:0::2;43423:4;43414:13;::::0;;43443:7:::2;::::0;::::2;::::0;43414:6:::2;::::0;43443:7:::2;43355:103::o:0;51909:31::-;;;;:::o;23572:87::-;23645:6;;;;;-1:-1:-1;;;;;23645:6:0;;23572:87::o;47930:138::-;48003:7;48030:12;;;:6;:12;;;;;:30;;48054:5;48030:30;:23;:30;:::i;:::-;48023:37;47930:138;-1:-1:-1;;;47930:138:0:o;46891:139::-;46960:4;46984:12;;;:6;:12;;;;;:38;;47014:7;46984:38;:29;:38;:::i;13767:95::-;13847:7;13840:14;;;;;;;;-1:-1:-1;;13840:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13814:13;;13840:14;;13847:7;;13840:14;;13847:7;13840:14;;;;;;;;;;;;;;;;;;;;;;;;51814:49;;;;;;;;;;;;;;;:::o;55394:1356::-;55601:7;55567:10;52935:15;52106:24;;;;-1:-1:-1;;;52106:24:0;;;;;;;;;;;;;;53069:16;;53087:12;:10;:12::i;:::-;53052:48;;;;;;;;;;;-1:-1:-1;;;;;53052:48:0;-1:-1:-1;;;;;53052:48:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;53052:48:0;;;53042:59;;;;;;52977:139;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;52977:139:0;;;52953:174;;;;;;52935:192;;53159:7;53146:9;:20;53138:52;;;;;-1:-1:-1;;;53138:52:0;;;;;;;;;;;;-1:-1:-1;;;53138:52:0;;;;;;;;;;;;;;;43058:6:::1;::::0;::::1;;43057:7;43049:16;;;::::0;::::1;;52106:24:::2;::::0;;-1:-1:-1;;;52106:24:0;;;;;;;;::::2;::::0;;;55629:38:::2;::::0;55650:16;55629:7:::2;:38::i;:::-;55621:83;;;::::0;;-1:-1:-1;;;55621:83:0;;::::2;;::::0;::::2;::::0;;;;;;;::::2;::::0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;55723:32:0;::::2;;::::0;;;:17:::2;:32;::::0;;;;;::::2;;55715:69;;;::::0;;-1:-1:-1;;;55715:69:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;-1:-1:-1::0;;;;;55803:27:0;::::2;55795:36;;;::::0;::::2;;55861:9;;55850:7;:20;;55842:63;;;::::0;;-1:-1:-1;;;55842:63:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;55933:1;55924:6;:10;55916:45;;;::::0;;-1:-1:-1;;;55916:45:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;55916:45:0;;;;;;;;;;;;;::::2;;55972:14;:38:::0;;-1:-1:-1;;;;;;55972:38:0::2;56004:4;55972:38;::::0;;56058:11:::2;::::0;55972:14:::2;::::0;56046:33:::2;::::0;56075:3:::2;::::0;56046:24:::2;::::0;:7;;:24:::2;:11;:24;:::i;:33::-;56098:14;::::0;:47:::2;::::0;;-1:-1:-1;;;56098:47:0;;-1:-1:-1;;;;;56098:47:0;;::::2;;::::0;::::2;::::0;;;;;;;;;56021:58;;-1:-1:-1;56098:14:0;::::2;::::0;:23:::2;::::0;:47;;;;;::::2;::::0;;;;;;;;;:14:::2;::::0;:47;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;56098:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56098:47:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;-1:-1:::0;56098:47:0;56090:56:::2;;;::::0;::::2;;56165:14;::::0;:57:::2;::::0;;-1:-1:-1;;;56165:57:0;;-1:-1:-1;;;;;56165:57:0;;::::2;;::::0;::::2;::::0;;;;;;;;;:14;;;::::2;::::0;:23:::2;::::0;:57;;;;;::::2;::::0;;;;;;;;:14:::2;::::0;:57;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;56165:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56165:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;-1:-1:::0;56165:57:0;56157:66:::2;;;::::0;::::2;;56234:14;:38:::0;;-1:-1:-1;;;;;;56234:38:0::2;-1:-1:-1::0;;;;;56234:38:0;;::::2;::::0;;;::::2;::::0;;;;56291:65:::2;::::0;;-1:-1:-1;;;56291:65:0;;;;::::2;;::::0;::::2;::::0;56342:4:::2;56291:65:::0;;;;;;;;;;;;:14;;;::::2;::::0;:27:::2;::::0;:65;;;;;::::2;::::0;;;;;;;;;-1:-1:-1;56291:14:0;:65;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;56291:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56291:65:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;-1:-1:::0;56291:65:0;56283:74:::2;;;::::0;::::2;;56376:14;::::0;56400:17:::2;::::0;56376:50:::2;::::0;;-1:-1:-1;;;56376:50:0;;56400:17;;;::::2;-1:-1:-1::0;;;;;56400:17:0;;::::2;56376:50;::::0;::::2;::::0;;;;;;;;;:14;::::2;::::0;:23:::2;::::0;:50;;;;;::::2;::::0;;;;;;;;;:14:::2;::::0;:50;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;56376:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56376:50:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::2;2:2;-1:-1:::0;56376:50:0;56368:59:::2;;;::::0;::::2;;52106:24;::::0;;-1:-1:-1;;;52106:24:0;;;;;;;;::::2;::::0;;;56438:38:::2;::::0;56462:13;56438:10:::2;:38::i;:::-;56520:16;56487:15;:30;56503:13;-1:-1:-1::0;;;;;56487:30:0::2;-1:-1:-1::0;;;;;56487:30:0::2;;;;;;;;;;;;;:49;;;;;-1:-1:-1::0;;;;;56487:49:0::2;;;;;-1:-1:-1::0;;;;;56487:49:0::2;;;;;;56547:17;:35;56565:16;-1:-1:-1::0;;;;;56547:35:0::2;-1:-1:-1::0;;;;;56547:35:0::2;;;;;;;;;;;;56588:13;56547:55;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;56547:55:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;56547:55:0::2;;;;;-1:-1:-1::0;;;;;56547:55:0::2;;;;;;56668:16;-1:-1:-1::0;;;;;56613:104:0::2;56634:13;-1:-1:-1::0;;;;;56613:104:0::2;;56649:17;;;;;;;;;-1:-1:-1::0;;;;;56649:17:0::2;56686:6;56694:7;56703:13;56613:104;;;;-1:-1:-1::0;;;;;56613:104:0::2;-1:-1:-1::0;;;;;56613:104:0::2;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;56613:104:0::2;-1:-1:-1::0;;;;;56613:104:0::2;;;;;;;;;;;;;;;;;;-1:-1:-1::0;56735:7:0;;55394:1356;-1:-1:-1;;;;;;;;55394:1356:0:o;51778:29::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51778:29:0;;-1:-1:-1;51778:29:0;:::o;54167:140::-;52106:24;;;-1:-1:-1;;;52106:24:0;;;;;;;;;;;;54239:4;;54261:38;;54282:16;54261:7;:38::i;45636:49::-;45681:4;45636:49;:::o;17805:269::-;17898:4;17915:129;17924:12;:10;:12::i;:::-;17938:7;17947:96;17986:15;17947:96;;;;;;;;;;;;;;;;;:11;:25;17959:12;:10;:12::i;:::-;-1:-1:-1;;;;;17947:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17947:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;56973:239::-;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;57119:30:::1;::::0;;-1:-1:-1;;;57119:30:0;;57143:4:::1;57119:30;::::0;::::1;::::0;;;57083:6;;57061:12:::1;::::0;-1:-1:-1;;;;;57119:15:0;::::1;::::0;::::1;::::0;:30;;;;;::::1;::::0;;;;;;;;:15;:30;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;57119:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57119:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;57119:30:0;57168:35:::1;::::0;;-1:-1:-1;;;57168:35:0;;-1:-1:-1;;;;;57168:35:0;;::::1;;::::0;::::1;::::0;;;;;;;;;57119:30;;-1:-1:-1;57168:14:0;;::::1;::::0;::::1;::::0;:35;;;;;57119:30:::1;::::0;57168:35;;;;;;;;-1:-1:-1;57168:14:0;:35;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;57168:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57168:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;57168:35:0;57160:44:::1;;;::::0;::::1;;23863:1;;56973:239:::0;;:::o;15167:175::-;15253:4;15270:42;15280:12;:10;:12::i;:::-;15294:9;15305:6;15270:9;:42::i;47204:127::-;47267:7;47294:12;;;:6;:12;;;;;:29;;:27;:29::i;49105:230::-;49198:12;;;;:6;:12;;;;;:22;;;49190:45;;49222:12;:10;:12::i;49190:45::-;49182:106;;;;-1:-1:-1;;;49182:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15405:151;-1:-1:-1;;;;;15521:18:0;;;15494:7;15521:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15405:151::o;57220:109::-;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;57272:17:::1;::::0;:49:::1;::::0;-1:-1:-1;;;;;57272:17:0;;;::::1;::::0;;;::::1;::::0;57299:21:::1;57272:49:::0;::::1;;;::::0;::::1;::::0;;;57299:21;57272:17;:49;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;57272:49:0;57220:109::o:0;53657:204::-;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;53745:12:::1;53761:1;53745:17;53742:50;;;52106:24;::::0;;-1:-1:-1;;;52106:24:0;;;;;;;;::::1;::::0;;;53764:28:::1;::::0;53788:3;53764:10:::1;:28::i;:::-;53806:17:::0;53803:50:::1;;52106:24;::::0;;-1:-1:-1;;;52106:24:0;;;;;;;;::::1;::::0;;;53825:28:::1;::::0;53849:3;53825:10:::1;:28::i;24526:244::-:0;23803:12;:10;:12::i;:::-;-1:-1:-1;;;;;23792:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;23792:23:0;;23784:68;;;;;-1:-1:-1;;;23784:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23784:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;24615:22:0;::::1;24607:73;;;;-1:-1:-1::0;;;24607:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24717:6;::::0;24696:38:::1;::::0;-1:-1:-1;;;;;24696:38:0;;::::1;::::0;24717:6:::1;::::0;::::1;;::::0;24696:38:::1;::::0;;;::::1;24745:6;:17:::0;;-1:-1:-1;;;;;24745:17:0;;::::1;;;-1:-1:-1::0;;;;;;24745:17:0;;::::1;::::0;;;::::1;::::0;;24526:244::o;667:106::-;755:10;667:106;:::o;20952:346::-;-1:-1:-1;;;;;21054:19:0;;21046:68;;;;-1:-1:-1;;;21046:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21133:21:0;;21125:68;;;;-1:-1:-1;;;21125:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21206:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21258:32;;;;;;;;;;;;;;;;;20952:346;;;:::o;7570:220::-;7628:7;7652:6;7648:20;;-1:-1:-1;7667:1:0;7660:8;;7648:20;7691:5;;;7695:1;7691;:5;:1;7715:5;;;;;:10;7707:56;;;;-1:-1:-1;;;7707:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8268:153;8326:7;8358:1;8354;:5;8346:44;;;;;-1:-1:-1;;;8346:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8412:1;8408;:5;;;;;;;8268:153;-1:-1:-1;;;8268:153:0:o;18564:539::-;-1:-1:-1;;;;;18670:20:0;;18662:70;;;;-1:-1:-1;;;18662:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18751:23:0;;18743:71;;;;-1:-1:-1;;;18743:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18827:47;18848:6;18856:9;18867:6;18827:20;:47::i;:::-;18907:71;18929:6;18907:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18907:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;18887:17:0;;;:9;:17;;;;;;;;;;;:91;;;;19012:20;;;;;;;:32;;19037:6;19012:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;18989:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19060:35;;;;;;;18989:20;;19060:35;;;;;;;;;;;;;18564:539;;;:::o;9518:166::-;9604:7;9640:12;9632:6;;;;9624:29;;;;-1:-1:-1;;;9624:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9624:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9671:5:0;;;9518:166::o;51085:188::-;51159:12;;;;:6;:12;;;;;:33;;51184:7;51159:33;:24;:33;:::i;:::-;51155:111;;;51241:12;:10;:12::i;:::-;-1:-1:-1;;;;;51214:40:0;51232:7;-1:-1:-1;;;;;51214:40:0;51226:4;51214:40;;;;;;;;;;51085:188;;:::o;51281:192::-;51356:12;;;;:6;:12;;;;;:36;;51384:7;51356:36;:27;:36;:::i;:::-;51352:114;;;51441:12;:10;:12::i;:::-;-1:-1:-1;;;;;51414:40:0;51432:7;-1:-1:-1;;;;;51414:40:0;51426:4;51414:40;;;;;;;;;;51281:192;;:::o;6691:179::-;6749:7;6781:5;;;6805:6;;;;6797:46;;;;;-1:-1:-1;;;6797:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;19385:378;-1:-1:-1;;;;;19469:21:0;;19461:65;;;;;-1:-1:-1;;;19461:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19539:49;19568:1;19572:7;19581:6;19539:20;:49::i;:::-;19616:12;;:24;;19633:6;19616:24;:16;:24;:::i;:::-;19601:12;:39;-1:-1:-1;;;;;19672:18:0;;:9;:18;;;;;;;;;;;:30;;19695:6;19672:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;19651:18:0;;:9;:18;;;;;;;;;;;:51;;;;19718:37;;;;;;;19651:18;;:9;;19718:37;;;;;;;;;;19385:378;;:::o;32752:158::-;32826:7;32877:22;32881:3;32893:5;32877:3;:22::i;32038:167::-;32118:4;32142:55;32152:3;-1:-1:-1;;;;;32172:23:0;;32142:9;:55::i;32291:117::-;32354:7;32381:19;32389:3;32381:7;:19::i;22331:92::-;;;;:::o;31466:152::-;31536:4;31560:50;31565:3;-1:-1:-1;;;;;31585:23:0;;31560:4;:50::i;31794:158::-;31867:4;31891:53;31899:3;-1:-1:-1;;;;;31919:23:0;;31891:7;:53::i;29418:204::-;29513:18;;29485:7;;29513:26;-1:-1:-1;29505:73:0;;;;-1:-1:-1;;;29505:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29596:3;:11;;29608:5;29596:18;;;;;;;;;;;;;;;;29589:25;;29418:204;;;;:::o;28750:129::-;28823:4;28847:19;;;:12;;;;;:19;;;;;;:24;;;28750:129::o;28965:109::-;29048:18;;28965:109::o;26530:414::-;26593:4;26615:21;26625:3;26630:5;26615:9;:21::i;:::-;26610:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;26653:11:0;:23;;;;;;;;;;;;;26836:18;;26814:19;;;:12;;;:19;;;;;;:40;;;;26869:11;;26610:327;-1:-1:-1;26920:5:0;26913:12;;27120:1544;27186:4;27325:19;;;:12;;;:19;;;;;;27361:15;;27357:1300;;27796:18;;-1:-1:-1;;27747:14:0;;;;27796:22;;;;27723:21;;27796:3;;:22;;28083;;;;;;;;;;;;;;28063:42;;28229:9;28200:3;:11;;28212:13;28200:26;;;;;;;;;;;;;;;;;;;:38;;;;28306:23;;;28348:1;28306:12;;;:23;;;;;;28332:17;;;28306:43;;28458:17;;28306:3;;28458:17;;;;;;;;;;;;;;;;;;;;;;28553:3;:12;;:19;28566:5;28553:19;;;;;;;;;;;28546:26;;;28596:4;28589:11;;;;;;;;27357:1300;28640:5;28633:12;;;;;51581:5753;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51581:5753:0;-1:-1:-1;;;;;51581:5753:0;;;;;;;;;;;-1:-1:-1;51581:5753:0;;;;;;;-1:-1:-1;51581:5753:0;;;-1:-1:-1;51581:5753:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;;51581:5753:0;;;;;;

Swarm Source

ipfs://40b5531c61c398796efb45015bca06186028cc6e58119c1bf6c483a6ef57e7d5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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