ETH Price: $3,058.19 (+1.43%)
Gas: 3 Gwei

Token

Solis Finance (SOLIS)
 

Overview

Max Total Supply

732,846,550.407997733214176446 SOLIS

Holders

95

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
6mgzyn.eth
Balance
5,843,200.960313335794330199 SOLIS

Value
$0.00
0xffe8fe19f70266745857cc58f4f8317f2cdb99c5
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:
SOLIS

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-14
*/

/**

Website: https://www.solis.finance
Twitter: https://twitter.com/finance_solis
Telegram: https://t.me/solis_finance
Medium: https://medium.com/@Solis_finance


**/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;
pragma experimental ABIEncoderV2;

/**
 * @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 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) {
        return msg.sender;
    }

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
   constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

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

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract SOLIS is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant DEAD = address(0xdead);

    bool private swapping;

    address public solis;

    uint256 public maxTxAmount;
    uint256 public swapTokensAmt;
    uint256 public maxWalletAmt;

    bool public limitsEffected = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 public buySolisFee;
    uint256 public sellSolisFee;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedForMaxTx;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );


    constructor() ERC20("Solis Finance", "SOLIS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
 
        uint256 totalSupply = 1000000000 * 1e18;

        maxTxAmount = (totalSupply * 2) * 100; // 2%
        maxWalletAmt = (totalSupply * 2 / 100); // 2% 
        swapTokensAmt = (totalSupply * 8) / 1000000; // 0.05% 

        buySolisFee = 15;
        sellSolisFee = 15;

        solis = address(0x3a114f98A3cd0DE4d0d1249742f1e0F39d5cBD9c);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(solis, true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsEffected = false;
        return true;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedForMaxTx[updAds] = isEx;
    }

    function createTF() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        addLiquidity(balanceOf(address(this)), address(this).balance);
    }

    function reduceTaxFees() external onlyOwner {
        buySolisFee = 1;
        sellSolisFee = 1;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsEffected) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedForMaxTx[to]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Buy transfer amount exceeds the maxTxAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmt,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedForMaxTx[from]
                ) {
                    require(
                        amount <= maxTxAmount,
                        "Sell transfer amount exceeds the maxTxAmount."
                    );
                } else if (!_isExcludedForMaxTx[to]) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmt,
                        "Max wallet exceeded"
                    );
                }
            }
        } else if (!_isExcludedFromFees[from] && _isExcludedForMaxTx[from] && to == DEAD) {
            super._burn(uniswapV2Pair, amount);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAmt;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            amount >= swapTokensAmt &&
            automatedMarketMakerPairs[to] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellSolisFee > 0) {
                fees = amount.mul(sellSolisFee).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buySolisFee > 0) {
                fees = amount.mul(buySolisFee).div(100);
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAmt * 1100) {
            contractBalance = swapTokensAmt * 1100;
        }

        swapTokensForEth(contractBalance);
        
        payable(solis).transfer(address(this).balance);
    }

    function withdrawStuckToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedForMaxTx","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySolisFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createTF","outputs":[],"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEffected","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reduceTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellSolisFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"solis","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805462ffffff191660011790553480156200002057600080fd5b506040518060400160405280600d81526020016c536f6c69732046696e616e636560981b81525060405180604001604052806005815260200164534f4c495360d81b815250816003908162000076919062000514565b50600462000085828262000514565b505050620000a26200009c6200020c60201b60201c565b62000210565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c481600162000262565b6001600160a01b0381166080526b033b2e3c9fd0803ce8000000620000eb816002620005f6565b620000f8906064620005f6565b60085560646200010a826002620005f6565b62000116919062000616565b600a55620f42406200012a826008620005f6565b62000136919062000616565b600955600f600c819055600d55600780546001600160a01b031916733a114f98a3cd0de4d0d1249742f1e0f39d5cbd9c17905562000188620001806005546001600160a01b031690565b6001620002dc565b62000195306001620002dc565b620001a461dead6001620002dc565b600754620001bd906001600160a01b0316600162000262565b620001dc620001d46005546001600160a01b031690565b600162000262565b620001e930600162000262565b620001f861dead600162000262565b62000204338262000386565b50506200064f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620002b15760405162461bcd60e51b815260206004820181905260248201526000805160206200291683398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620003275760405162461bcd60e51b81526020600482018190526024820152600080516020620029168339815191526044820152606401620002a8565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003de5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002a8565b8060026000828254620003f2919062000639565b90915550506001600160a01b038216600090815260208190526040812080548392906200042190849062000639565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200049b57607f821691505b602082108103620004bc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046b57600081815260208120601f850160051c81016020861015620004eb5750805b601f850160051c820191505b818110156200050c57828155600101620004f7565b505050505050565b81516001600160401b0381111562000530576200053062000470565b620005488162000541845462000486565b84620004c2565b602080601f831160018114620005805760008415620005675750858301515b600019600386901b1c1916600185901b1785556200050c565b600085815260208120601f198616915b82811015620005b15788860151825594840194600190910190840162000590565b5085821015620005d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006105762000610620005e0565b92915050565b6000826200063457634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006105762000610620005e0565b60805161227a6200069c600039600081816102fc01528181610e0a01528181610e9b015281816118680152818161188f01528181611d0501528181611dbe0152611dfa015261227a6000f3fe6080604052600436106102295760003560e01c8063751039fc11610123578063a518f70d116100ab578063bc205ad31161006f578063bc205ad314610668578063c024666814610688578063dd62ed3e146106a8578063ed0c6652146106ee578063f2fde38b1461070357600080fd5b8063a518f70d146105ce578063a9059cbb146105e3578063b62496f514610603578063bb81150814610633578063bbc0c7421461064957600080fd5b80638c0b5e22116100f25780638c0b5e22146105455780638da5cb5b1461055b57806395d89b41146105795780639a7a23d61461058e578063a457c2d7146105ae57600080fd5b8063751039fc146104db5780637571336a146104f05780637ca8448a146105105780638a8c523c1461053057600080fd5b80634676ce8b116101b15780634fbee193116101755780634fbee1931461041f578063507bc5ac146104585780636ddd17131461046e57806370a082311461048e578063715018a6146104c457600080fd5b80634676ce8b1461039957806348e75243146103af57806349bd5a5e146103c55780634a38e207146103e55780634fa5d8dd146103ff57600080fd5b80631694505e116101f85780631694505e146102ea57806318160ddd1461031e57806323b872dd1461033d578063313ce5671461035d578063395093511461037957600080fd5b806303fd2a451461023557806306fdde0314610268578063095ea7b31461028a5780630e391304146102ba57600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024b61dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561027457600080fd5b5061027d610723565b60405161025f9190611e6e565b34801561029657600080fd5b506102aa6102a5366004611ed1565b6107b5565b604051901515815260200161025f565b3480156102c657600080fd5b506102aa6102d5366004611efd565b600f6020526000908152604090205460ff1681565b3480156102f657600080fd5b5061024b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561032a57600080fd5b506002545b60405190815260200161025f565b34801561034957600080fd5b506102aa610358366004611f1a565b6107cc565b34801561036957600080fd5b506040516012815260200161025f565b34801561038557600080fd5b506102aa610394366004611ed1565b61087b565b3480156103a557600080fd5b5061032f60095481565b3480156103bb57600080fd5b5061032f600c5481565b3480156103d157600080fd5b5060065461024b906001600160a01b031681565b3480156103f157600080fd5b50600b546102aa9060ff1681565b34801561040b57600080fd5b5060075461024b906001600160a01b031681565b34801561042b57600080fd5b506102aa61043a366004611efd565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561046457600080fd5b5061032f600d5481565b34801561047a57600080fd5b50600b546102aa9062010000900460ff1681565b34801561049a57600080fd5b5061032f6104a9366004611efd565b6001600160a01b031660009081526020819052604090205490565b3480156104d057600080fd5b506104d96108b7565b005b3480156104e757600080fd5b506102aa6108ed565b3480156104fc57600080fd5b506104d961050b366004611f69565b61092a565b34801561051c57600080fd5b506104d961052b366004611efd565b61097f565b34801561053c57600080fd5b506104d9610a0d565b34801561055157600080fd5b5061032f60085481565b34801561056757600080fd5b506005546001600160a01b031661024b565b34801561058557600080fd5b5061027d610a4a565b34801561059a57600080fd5b506104d96105a9366004611f69565b610a59565b3480156105ba57600080fd5b506102aa6105c9366004611ed1565b610b11565b3480156105da57600080fd5b506104d9610baa565b3480156105ef57600080fd5b506102aa6105fe366004611ed1565b610be0565b34801561060f57600080fd5b506102aa61061e366004611efd565b60106020526000908152604090205460ff1681565b34801561063f57600080fd5b5061032f600a5481565b34801561065557600080fd5b50600b546102aa90610100900460ff1681565b34801561067457600080fd5b506104d9610683366004611fa2565b610bed565b34801561069457600080fd5b506104d96106a3366004611f69565b610d55565b3480156106b457600080fd5b5061032f6106c3366004611fa2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fa57600080fd5b506104d9610dde565b34801561070f57600080fd5b506104d961071e366004611efd565b610fe7565b60606003805461073290611fd0565b80601f016020809104026020016040519081016040528092919081815260200182805461075e90611fd0565b80156107ab5780601f10610780576101008083540402835291602001916107ab565b820191906000526020600020905b81548152906001019060200180831161078e57829003601f168201915b5050505050905090565b60006107c2338484611082565b5060015b92915050565b60006107d98484846111a6565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108635760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108708533858403611082565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c29185906108b2908690612020565b611082565b6005546001600160a01b031633146108e15760405162461bcd60e51b815260040161085a90612033565b6108eb60006117bc565b565b6005546000906001600160a01b0316331461091a5760405162461bcd60e51b815260040161085a90612033565b50600b805460ff19169055600190565b6005546001600160a01b031633146109545760405162461bcd60e51b815260040161085a90612033565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109a95760405162461bcd60e51b815260040161085a90612033565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146109f6576040519150601f19603f3d011682016040523d82523d6000602084013e6109fb565b606091505b5050905080610a0957600080fd5b5050565b6005546001600160a01b03163314610a375760405162461bcd60e51b815260040161085a90612033565b600b805462ffff00191662010100179055565b60606004805461073290611fd0565b6005546001600160a01b03163314610a835760405162461bcd60e51b815260040161085a90612033565b6006546001600160a01b0390811690831603610b075760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161085a565b610a09828261180e565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161085a565b610ba03385858403611082565b5060019392505050565b6005546001600160a01b03163314610bd45760405162461bcd60e51b815260040161085a90612033565b6001600c819055600d55565b60006107c23384846111a6565b6005546001600160a01b03163314610c175760405162461bcd60e51b815260040161085a90612033565b6001600160a01b038216610c6d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161085a565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd89190612068565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190612081565b50505050565b6005546001600160a01b03163314610d7f5760405162461bcd60e51b815260040161085a90612033565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e085760405162461bcd60e51b815260040161085a90612033565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a919061209e565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b919061209e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c919061209e565b600680546001600160a01b0319166001600160a01b03929092169182179055610fb690600161092a565b600654610fcd906001600160a01b0316600161180e565b306000908152602081905260409020546108eb9047611862565b6005546001600160a01b031633146110115760405162461bcd60e51b815260040161085a90612033565b6001600160a01b0381166110765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b61107f816117bc565b50565b6001600160a01b0383166110e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085a565b6001600160a01b0382166111455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111cc5760405162461bcd60e51b815260040161085a906120bb565b6001600160a01b0382166111f25760405162461bcd60e51b815260040161085a90612100565b8060000361120b5761120683836000611968565b505050565b600b5460ff161561152b576005546001600160a01b0384811691161480159061124257506005546001600160a01b03838116911614155b801561125657506001600160a01b03821615155b801561126d57506001600160a01b03821661dead14155b80156112835750600654600160a01b900460ff16155b1561143257600b54610100900460ff1661131b576001600160a01b0383166000908152600e602052604090205460ff16806112d657506001600160a01b0382166000908152600e602052604090205460ff165b61131b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085a565b6001600160a01b03831660009081526010602052604090205460ff16801561135c57506001600160a01b0382166000908152600f602052604090205460ff16155b15611437576008548111156113c85760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b606482015260840161085a565b600a546001600160a01b0383166000908152602081905260409020546113ee9083612020565b11156114325760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b61159d565b6001600160a01b03821660009081526010602052604090205460ff16801561147857506001600160a01b0383166000908152600f602052604090205460ff16155b156114e5576008548111156114325760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b606482015260840161085a565b6001600160a01b0382166000908152600f602052604090205460ff1661143257600a546001600160a01b0383166000908152602081905260409020546113ee9083612020565b6001600160a01b0383166000908152600e602052604090205460ff1615801561156c57506001600160a01b0383166000908152600f602052604090205460ff165b801561158257506001600160a01b03821661dead145b1561159d57600654611206906001600160a01b031682611abc565b30600090815260208190526040902054600954811080159081906115c95750600b5462010000900460ff165b80156115df5750600654600160a01b900460ff16155b80156115ed57506009548310155b801561161157506001600160a01b03841660009081526010602052604090205460ff165b801561163657506001600160a01b0385166000908152600e602052604090205460ff16155b801561165b57506001600160a01b0384166000908152600e602052604090205460ff16155b15611689576006805460ff60a01b1916600160a01b17905561167b611c0a565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152600e602052604090205460ff600160a01b9092048216159116806116d757506001600160a01b0385166000908152600e602052604090205460ff165b156116e0575060005b600081156117a8576001600160a01b03861660009081526010602052604090205460ff16801561171257506000600d54115b1561173e576117376064611731600d5488611c8f90919063ffffffff16565b90611ca2565b905061178a565b6001600160a01b03871660009081526010602052604090205460ff16801561176857506000600c54115b1561178a576117876064611731600c5488611c8f90919063ffffffff16565b90505b801561179b5761179b873083611968565b6117a58186612143565b94505b6117b3878787611968565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61188d307f000000000000000000000000000000000000000000000000000000000000000084611082565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806118d46005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561193c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119619190612156565b5050505050565b6001600160a01b03831661198e5760405162461bcd60e51b815260040161085a906120bb565b6001600160a01b0382166119b45760405162461bcd60e51b815260040161085a90612100565b6001600160a01b03831660009081526020819052604090205481811015611a2c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a63908490612020565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aaf91815260200190565b60405180910390a3610d4f565b6001600160a01b038216611b1c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161085a565b6001600160a01b03821660009081526020819052604090205481811015611b905760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161085a565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611bbf908490612143565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b3060009081526020819052604081205490819003611c255750565b600954611c349061044c612184565b811115611c4d57600954611c4a9061044c612184565b90505b611c5681611cae565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a09573d6000803e3d6000fd5b6000611c9b8284612184565b9392505050565b6000611c9b828461219b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ce357611ce36121bd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d85919061209e565b81600181518110611d9857611d986121bd565b60200260200101906001600160a01b031690816001600160a01b031681525050611de3307f000000000000000000000000000000000000000000000000000000000000000084611082565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e389085906000908690309042906004016121d3565b600060405180830381600087803b158015611e5257600080fd5b505af1158015611e66573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611e9b57858101830151858201604001528201611e7f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461107f57600080fd5b60008060408385031215611ee457600080fd5b8235611eef81611ebc565b946020939093013593505050565b600060208284031215611f0f57600080fd5b8135611c9b81611ebc565b600080600060608486031215611f2f57600080fd5b8335611f3a81611ebc565b92506020840135611f4a81611ebc565b929592945050506040919091013590565b801515811461107f57600080fd5b60008060408385031215611f7c57600080fd5b8235611f8781611ebc565b91506020830135611f9781611f5b565b809150509250929050565b60008060408385031215611fb557600080fd5b8235611fc081611ebc565b91506020830135611f9781611ebc565b600181811c90821680611fe457607f821691505b60208210810361200457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c6576107c661200a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561207a57600080fd5b5051919050565b60006020828403121561209357600080fd5b8151611c9b81611f5b565b6000602082840312156120b057600080fd5b8151611c9b81611ebc565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107c6576107c661200a565b60008060006060848603121561216b57600080fd5b8351925060208401519150604084015190509250925092565b80820281158282048414176107c6576107c661200a565b6000826121b857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122235784516001600160a01b0316835293830193918301916001016121fe565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c9d804de8d777437697dda3ddfe32f76fb99737e02c4e2d20c40c4180ecd9d9e64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063751039fc11610123578063a518f70d116100ab578063bc205ad31161006f578063bc205ad314610668578063c024666814610688578063dd62ed3e146106a8578063ed0c6652146106ee578063f2fde38b1461070357600080fd5b8063a518f70d146105ce578063a9059cbb146105e3578063b62496f514610603578063bb81150814610633578063bbc0c7421461064957600080fd5b80638c0b5e22116100f25780638c0b5e22146105455780638da5cb5b1461055b57806395d89b41146105795780639a7a23d61461058e578063a457c2d7146105ae57600080fd5b8063751039fc146104db5780637571336a146104f05780637ca8448a146105105780638a8c523c1461053057600080fd5b80634676ce8b116101b15780634fbee193116101755780634fbee1931461041f578063507bc5ac146104585780636ddd17131461046e57806370a082311461048e578063715018a6146104c457600080fd5b80634676ce8b1461039957806348e75243146103af57806349bd5a5e146103c55780634a38e207146103e55780634fa5d8dd146103ff57600080fd5b80631694505e116101f85780631694505e146102ea57806318160ddd1461031e57806323b872dd1461033d578063313ce5671461035d578063395093511461037957600080fd5b806303fd2a451461023557806306fdde0314610268578063095ea7b31461028a5780630e391304146102ba57600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024b61dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561027457600080fd5b5061027d610723565b60405161025f9190611e6e565b34801561029657600080fd5b506102aa6102a5366004611ed1565b6107b5565b604051901515815260200161025f565b3480156102c657600080fd5b506102aa6102d5366004611efd565b600f6020526000908152604090205460ff1681565b3480156102f657600080fd5b5061024b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561032a57600080fd5b506002545b60405190815260200161025f565b34801561034957600080fd5b506102aa610358366004611f1a565b6107cc565b34801561036957600080fd5b506040516012815260200161025f565b34801561038557600080fd5b506102aa610394366004611ed1565b61087b565b3480156103a557600080fd5b5061032f60095481565b3480156103bb57600080fd5b5061032f600c5481565b3480156103d157600080fd5b5060065461024b906001600160a01b031681565b3480156103f157600080fd5b50600b546102aa9060ff1681565b34801561040b57600080fd5b5060075461024b906001600160a01b031681565b34801561042b57600080fd5b506102aa61043a366004611efd565b6001600160a01b03166000908152600e602052604090205460ff1690565b34801561046457600080fd5b5061032f600d5481565b34801561047a57600080fd5b50600b546102aa9062010000900460ff1681565b34801561049a57600080fd5b5061032f6104a9366004611efd565b6001600160a01b031660009081526020819052604090205490565b3480156104d057600080fd5b506104d96108b7565b005b3480156104e757600080fd5b506102aa6108ed565b3480156104fc57600080fd5b506104d961050b366004611f69565b61092a565b34801561051c57600080fd5b506104d961052b366004611efd565b61097f565b34801561053c57600080fd5b506104d9610a0d565b34801561055157600080fd5b5061032f60085481565b34801561056757600080fd5b506005546001600160a01b031661024b565b34801561058557600080fd5b5061027d610a4a565b34801561059a57600080fd5b506104d96105a9366004611f69565b610a59565b3480156105ba57600080fd5b506102aa6105c9366004611ed1565b610b11565b3480156105da57600080fd5b506104d9610baa565b3480156105ef57600080fd5b506102aa6105fe366004611ed1565b610be0565b34801561060f57600080fd5b506102aa61061e366004611efd565b60106020526000908152604090205460ff1681565b34801561063f57600080fd5b5061032f600a5481565b34801561065557600080fd5b50600b546102aa90610100900460ff1681565b34801561067457600080fd5b506104d9610683366004611fa2565b610bed565b34801561069457600080fd5b506104d96106a3366004611f69565b610d55565b3480156106b457600080fd5b5061032f6106c3366004611fa2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106fa57600080fd5b506104d9610dde565b34801561070f57600080fd5b506104d961071e366004611efd565b610fe7565b60606003805461073290611fd0565b80601f016020809104026020016040519081016040528092919081815260200182805461075e90611fd0565b80156107ab5780601f10610780576101008083540402835291602001916107ab565b820191906000526020600020905b81548152906001019060200180831161078e57829003601f168201915b5050505050905090565b60006107c2338484611082565b5060015b92915050565b60006107d98484846111a6565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108635760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108708533858403611082565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c29185906108b2908690612020565b611082565b6005546001600160a01b031633146108e15760405162461bcd60e51b815260040161085a90612033565b6108eb60006117bc565b565b6005546000906001600160a01b0316331461091a5760405162461bcd60e51b815260040161085a90612033565b50600b805460ff19169055600190565b6005546001600160a01b031633146109545760405162461bcd60e51b815260040161085a90612033565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146109a95760405162461bcd60e51b815260040161085a90612033565b6000816001600160a01b03164760405160006040518083038185875af1925050503d80600081146109f6576040519150601f19603f3d011682016040523d82523d6000602084013e6109fb565b606091505b5050905080610a0957600080fd5b5050565b6005546001600160a01b03163314610a375760405162461bcd60e51b815260040161085a90612033565b600b805462ffff00191662010100179055565b60606004805461073290611fd0565b6005546001600160a01b03163314610a835760405162461bcd60e51b815260040161085a90612033565b6006546001600160a01b0390811690831603610b075760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161085a565b610a09828261180e565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161085a565b610ba03385858403611082565b5060019392505050565b6005546001600160a01b03163314610bd45760405162461bcd60e51b815260040161085a90612033565b6001600c819055600d55565b60006107c23384846111a6565b6005546001600160a01b03163314610c175760405162461bcd60e51b815260040161085a90612033565b6001600160a01b038216610c6d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000604482015260640161085a565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015610cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd89190612068565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015610d2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4f9190612081565b50505050565b6005546001600160a01b03163314610d7f5760405162461bcd60e51b815260040161085a90612033565b6001600160a01b0382166000818152600e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e085760405162461bcd60e51b815260040161085a90612033565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8a919061209e565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b919061209e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610f68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8c919061209e565b600680546001600160a01b0319166001600160a01b03929092169182179055610fb690600161092a565b600654610fcd906001600160a01b0316600161180e565b306000908152602081905260409020546108eb9047611862565b6005546001600160a01b031633146110115760405162461bcd60e51b815260040161085a90612033565b6001600160a01b0381166110765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b61107f816117bc565b50565b6001600160a01b0383166110e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085a565b6001600160a01b0382166111455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111cc5760405162461bcd60e51b815260040161085a906120bb565b6001600160a01b0382166111f25760405162461bcd60e51b815260040161085a90612100565b8060000361120b5761120683836000611968565b505050565b600b5460ff161561152b576005546001600160a01b0384811691161480159061124257506005546001600160a01b03838116911614155b801561125657506001600160a01b03821615155b801561126d57506001600160a01b03821661dead14155b80156112835750600654600160a01b900460ff16155b1561143257600b54610100900460ff1661131b576001600160a01b0383166000908152600e602052604090205460ff16806112d657506001600160a01b0382166000908152600e602052604090205460ff165b61131b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085a565b6001600160a01b03831660009081526010602052604090205460ff16801561135c57506001600160a01b0382166000908152600f602052604090205460ff16155b15611437576008548111156113c85760405162461bcd60e51b815260206004820152602c60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526b36b0bc2a3c20b6b7bab73a1760a11b606482015260840161085a565b600a546001600160a01b0383166000908152602081905260409020546113ee9083612020565b11156114325760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b61159d565b6001600160a01b03821660009081526010602052604090205460ff16801561147857506001600160a01b0383166000908152600f602052604090205460ff16155b156114e5576008548111156114325760405162461bcd60e51b815260206004820152602d60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526c1036b0bc2a3c20b6b7bab73a1760991b606482015260840161085a565b6001600160a01b0382166000908152600f602052604090205460ff1661143257600a546001600160a01b0383166000908152602081905260409020546113ee9083612020565b6001600160a01b0383166000908152600e602052604090205460ff1615801561156c57506001600160a01b0383166000908152600f602052604090205460ff165b801561158257506001600160a01b03821661dead145b1561159d57600654611206906001600160a01b031682611abc565b30600090815260208190526040902054600954811080159081906115c95750600b5462010000900460ff165b80156115df5750600654600160a01b900460ff16155b80156115ed57506009548310155b801561161157506001600160a01b03841660009081526010602052604090205460ff165b801561163657506001600160a01b0385166000908152600e602052604090205460ff16155b801561165b57506001600160a01b0384166000908152600e602052604090205460ff16155b15611689576006805460ff60a01b1916600160a01b17905561167b611c0a565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152600e602052604090205460ff600160a01b9092048216159116806116d757506001600160a01b0385166000908152600e602052604090205460ff165b156116e0575060005b600081156117a8576001600160a01b03861660009081526010602052604090205460ff16801561171257506000600d54115b1561173e576117376064611731600d5488611c8f90919063ffffffff16565b90611ca2565b905061178a565b6001600160a01b03871660009081526010602052604090205460ff16801561176857506000600c54115b1561178a576117876064611731600c5488611c8f90919063ffffffff16565b90505b801561179b5761179b873083611968565b6117a58186612143565b94505b6117b3878787611968565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260106020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b61188d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611082565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806118d46005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561193c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119619190612156565b5050505050565b6001600160a01b03831661198e5760405162461bcd60e51b815260040161085a906120bb565b6001600160a01b0382166119b45760405162461bcd60e51b815260040161085a90612100565b6001600160a01b03831660009081526020819052604090205481811015611a2c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a63908490612020565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aaf91815260200190565b60405180910390a3610d4f565b6001600160a01b038216611b1c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161085a565b6001600160a01b03821660009081526020819052604090205481811015611b905760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161085a565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611bbf908490612143565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b3060009081526020819052604081205490819003611c255750565b600954611c349061044c612184565b811115611c4d57600954611c4a9061044c612184565b90505b611c5681611cae565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a09573d6000803e3d6000fd5b6000611c9b8284612184565b9392505050565b6000611c9b828461219b565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ce357611ce36121bd565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d85919061209e565b81600181518110611d9857611d986121bd565b60200260200101906001600160a01b031690816001600160a01b031681525050611de3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611082565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e389085906000908690309042906004016121d3565b600060405180830381600087803b158015611e5257600080fd5b505af1158015611e66573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611e9b57858101830151858201604001528201611e7f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461107f57600080fd5b60008060408385031215611ee457600080fd5b8235611eef81611ebc565b946020939093013593505050565b600060208284031215611f0f57600080fd5b8135611c9b81611ebc565b600080600060608486031215611f2f57600080fd5b8335611f3a81611ebc565b92506020840135611f4a81611ebc565b929592945050506040919091013590565b801515811461107f57600080fd5b60008060408385031215611f7c57600080fd5b8235611f8781611ebc565b91506020830135611f9781611f5b565b809150509250929050565b60008060408385031215611fb557600080fd5b8235611fc081611ebc565b91506020830135611f9781611ebc565b600181811c90821680611fe457607f821691505b60208210810361200457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c6576107c661200a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561207a57600080fd5b5051919050565b60006020828403121561209357600080fd5b8151611c9b81611f5b565b6000602082840312156120b057600080fd5b8151611c9b81611ebc565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107c6576107c661200a565b60008060006060848603121561216b57600080fd5b8351925060208401519150604084015190509250925092565b80820281158282048414176107c6576107c661200a565b6000826121b857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122235784516001600160a01b0316835293830193918301916001016121fe565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c9d804de8d777437697dda3ddfe32f76fb99737e02c4e2d20c40c4180ecd9d9e64736f6c63430008130033

Deployed Bytecode Sourcemap

31122:10148:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31290:46;;;;;;;;;;;;31329:6;31290:46;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;31290:46:0;;;;;;;;9081:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11248:169::-;;;;;;;;;;-1:-1:-1;11248:169:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;11248:169:0;1231:187:1;31837:51:0;;;;;;;;;;-1:-1:-1;31837:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31197;;;;;;;;;;;;;;;10201:108;;;;;;;;;;-1:-1:-1;10289:12:0;;10201:108;;;2056:25:1;;;2044:2;2029:18;10201:108:0;1910:177:1;11899:492:0;;;;;;;;;;-1:-1:-1;11899:492:0;;;;;:::i;:::-;;:::i;10043:93::-;;;;;;;;;;-1:-1:-1;10043:93:0;;10126:2;2695:36:1;;2683:2;2668:18;10043:93:0;2553:184:1;12800:215:0;;;;;;;;;;-1:-1:-1;12800:215:0;;;;;:::i;:::-;;:::i;31437:28::-;;;;;;;;;;;;;;;;31628:26;;;;;;;;;;;;;;;;31255:28;;;;;;;;;;-1:-1:-1;31255:28:0;;;;-1:-1:-1;;;;;31255:28:0;;;31508:33;;;;;;;;;;-1:-1:-1;31508:33:0;;;;;;;;31375:20;;;;;;;;;;-1:-1:-1;31375:20:0;;;;-1:-1:-1;;;;;31375:20:0;;;35518:126;;;;;;;;;;-1:-1:-1;35518:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;35608:28:0;35584:4;35608:28;;;:19;:28;;;;;;;;;35518:126;31661:27;;;;;;;;;;;;;;;;31588:31;;;;;;;;;;-1:-1:-1;31588:31:0;;;;;;;;;;;10372:127;;;;;;;;;;-1:-1:-1;10372:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10473:18:0;10446:7;10473:18;;;;;;;;;;;;10372:127;2599:103;;;;;;;;;;;;;:::i;:::-;;34016:121;;;;;;;;;;;;;:::i;34145:155::-;;;;;;;;;;-1:-1:-1;34145:155:0;;;;;:::i;:::-;;:::i;41071:196::-;;;;;;;;;;-1:-1:-1;41071:196:0;;;;;:::i;:::-;;:::i;33852:112::-;;;;;;;;;;;;;:::i;31404:26::-;;;;;;;;;;;;;;;;1948:87;;;;;;;;;;-1:-1:-1;2021:6:0;;-1:-1:-1;;;;;2021:6:0;1948:87;;9300:104;;;;;;;;;;;;;:::i;35010:304::-;;;;;;;;;;-1:-1:-1;35010:304:0;;;;;:::i;:::-;;:::i;13518:413::-;;;;;;;;;;-1:-1:-1;13518:413:0;;;;;:::i;:::-;;:::i;34707:105::-;;;;;;;;;;;;;:::i;10712:175::-;;;;;;;;;;-1:-1:-1;10712:175:0;;;;;:::i;:::-;;:::i;32046:57::-;;;;;;;;;;-1:-1:-1;32046:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31472:27;;;;;;;;;;;;;;;;31548:33;;;;;;;;;;-1:-1:-1;31548:33:0;;;;;;;;;;;40775:288;;;;;;;;;;-1:-1:-1;40775:288:0;;;;;:::i;:::-;;:::i;34820:182::-;;;;;;;;;;-1:-1:-1;34820:182:0;;;;;:::i;:::-;;:::i;10950:151::-;;;;;;;;;;-1:-1:-1;10950:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11066:18:0;;;11039:7;11066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10950:151;34308:391;;;;;;;;;;;;;:::i;2857:201::-;;;;;;;;;;-1:-1:-1;2857:201:0;;;;;:::i;:::-;;:::i;9081:100::-;9135:13;9168:5;9161:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9081:100;:::o;11248:169::-;11331:4;11348:39;897:10;11371:7;11380:6;11348:8;:39::i;:::-;-1:-1:-1;11405:4:0;11248:169;;;;;:::o;11899:492::-;12039:4;12056:36;12066:6;12074:9;12085:6;12056:9;:36::i;:::-;-1:-1:-1;;;;;12132:19:0;;12105:24;12132:19;;;:11;:19;;;;;;;;897:10;12132:33;;;;;;;;12184:26;;;;12176:79;;;;-1:-1:-1;;;12176:79:0;;4232:2:1;12176:79:0;;;4214:21:1;4271:2;4251:18;;;4244:30;4310:34;4290:18;;;4283:62;-1:-1:-1;;;4361:18:1;;;4354:38;4409:19;;12176:79:0;;;;;;;;;12291:57;12300:6;897:10;12341:6;12322:16;:25;12291:8;:57::i;:::-;-1:-1:-1;12379:4:0;;11899:492;-1:-1:-1;;;;11899:492:0:o;12800:215::-;897:10;12888:4;12937:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12937:34:0;;;;;;;;;;12888:4;;12905:80;;12928:7;;12937:47;;12974:10;;12937:47;:::i;:::-;12905:8;:80::i;2599:103::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;2664:30:::1;2691:1;2664:18;:30::i;:::-;2599:103::o:0;34016:121::-;2021:6;;34068:4;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;-1:-1:-1;34085:14:0::1;:22:::0;;-1:-1:-1;;34085:22:0::1;::::0;;;34016:121;:::o;34145:155::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34258:27:0;;;::::1;;::::0;;;:19:::1;:27;::::0;;;;:34;;-1:-1:-1;;34258:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34145:155::o;41071:196::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;41144:12:::1;41162:6;-1:-1:-1::0;;;;;41162:11:0::1;41195:21;41162:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41143:89;;;41251:7;41243:16;;;::::0;::::1;;41132:135;41071:196:::0;:::o;33852:112::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;33907:13:::1;:20:::0;;-1:-1:-1;;33938:18:0;;;;;33852:112::o;9300:104::-;9356:13;9389:7;9382:14;;;;;:::i;35010:304::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;35154:13:::1;::::0;-1:-1:-1;;;;;35154:13:0;;::::1;35146:21:::0;;::::1;::::0;35124:128:::1;;;::::0;-1:-1:-1;;;35124:128:0;;5474:2:1;35124:128:0::1;::::0;::::1;5456:21:1::0;5513:2;5493:18;;;5486:30;5552:34;5532:18;;;5525:62;5623:27;5603:18;;;5596:55;5668:19;;35124:128:0::1;5272:421:1::0;35124:128:0::1;35265:41;35294:4;35300:5;35265:28;:41::i;13518:413::-:0;897:10;13611:4;13655:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13655:34:0;;;;;;;;;;13708:35;;;;13700:85;;;;-1:-1:-1;;;13700:85:0;;5900:2:1;13700:85:0;;;5882:21:1;5939:2;5919:18;;;5912:30;5978:34;5958:18;;;5951:62;-1:-1:-1;;;6029:18:1;;;6022:35;6074:19;;13700:85:0;5698:401:1;13700:85:0;13821:67;897:10;13844:7;13872:15;13853:16;:34;13821:8;:67::i;:::-;-1:-1:-1;13919:4:0;;13518:413;-1:-1:-1;;;13518:413:0:o;34707:105::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;34776:1:::1;34762:11;:15:::0;;;34788:12:::1;:16:::0;34707:105::o;10712:175::-;10798:4;10815:42;897:10;10839:9;10850:6;10815:9;:42::i;40775:288::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40870:20:0;::::1;40862:59;;;::::0;-1:-1:-1;;;40862:59:0;;6306:2:1;40862:59:0::1;::::0;::::1;6288:21:1::0;6345:2;6325:18;;;6318:30;6384:28;6364:18;;;6357:56;6430:18;;40862:59:0::1;6104:350:1::0;40862:59:0::1;40959:39;::::0;-1:-1:-1;;;40959:39:0;;40992:4:::1;40959:39;::::0;::::1;160:51:1::0;40932:24:0::1;::::0;-1:-1:-1;;;;;40959:24:0;::::1;::::0;::::1;::::0;133:18:1;;40959:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41009:46;::::0;-1:-1:-1;;;41009:46:0;;-1:-1:-1;;;;;6840:32:1;;;41009:46:0::1;::::0;::::1;6822:51:1::0;6889:18;;;6882:34;;;40932:66:0;;-1:-1:-1;41009:23:0;;::::1;::::0;::::1;::::0;6795:18:1;;41009:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40851:212;40775:288:::0;;:::o;34820:182::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34905:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;34905:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34960:34;;1371:41:1;;;34960:34:0::1;::::0;1344:18:1;34960:34:0::1;;;;;;;34820:182:::0;;:::o;34308:391::-;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;34392:15:::1;-1:-1:-1::0;;;;;34392:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34374:69:0::1;;34452:4;34459:15;-1:-1:-1::0;;;;;34459:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34374:108;::::0;-1:-1:-1;;;;;;34374:108:0::1;::::0;;;;;;-1:-1:-1;;;;;7663:15:1;;;34374:108:0::1;::::0;::::1;7645:34:1::0;7715:15;;7695:18;;;7688:43;7580:18;;34374:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34358:13;:124:::0;;-1:-1:-1;;;;;;34358:124:0::1;-1:-1:-1::0;;;;;34358:124:0;;;::::1;::::0;;::::1;::::0;;34493:55:::1;::::0;-1:-1:-1;34493:25:0::1;:55::i;:::-;34596:13;::::0;34559:58:::1;::::0;-1:-1:-1;;;;;34596:13:0::1;::::0;34559:28:::1;:58::i;:::-;34661:4;10446:7:::0;10473:18;;;;;;;;;;;34630:61:::1;::::0;34669:21:::1;34630:12;:61::i;2857:201::-:0;2021:6;;-1:-1:-1;;;;;2021:6:0;897:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2946:22:0;::::1;2938:73;;;::::0;-1:-1:-1;;;2938:73:0;;7944:2:1;2938:73:0::1;::::0;::::1;7926:21:1::0;7983:2;7963:18;;;7956:30;8022:34;8002:18;;;7995:62;-1:-1:-1;;;8073:18:1;;;8066:36;8119:19;;2938:73:0::1;7742:402:1::0;2938:73:0::1;3022:28;3041:8;3022:18;:28::i;:::-;2857:201:::0;:::o;17202:380::-;-1:-1:-1;;;;;17338:19:0;;17330:68;;;;-1:-1:-1;;;17330:68:0;;8351:2:1;17330:68:0;;;8333:21:1;8390:2;8370:18;;;8363:30;8429:34;8409:18;;;8402:62;-1:-1:-1;;;8480:18:1;;;8473:34;8524:19;;17330:68:0;8149:400:1;17330:68:0;-1:-1:-1;;;;;17417:21:0;;17409:68;;;;-1:-1:-1;;;17409:68:0;;8756:2:1;17409:68:0;;;8738:21:1;8795:2;8775:18;;;8768:30;8834:34;8814:18;;;8807:62;-1:-1:-1;;;8885:18:1;;;8878:32;8927:19;;17409:68:0;8554:398:1;17409:68:0;-1:-1:-1;;;;;17490:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17542:32;;2056:25:1;;;17542:32:0;;2029:18:1;17542:32:0;;;;;;;17202:380;;;:::o;35652:3587::-;-1:-1:-1;;;;;35784:18:0;;35776:68;;;;-1:-1:-1;;;35776:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35863:16:0;;35855:64;;;;-1:-1:-1;;;35855:64:0;;;;;;;:::i;:::-;35936:6;35946:1;35936:11;35932:93;;35964:28;35980:4;35986:2;35990:1;35964:15;:28::i;:::-;35652:3587;;;:::o;35932:93::-;36041:14;;;;36037:1791;;;2021:6;;-1:-1:-1;;;;;36094:15:0;;;2021:6;;36094:15;;;;:49;;-1:-1:-1;2021:6:0;;-1:-1:-1;;;;;36130:13:0;;;2021:6;;36130:13;;36094:49;:86;;;;-1:-1:-1;;;;;;36164:16:0;;;;36094:86;:128;;;;-1:-1:-1;;;;;;36201:21:0;;36215:6;36201:21;;36094:128;:158;;;;-1:-1:-1;36244:8:0;;-1:-1:-1;;;36244:8:0;;;;36243:9;36094:158;36072:1582;;;36292:13;;;;;;;36287:223;;-1:-1:-1;;;;;36364:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36393:23:0;;;;;;:19;:23;;;;;;;;36364:52;36330:160;;;;-1:-1:-1;;;36330:160:0;;9969:2:1;36330:160:0;;;9951:21:1;10008:2;9988:18;;;9981:30;-1:-1:-1;;;10027:18:1;;;10020:52;10089:18;;36330:160:0;9767:346:1;36330:160:0;-1:-1:-1;;;;;36584:31:0;;;;;;:25;:31;;;;;;;;:80;;;;-1:-1:-1;;;;;;36641:23:0;;;;;;:19;:23;;;;;;;;36640:24;36584:80;36558:1081;;;36751:11;;36741:6;:21;;36707:151;;;;-1:-1:-1;;;36707:151:0;;10320:2:1;36707:151:0;;;10302:21:1;10359:2;10339:18;;;10332:30;10398:34;10378:18;;;10371:62;-1:-1:-1;;;10449:18:1;;;10442:42;10501:19;;36707:151:0;10118:408:1;36707:151:0;36941:12;;-1:-1:-1;;;;;10473:18:0;;10446:7;10473:18;;;;;;;;;;;36915:22;;:6;:22;:::i;:::-;:38;;36881:143;;;;-1:-1:-1;;;36881:143:0;;10733:2:1;36881:143:0;;;10715:21:1;10772:2;10752:18;;;10745:30;-1:-1:-1;;;10791:18:1;;;10784:49;10850:18;;36881:143:0;10531:343:1;36881:143:0;36037:1791;;36558:1081;-1:-1:-1;;;;;37122:29:0;;;;;;:25;:29;;;;;;;;:80;;;;-1:-1:-1;;;;;;37177:25:0;;;;;;:19;:25;;;;;;;;37176:26;37122:80;37096:543;;;37289:11;;37279:6;:21;;37245:152;;;;-1:-1:-1;;;37245:152:0;;11081:2:1;37245:152:0;;;11063:21:1;11120:2;11100:18;;;11093:30;11159:34;11139:18;;;11132:62;-1:-1:-1;;;11210:18:1;;;11203:43;11263:19;;37245:152:0;10879:409:1;37096:543:0;-1:-1:-1;;;;;37428:23:0;;;;;;:19;:23;;;;;;;;37423:216;;37536:12;;-1:-1:-1;;;;;10473:18:0;;10446:7;10473:18;;;;;;;;;;;37510:22;;:6;:22;:::i;36037:1791::-;-1:-1:-1;;;;;37676:25:0;;;;;;:19;:25;;;;;;;;37675:26;:55;;;;-1:-1:-1;;;;;;37705:25:0;;;;;;:19;:25;;;;;;;;37675:55;:69;;;;-1:-1:-1;;;;;;37734:10:0;;31329:6;37734:10;37675:69;37671:157;;;37773:13;;37761:34;;-1:-1:-1;;;;;37773:13:0;37788:6;37761:11;:34::i;37671:157::-;37889:4;37840:28;10473:18;;;;;;;;;;;37947:13;;37923:37;;;;;;;37991:35;;-1:-1:-1;38015:11:0;;;;;;;37991:35;:61;;;;-1:-1:-1;38044:8:0;;-1:-1:-1;;;38044:8:0;;;;38043:9;37991:61;:101;;;;;38079:13;;38069:6;:23;;37991:101;:147;;;;-1:-1:-1;;;;;;38109:29:0;;;;;;:25;:29;;;;;;;;37991:147;:190;;;;-1:-1:-1;;;;;;38156:25:0;;;;;;:19;:25;;;;;;;;38155:26;37991:190;:231;;;;-1:-1:-1;;;;;;38199:23:0;;;;;;:19;:23;;;;;;;;38198:24;37991:231;37973:363;;;38249:8;:15;;-1:-1:-1;;;;38249:15:0;-1:-1:-1;;;38249:15:0;;;38281:10;:8;:10::i;:::-;38308:8;:16;;-1:-1:-1;;;;38308:16:0;;;37973:363;38364:8;;-1:-1:-1;;;;;38474:25:0;;38348:12;38474:25;;;:19;:25;;;;;;38364:8;-1:-1:-1;;;38364:8:0;;;;;38363:9;;38474:25;;:52;;-1:-1:-1;;;;;;38503:23:0;;;;;;:19;:23;;;;;;;;38474:52;38470:100;;;-1:-1:-1;38553:5:0;38470:100;38582:12;38687:7;38683:503;;;-1:-1:-1;;;;;38739:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;38787:1;38772:12;;:16;38739:49;38735:302;;;38816:33;38845:3;38816:24;38827:12;;38816:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;38809:40;;38735:302;;;-1:-1:-1;;;;;38911:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;38960:1;38946:11;;:15;38911:50;38907:130;;;38989:32;39017:3;38989:23;39000:11;;38989:6;:10;;:23;;;;:::i;:32::-;38982:39;;38907:130;39057:8;;39053:91;;39086:42;39102:4;39116;39123;39086:15;:42::i;:::-;39160:14;39170:4;39160:14;;:::i;:::-;;;38683:503;39198:33;39214:4;39220:2;39224:6;39198:15;:33::i;:::-;35765:3474;;;;35652:3587;;;:::o;3218:191::-;3311:6;;;-1:-1:-1;;;;;3328:17:0;;;-1:-1:-1;;;;;;3328:17:0;;;;;;;3361:40;;3311:6;;;3328:17;3311:6;;3361:40;;3292:16;;3361:40;3281:128;3218:191;:::o;35322:188::-;-1:-1:-1;;;;;35405:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35405:39:0;;;;;;;;;;35462:40;;35405:39;;:31;35462:40;;;35322:188;;:::o;39844:513::-;39992:62;40009:4;40024:15;40042:11;39992:8;:62::i;:::-;40097:15;-1:-1:-1;;;;;40097:31:0;;40136:9;40169:4;40189:11;40215:1;40258;40301:7;2021:6;;-1:-1:-1;;;;;2021:6:0;;1948:87;40301:7;40097:252;;;;;;-1:-1:-1;;;;;;40097:252:0;;;-1:-1:-1;;;;;11785:15:1;;;40097:252:0;;;11767:34:1;11817:18;;;11810:34;;;;11860:18;;;11853:34;;;;11903:18;;;11896:34;11967:15;;;11946:19;;;11939:44;40323:15:0;11999:19:1;;;11992:35;11701:19;;40097:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39844:513;;:::o;14421:733::-;-1:-1:-1;;;;;14561:20:0;;14553:70;;;;-1:-1:-1;;;14553:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14642:23:0;;14634:71;;;;-1:-1:-1;;;14634:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14802:17:0;;14778:21;14802:17;;;;;;;;;;;14838:23;;;;14830:74;;;;-1:-1:-1;;;14830:74:0;;12551:2:1;14830:74:0;;;12533:21:1;12590:2;12570:18;;;12563:30;12629:34;12609:18;;;12602:62;-1:-1:-1;;;12680:18:1;;;12673:36;12726:19;;14830:74:0;12349:402:1;14830:74:0;-1:-1:-1;;;;;14940:17:0;;;:9;:17;;;;;;;;;;;14960:22;;;14940:42;;15004:20;;;;;;;;:30;;14976:6;;14940:9;15004:30;;14976:6;;15004:30;:::i;:::-;;;;;;;;15069:9;-1:-1:-1;;;;;15052:35:0;15061:6;-1:-1:-1;;;;;15052:35:0;;15080:6;15052:35;;;;2056:25:1;;2044:2;2029:18;;1910:177;15052:35:0;;;;;;;;15100:46;35652:3587;16173:591;-1:-1:-1;;;;;16257:21:0;;16249:67;;;;-1:-1:-1;;;16249:67:0;;12958:2:1;16249:67:0;;;12940:21:1;12997:2;12977:18;;;12970:30;13036:34;13016:18;;;13009:62;-1:-1:-1;;;13087:18:1;;;13080:31;13128:19;;16249:67:0;12756:397:1;16249:67:0;-1:-1:-1;;;;;16416:18:0;;16391:22;16416:18;;;;;;;;;;;16453:24;;;;16445:71;;;;-1:-1:-1;;;16445:71:0;;13360:2:1;16445:71:0;;;13342:21:1;13399:2;13379:18;;;13372:30;13438:34;13418:18;;;13411:62;-1:-1:-1;;;13489:18:1;;;13482:32;13531:19;;16445:71:0;13158:398:1;16445:71:0;-1:-1:-1;;;;;16552:18:0;;:9;:18;;;;;;;;;;16573:23;;;16552:44;;16618:12;:22;;16590:6;;16552:9;16618:22;;16590:6;;16618:22;:::i;:::-;;;;-1:-1:-1;;16658:37:0;;2056:25:1;;;16684:1:0;;-1:-1:-1;;;;;16658:37:0;;;;;2044:2:1;2029:18;16658:37:0;;;;;;;35652:3587;;;:::o;40365:402::-;40448:4;40404:23;10473:18;;;;;;;;;;;;40471:20;;;40467:59;;40508:7;40365:402::o;40467:59::-;40560:13;;:20;;40576:4;40560:20;:::i;:::-;40542:15;:38;40538:109;;;40615:13;;:20;;40631:4;40615:20;:::i;:::-;40597:38;;40538:109;40659:33;40676:15;40659:16;:33::i;:::-;40721:5;;40713:46;;-1:-1:-1;;;;;40721:5:0;;;;40737:21;40713:46;;;;;40721:5;40713:46;40721:5;40713:46;40737:21;40721:5;40713:46;;;;;;;;;;;;;;;;;;;22334:98;22392:7;22419:5;22423:1;22419;:5;:::i;:::-;22412:12;22334:98;-1:-1:-1;;;22334:98:0:o;22733:::-;22791:7;22818:5;22822:1;22818;:5;:::i;39247:589::-;39397:16;;;39411:1;39397:16;;;;;;;;39373:21;;39397:16;;;;;;;;;;-1:-1:-1;39397:16:0;39373:40;;39442:4;39424;39429:1;39424:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39424:23:0;;;-1:-1:-1;;;;;39424:23:0;;;;;39468:15;-1:-1:-1;;;;;39468:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39458:4;39463:1;39458:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;39458:32:0;;;-1:-1:-1;;;;;39458:32:0;;;;;39503:62;39520:4;39535:15;39553:11;39503:8;:62::i;:::-;39604:224;;-1:-1:-1;;;39604:224:0;;-1:-1:-1;;;;;39604:15:0;:66;;;;:224;;39685:11;;39711:1;;39755:4;;39782;;39802:15;;39604:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39302:534;39247:589;:::o;222:548:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;506:3;691:1;686:2;677:6;666:9;662:22;658:31;651:42;761:2;754;750:7;745:2;737:6;733:15;729:29;718:9;714:45;710:54;702:62;;;;222:548;;;;:::o;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1423:247::-;1482:6;1535:2;1523:9;1514:7;1510:23;1506:32;1503:52;;;1551:1;1548;1541:12;1503:52;1590:9;1577:23;1609:31;1634:5;1609:31;:::i;2092:456::-;2169:6;2177;2185;2238:2;2226:9;2217:7;2213:23;2209:32;2206:52;;;2254:1;2251;2244:12;2206:52;2293:9;2280:23;2312:31;2337:5;2312:31;:::i;:::-;2362:5;-1:-1:-1;2419:2:1;2404:18;;2391:32;2432:33;2391:32;2432:33;:::i;:::-;2092:456;;2484:7;;-1:-1:-1;;;2538:2:1;2523:18;;;;2510:32;;2092:456::o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:388::-;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:33;3534:32;3575:33;:::i;3645:380::-;3724:1;3720:12;;;;3767;;;3788:61;;3842:4;3834:6;3830:17;3820:27;;3788:61;3895:2;3887:6;3884:14;3864:18;3861:38;3858:161;;3941:10;3936:3;3932:20;3929:1;3922:31;3976:4;3973:1;3966:15;4004:4;4001:1;3994:15;3858:161;;3645:380;;;:::o;4439:127::-;4500:10;4495:3;4491:20;4488:1;4481:31;4531:4;4528:1;4521:15;4555:4;4552:1;4545:15;4571:125;4636:9;;;4657:10;;;4654:36;;;4670:18;;:::i;4701:356::-;4903:2;4885:21;;;4922:18;;;4915:30;4981:34;4976:2;4961:18;;4954:62;5048:2;5033:18;;4701:356::o;6459:184::-;6529:6;6582:2;6570:9;6561:7;6557:23;6553:32;6550:52;;;6598:1;6595;6588:12;6550:52;-1:-1:-1;6621:16:1;;6459:184;-1:-1:-1;6459:184:1:o;6927:245::-;6994:6;7047:2;7035:9;7026:7;7022:23;7018:32;7015:52;;;7063:1;7060;7053:12;7015:52;7095:9;7089:16;7114:28;7136:5;7114:28;:::i;7177:251::-;7247:6;7300:2;7288:9;7279:7;7275:23;7271:32;7268:52;;;7316:1;7313;7306:12;7268:52;7348:9;7342:16;7367:31;7392:5;7367:31;:::i;8957:401::-;9159:2;9141:21;;;9198:2;9178:18;;;9171:30;9237:34;9232:2;9217:18;;9210:62;-1:-1:-1;;;9303:2:1;9288:18;;9281:35;9348:3;9333:19;;8957:401::o;9363:399::-;9565:2;9547:21;;;9604:2;9584:18;;;9577:30;9643:34;9638:2;9623:18;;9616:62;-1:-1:-1;;;9709:2:1;9694:18;;9687:33;9752:3;9737:19;;9363:399::o;11293:128::-;11360:9;;;11381:11;;;11378:37;;;11395:18;;:::i;12038:306::-;12126:6;12134;12142;12195:2;12183:9;12174:7;12170:23;12166:32;12163:52;;;12211:1;12208;12201:12;12163:52;12240:9;12234:16;12224:26;;12290:2;12279:9;12275:18;12269:25;12259:35;;12334:2;12323:9;12319:18;12313:25;12303:35;;12038:306;;;;;:::o;13561:168::-;13634:9;;;13665;;13682:15;;;13676:22;;13662:37;13652:71;;13703:18;;:::i;13734:217::-;13774:1;13800;13790:132;;13844:10;13839:3;13835:20;13832:1;13825:31;13879:4;13876:1;13869:15;13907:4;13904:1;13897:15;13790:132;-1:-1:-1;13936:9:1;;13734:217::o;14088:127::-;14149:10;14144:3;14140:20;14137:1;14130:31;14180:4;14177:1;14170:15;14204:4;14201:1;14194:15;14220:980;14482:4;14530:3;14519:9;14515:19;14561:6;14550:9;14543:25;14587:2;14625:6;14620:2;14609:9;14605:18;14598:34;14668:3;14663:2;14652:9;14648:18;14641:31;14692:6;14727;14721:13;14758:6;14750;14743:22;14796:3;14785:9;14781:19;14774:26;;14835:2;14827:6;14823:15;14809:29;;14856:1;14866:195;14880:6;14877:1;14874:13;14866:195;;;14945:13;;-1:-1:-1;;;;;14941:39:1;14929:52;;15036:15;;;;15001:12;;;;14977:1;14895:9;14866:195;;;-1:-1:-1;;;;;;;15117:32:1;;;;15112:2;15097:18;;15090:60;-1:-1:-1;;;15181:3:1;15166:19;15159:35;15078:3;14220:980;-1:-1:-1;;;14220:980:1:o

Swarm Source

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