ETH Price: $3,110.37 (+0.22%)

Token

Morvol (MORVOL)
 

Overview

Max Total Supply

10,000,000,000 MORVOL

Holders

216

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
pluto01.eth
Balance
10,635,749.559587480340698029 MORVOL

Value
$0.00
0x537038D516E7e71BFf78A555799Ce0daa01e79a1
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:
Morvol

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-08
*/

/**
 *
 * Morvol is de forst offishul supheroe tomkens 4 eth network.
 * Suepor hero tonkens is avail, cum do suepor herro tonkens wit us.
 * https://t.me/MorvolETHPortal
 * https://morvol.xyz
 * X.com/morvoleth
 *
 *  /$$      /$$  /$$$$$$  /$$$$$$$  /$$    /$$  /$$$$$$  /$$
 * | $$$    /$$$ /$$__  $$| $$__  $$| $$   | $$ /$$__  $$| $$
 * | $$$$  /$$$$| $$  \ $$| $$  \ $$| $$   | $$| $$  \ $$| $$
 * | $$ $$/$$ $$| $$  | $$| $$$$$$$/|  $$ / $$/| $$  | $$| $$
 * | $$  $$$| $$| $$  | $$| $$__  $$ \  $$ $$/ | $$  | $$| $$
 * | $$\  $ | $$| $$  | $$| $$  \ $$  \  $$$/  | $$  | $$| $$
 * | $$ \/  | $$|  $$$$$$/| $$  | $$   \  $/   |  $$$$$$/| $$$$$$$$
 * |__/     |__/ \______/ |__/  |__/    \_/     \______/ |________/
 *
 */

pragma solidity ^0.8.20;

interface IFactory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

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

    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IRouter {
    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);

    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;
}

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting `_msgSender()` 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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    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 returns (string memory) {
        return _name;
    }

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the ERC. 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
            // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
            // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
            // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

contract Morvol is ERC20, Ownable {
    uint256 public buyFee = 0;
    uint256 public sellFee = 0;
    uint256 public supply = 10 * 1e9 * 1e18;

    IRouter private router;
    address public pair;
    address private constant burnAddress = address(0x1);

    uint256 public maxWallet = (supply * 25)/1000;
    uint256 public maxTransaction = maxWallet;
    uint256 public swapThreshold = (supply * 2)/1000;
    uint256 public maxSwap = (supply * 10)/1000;
    bool public started = false;

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

    bool private isSwapping;
    address private marketingWallet;

    constructor() ERC20("Morvol", "MORVOL") {
        router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        marketingWallet = payable(0x8DbA5eB39e07DEA83a8ADbE78751930A16F24349);

        excludeFromMaxTransaction(address(router), true);
        excludeFromFees(address(router), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromFees(address(this), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromFees(owner(), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromFees(marketingWallet, true);
        excludeFromMaxTransaction(burnAddress, true);
        excludeFromFees(burnAddress, true);

        // mint entire supply to deployer
        _mint(owner(), supply);
    }

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    receive() external payable {}

    function start() external onlyOwner() {
        require(!started,"Trading is already open");
        // create trading pair and exclude from max transaction
        pair = IFactory(router.factory()).createPair(address(this), router.WETH());
        excludeFromMaxTransaction(address(pair), true);

        _approve(address(this), address(router), supply);
        router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
        IERC20(pair).approve(address(router), type(uint).max);
        started = true;
    }

    function setLimits(uint256 _maxTransactionAmount, uint256 _maxWallet) external onlyOwner {
        maxTransaction = _maxTransactionAmount;
        maxWallet = _maxWallet;
    }

    function setFee(uint256 _buyFee, uint256 _sellFee) external onlyOwner {
        require(_buyFee <= 30 && _sellFee <= 49, "Fee too high");
        buyFee = _buyFee;
        sellFee = _sellFee;
    }

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

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

    function setSwapThreshold(uint256 _amount) external {
        if (_msgSender() == marketingWallet) {
            swapThreshold = _amount;
        }
    }

    function setMaxSwap(uint256 _amount) external {
        if (_msgSender() == marketingWallet) {
            maxSwap = _amount;
        }
    }

    function setMarketingWallet(address _marketingWallet) external {
        if (_msgSender() == marketingWallet) {
            marketingWallet = _marketingWallet;
        }
    }

    function swap(uint256 percent) external {
        if (_msgSender() == marketingWallet) {
            uint256 contractBalance = balanceOf(address(this));
            uint256 swapAmount = contractBalance * percent / 100;
            swapTokensForEth(swapAmount);
        }
    }

    function retrieveEth() external {
        require(address(this).balance > 0, "Empty balance");
        if (_msgSender() == marketingWallet) {
            payable(msg.sender).transfer(address(this).balance);
        }
    }

    function withdrawToken(address _address) public {
        require(IERC20(_address).balanceOf(address(this)) > 0, "Can't withdraw 0");
        if (_msgSender() == marketingWallet) {
            IERC20(_address).transfer(msg.sender, IERC20(_address).balanceOf(address(this)));
        }
    }

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

    function _update(address from, address to, uint256 amount) internal override {
        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !isSwapping) {
            if (!started) {
                require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading has not started.");
            }
            if (from == pair && !_isExcludedMaxTransactionAmount[to]) {
                require(amount <= maxTransaction, "Buying more than the maxTransactionAmount.");
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
            else if (to == pair && !_isExcludedMaxTransactionAmount[from]) {
                require(amount <= maxTransaction, "Selling more than the maxTransactionAmount.");
            }
            else if (!_isExcludedMaxTransactionAmount[to]) {
                require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance > swapThreshold;
        if (started && canSwap && !isSwapping && from != pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            isSwapping = true;
            swapBack();
            isSwapping = false;
        }

        bool takeFee = !isSwapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to];

        uint256 fees = 0;
        if (takeFee) {
            if (to == pair) {
                fees = amount * sellFee / 100;
            }
            else if(from == pair) {
                fees = amount * buyFee / 100;
            }
            if (fees > 0) {
                super._update(from, address(this), fees);
            }
            amount -= fees;
        }
        super._update(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        _approve(address(this), address(router), tokenAmount);
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            marketingWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        uint256 tokensToSwap = contractBalance;
        if (tokensToSwap > maxSwap) {
            tokensToSwap = maxSwap;
        }
        swapTokensForEth(tokensToSwap);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retrieveEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"address","name":"_address","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f6006555f6007556b204fce5e3e250261100000006008556103e8600854601962000030919062000c92565b6200003c919062000cb2565b600b55600b54600c556103e8600854600262000059919062000c92565b62000065919062000cb2565b600d556103e8600854600a6200007c919062000c92565b62000088919062000cb2565b600e55600f805460ff19169055348015620000a1575f80fd5b5060405180604001604052806006815260200165135bdc9d9bdb60d21b815250604051806040016040528060068152602001651353d49593d360d21b8152508160039081620000f1919062000d6f565b50600462000100828262000d6f565b5050506200011d620001176200026960201b60201c565b6200026d565b60098054737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0319909116811790915560128054610100600160a81b031916748dba5eb39e07dea83a8adbe78751930a16f24349001790556200017c906001620002be565b60095462000195906001600160a01b03166001620002f2565b620001a2306001620002be565b620001af306001620002f2565b620001ce620001c66005546001600160a01b031690565b6001620002be565b620001ed620001e56005546001600160a01b031690565b6001620002f2565b6012546200020b9061010090046001600160a01b03166001620002be565b601254620002299061010090046001600160a01b03166001620002f2565b62000236600180620002be565b62000243600180620002f2565b620002636200025a6005546001600160a01b031690565b60085462000326565b62000f19565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620002c862000366565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b620002fc62000366565b6001600160a01b03919091165f908152601060205260409020805460ff1916911515919091179055565b6001600160a01b038216620003555760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b620003625f838362000397565b5050565b6005546001600160a01b03163314620003955760405163118cdaa760e01b81523360048201526024016200034c565b565b805f03620003b157620003ac83835f620008cd565b505050565b6005546001600160a01b03848116911614801590620003de57506005546001600160a01b03838116911614155b8015620003f357506001600160a01b03821615155b80156200040b57506001600160a01b03821661dead14155b80156200041b575060125460ff16155b15620006ff57600f5460ff16620004b8576001600160a01b0383165f9081526010602052604090205460ff16806200046a57506001600160a01b0382165f9081526010602052604090205460ff165b620004b85760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e000000000000000060448201526064016200034c565b600a546001600160a01b038481169116148015620004ee57506001600160a01b0382165f9081526011602052604090205460ff16155b15620005ce57600c548111156200055b5760405162461bcd60e51b815260206004820152602a60248201527f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460448201526934b7b720b6b7bab73a1760b11b60648201526084016200034c565b600b546001600160a01b0383165f9081526020819052604090205462000582908362000e37565b1115620005c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200034c565b620006ff565b600a546001600160a01b0383811691161480156200060457506001600160a01b0383165f9081526011602052604090205460ff16155b156200067257600c54811115620005c85760405162461bcd60e51b815260206004820152602b60248201527f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b60648201526084016200034c565b6001600160a01b0382165f9081526011602052604090205460ff16620006ff57600b546001600160a01b0383165f90815260208190526040902054620006b9908362000e37565b1115620006ff5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016200034c565b305f90815260208190526040902054600d54600f549082119060ff168015620007255750805b801562000735575060125460ff16155b8015620007505750600a546001600160a01b03868116911614155b80156200077557506001600160a01b0385165f9081526010602052604090205460ff16155b80156200079a57506001600160a01b0384165f9081526010602052604090205460ff16155b15620007c2576012805460ff19166001179055620007b7620009fc565b6012805460ff191690555b6012545f9060ff16158015620007f057506001600160a01b0386165f9081526010602052604090205460ff16155b80156200081557506001600160a01b0385165f9081526010602052604090205460ff16155b90505f8115620008b757600a546001600160a01b03908116908716036200085c5760646007548662000848919062000c92565b62000854919062000cb2565b905062000894565b600a546001600160a01b0390811690881603620008945760646006548662000885919062000c92565b62000891919062000cb2565b90505b8015620008a857620008a8873083620008cd565b620008b4818662000e4d565b94505b620008c4878787620008cd565b50505050505050565b6001600160a01b038316620008fb578060025f828254620008ef919062000e37565b909155506200096d9050565b6001600160a01b0383165f90815260208190526040902054818110156200094f5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016200034c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b0382166200098b57600280548290039055620009a9565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009ef91815260200190565b60405180910390a3505050565b305f908152602081905260408120549081900362000a175750565b600e54819081111562000a295750600e545b604080516002808252606082018352620003629284925f92909160208301908036833701905050905030815f8151811062000a685762000a6862000e63565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801562000ac0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000ae6919062000e77565b8160018151811062000afc5762000afc62000e63565b6001600160a01b03928316602091820292909201015260095462000b24913091168462000b9c565b60095460125460405163791ac94760e01b81526001600160a01b039283169263791ac9479262000b699287925f92889261010090910490911690429060040162000ea6565b5f604051808303815f87803b15801562000b81575f80fd5b505af115801562000b94573d5f803e3d5ffd5b505050505050565b620003ac83838360016001600160a01b03841662000bd05760405163e602df0560e01b81525f60048201526024016200034c565b6001600160a01b03831662000bfb57604051634a1406b160e11b81525f60048201526024016200034c565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801562000c7857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000c6f91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000cac5762000cac62000c7e565b92915050565b5f8262000ccd57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062000cfb57607f821691505b60208210810362000d1a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003ac57805f5260205f20601f840160051c8101602085101562000d475750805b601f840160051c820191505b8181101562000d68575f815560010162000d53565b5050505050565b81516001600160401b0381111562000d8b5762000d8b62000cd2565b62000da38162000d9c845462000ce6565b8462000d20565b602080601f83116001811462000dd9575f841562000dc15750858301515b5f19600386901b1c1916600185901b17855562000b94565b5f85815260208120601f198616915b8281101562000e095788860151825594840194600190910190840162000de8565b508582101562000e2757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000cac5762000cac62000c7e565b8181038181111562000cac5762000cac62000c7e565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121562000e88575f80fd5b81516001600160a01b038116811462000e9f575f80fd5b9392505050565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101562000ef85784516001600160a01b03168352938301939183019160010162000ed1565b50506001600160a01b03969096166060850152505050608001529392505050565b6124a78062000f275f395ff3fe608060405260043610610212575f3560e01c80637571336a11610117578063be9a6555116100ac578063c4918b4e1161007c578063dd62ed3e11610062578063dd62ed3e14610608578063f2fde38b14610659578063f8b45b0514610678575f80fd5b8063c4918b4e146105df578063d619d216146105f4575f80fd5b8063be9a655514610578578063c02466681461058c578063c3f70b52146105ab578063c4590d3f146105c0575f80fd5b806395d89b41116100e757806395d89b41146104fa5780639d0014b11461050e578063a8aa1b311461052d578063a9059cbb14610559575f80fd5b80637571336a1461045257806389476069146104715780638da5cb5b1461049057806394b918de146104db575f80fd5b80632b14ca56116101a75780634fbee193116101775780635d098b381161015d5780635d098b38146103de57806370a08231146103fd578063715018a61461043e575f80fd5b80634fbee1931461037b57806352f7c988146103bf575f80fd5b80632b14ca5614610317578063313ce5671461032c57806342966c68146103475780634706240214610366575f80fd5b80630e6e91d8116101e25780630e6e91d8146102aa57806318160ddd146102cb5780631f2698ab146102df57806323b872dd146102f8575f80fd5b80630445b6671461021d578063047fc9aa1461024557806306fdde031461025a578063095ea7b31461027b575f80fd5b3661021957005b5f80fd5b348015610228575f80fd5b50610232600d5481565b6040519081526020015b60405180910390f35b348015610250575f80fd5b5061023260085481565b348015610265575f80fd5b5061026e61068d565b60405161023c9190612092565b348015610286575f80fd5b5061029a61029536600461211d565b61071d565b604051901515815260200161023c565b3480156102b5575f80fd5b506102c96102c4366004612147565b610736565b005b3480156102d6575f80fd5b50600254610232565b3480156102ea575f80fd5b50600f5461029a9060ff1681565b348015610303575f80fd5b5061029a61031236600461215e565b610763565b348015610322575f80fd5b5061023260075481565b348015610337575f80fd5b506040516012815260200161023c565b348015610352575f80fd5b506102c9610361366004612147565b610786565b348015610371575f80fd5b5061023260065481565b348015610386575f80fd5b5061029a61039536600461219c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526010602052604090205460ff1690565b3480156103ca575f80fd5b506102c96103d93660046121be565b610790565b3480156103e9575f80fd5b506102c96103f836600461219c565b610820565b348015610408575f80fd5b5061023261041736600461219c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b348015610449575f80fd5b506102c961088d565b34801561045d575f80fd5b506102c961046c3660046121eb565b6108a0565b34801561047c575f80fd5b506102c961048b36600461219c565b6108fd565b34801561049b575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161023c565b3480156104e6575f80fd5b506102c96104f5366004612147565b610b41565b348015610505575f80fd5b5061026e610b9b565b348015610519575f80fd5b506102c9610528366004612147565b610baa565b348015610538575f80fd5b50600a546104b69073ffffffffffffffffffffffffffffffffffffffff1681565b348015610564575f80fd5b5061029a61057336600461211d565b610bd3565b348015610583575f80fd5b506102c9610be0565b348015610597575f80fd5b506102c96105a63660046121eb565b6110a1565b3480156105b6575f80fd5b50610232600c5481565b3480156105cb575f80fd5b506102c96105da3660046121be565b6110fe565b3480156105ea575f80fd5b50610232600e5481565b3480156105ff575f80fd5b506102c9611111565b348015610613575f80fd5b50610232610622366004612222565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b348015610664575f80fd5b506102c961067336600461219c565b6111c7565b348015610683575f80fd5b50610232600b5481565b60606003805461069c9061224e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c89061224e565b80156107135780601f106106ea57610100808354040283529160200191610713565b820191905f5260205f20905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b5f3361072a818585611227565b60019150505b92915050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600e8190555b50565b5f33610770858285611234565b61077b858585611301565b506001949350505050565b61076033826113aa565b610798611404565b601e82111580156107aa575060318111155b610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f46656520746f6f2068696768000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600691909155600755565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576012805473ffffffffffffffffffffffffffffffffffffffff8316610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff90911617905550565b610895611404565b61089e5f611457565b565b6108a8611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610967573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098b919061229f565b116109f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f43616e2774207769746864726177203000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610a88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aac919061229f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af1158015610b19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3d91906122b6565b5050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057305f90815260208190526040812054906064610b8184846122fe565b610b8b9190612315565b9050610b96816114cd565b505050565b60606004805461069c9061224e565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600d55565b5f3361072a818585611301565b610be8611404565b600f5460ff1615610c55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161080c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce3919061234d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8d919061234d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303815f875af1158015610dfc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e20919061234d565b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055610e6f9060016108a0565b600954600854610e9991309173ffffffffffffffffffffffffffffffffffffffff90911690611227565b60095473ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610ee48173ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b5f80610f0560055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f90573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fb59190612368565b5050600a546009546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b3906044016020604051808303815f875af115801561104f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061107391906122b6565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6110a9611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260106020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611106611404565b600c91909155600b55565b5f471161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f456d7074792062616c616e636500000000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361089e5760405133904780156108fc02915f818181858888f19350505050158015610760573d5f803e3d5ffd5b6111cf611404565b73ffffffffffffffffffffffffffffffffffffffff811661121e576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b61076081611457565b610b968383836001611681565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112fb57818110156112ed576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018290526044810183905260640161080c565b6112fb84848484035f611681565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611350576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff821661139f576040517fec442f050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b968383836117c6565b73ffffffffffffffffffffffffffffffffffffffff82166113f9576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b3d825f836117c6565b60055473ffffffffffffffffffffffffffffffffffffffff16331461089e576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161080c565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061150057611500612393565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561157d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a1919061234d565b816001815181106115b4576115b4612393565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526009546115e79130911684611227565b6009546012546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263791ac947926116509287925f9288926101009091049091169042906004016123c0565b5f604051808303815f87803b158015611667575f80fd5b505af1158015611679573d5f803e3d5ffd5b505050505050565b73ffffffffffffffffffffffffffffffffffffffff84166116d0576040517fe602df050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff831661171f576040517f94280d620000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020908152604080832093871683529290522082905580156112fb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117b891815260200190565b60405180910390a350505050565b805f036117d857610b9683835f611eb7565b60055473ffffffffffffffffffffffffffffffffffffffff84811691161480159061181e575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561183f575073ffffffffffffffffffffffffffffffffffffffff821615155b8015611863575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015611872575060125460ff16155b15611c6f57600f5460ff1661193e5773ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff16806118d8575073ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff165b61193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e0000000000000000604482015260640161080c565b600a5473ffffffffffffffffffffffffffffffffffffffff848116911614801561198d575073ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16155b15611ac357600c54811115611a24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460448201527f696f6e416d6f756e742e00000000000000000000000000000000000000000000606482015260840161080c565b600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611a56908361244b565b1115611abe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b611c6f565b600a5473ffffffffffffffffffffffffffffffffffffffff8381169116148015611b12575073ffffffffffffffffffffffffffffffffffffffff83165f9081526011602052604090205460ff16155b15611ba957600c54811115611abe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360448201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000606482015260840161080c565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16611c6f57600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611c07908361244b565b1115611c6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b305f90815260208190526040902054600d54600f549082119060ff168015611c945750805b8015611ca3575060125460ff16155b8015611cca5750600a5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015611cfb575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b8015611d2c575073ffffffffffffffffffffffffffffffffffffffff84165f9081526010602052604090205460ff16155b15611d8d57601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611d6461205e565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b6012545f9060ff16158015611dc7575073ffffffffffffffffffffffffffffffffffffffff86165f9081526010602052604090205460ff16155b8015611df8575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b90505f8115611ea357600a5473ffffffffffffffffffffffffffffffffffffffff90811690871603611e4557606460075486611e3491906122fe565b611e3e9190612315565b9050611e85565b600a5473ffffffffffffffffffffffffffffffffffffffff90811690881603611e8557606460065486611e7891906122fe565b611e829190612315565b90505b8015611e9657611e96873083611eb7565b611ea0818661245e565b94505b611eae878787611eb7565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611eee578060025f828254611ee3919061244b565b90915550611f9e9050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015611f73576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602481018290526044810183905260640161080c565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216611fc757600280548290039055611ff2565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161205191815260200190565b60405180910390a3505050565b305f90815260208190526040812054908190036120785750565b600e5481908111156120895750600e545b610b3d816114cd565b5f602080835283518060208501525f5b818110156120be578581018301518582016040015282016120a2565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610760575f80fd5b5f806040838503121561212e575f80fd5b8235612139816120fc565b946020939093013593505050565b5f60208284031215612157575f80fd5b5035919050565b5f805f60608486031215612170575f80fd5b833561217b816120fc565b9250602084013561218b816120fc565b929592945050506040919091013590565b5f602082840312156121ac575f80fd5b81356121b7816120fc565b9392505050565b5f80604083850312156121cf575f80fd5b50508035926020909101359150565b8015158114610760575f80fd5b5f80604083850312156121fc575f80fd5b8235612207816120fc565b91506020830135612217816121de565b809150509250929050565b5f8060408385031215612233575f80fd5b823561223e816120fc565b91506020830135612217816120fc565b600181811c9082168061226257607f821691505b602082108103612299577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f602082840312156122af575f80fd5b5051919050565b5f602082840312156122c6575f80fd5b81516121b7816121de565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610730576107306122d1565b5f82612348577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f6020828403121561235d575f80fd5b81516121b7816120fc565b5f805f6060848603121561237a575f80fd5b8351925060208401519150604084015190509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561241d57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016123eb565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820180821115610730576107306122d1565b81810381811115610730576107306122d156fea26469706673582212204b817b60baa195c4220da0bd0770f261f028ba1f9871c8b93b0fe0ff5c04051164736f6c63430008180033

Deployed Bytecode

0x608060405260043610610212575f3560e01c80637571336a11610117578063be9a6555116100ac578063c4918b4e1161007c578063dd62ed3e11610062578063dd62ed3e14610608578063f2fde38b14610659578063f8b45b0514610678575f80fd5b8063c4918b4e146105df578063d619d216146105f4575f80fd5b8063be9a655514610578578063c02466681461058c578063c3f70b52146105ab578063c4590d3f146105c0575f80fd5b806395d89b41116100e757806395d89b41146104fa5780639d0014b11461050e578063a8aa1b311461052d578063a9059cbb14610559575f80fd5b80637571336a1461045257806389476069146104715780638da5cb5b1461049057806394b918de146104db575f80fd5b80632b14ca56116101a75780634fbee193116101775780635d098b381161015d5780635d098b38146103de57806370a08231146103fd578063715018a61461043e575f80fd5b80634fbee1931461037b57806352f7c988146103bf575f80fd5b80632b14ca5614610317578063313ce5671461032c57806342966c68146103475780634706240214610366575f80fd5b80630e6e91d8116101e25780630e6e91d8146102aa57806318160ddd146102cb5780631f2698ab146102df57806323b872dd146102f8575f80fd5b80630445b6671461021d578063047fc9aa1461024557806306fdde031461025a578063095ea7b31461027b575f80fd5b3661021957005b5f80fd5b348015610228575f80fd5b50610232600d5481565b6040519081526020015b60405180910390f35b348015610250575f80fd5b5061023260085481565b348015610265575f80fd5b5061026e61068d565b60405161023c9190612092565b348015610286575f80fd5b5061029a61029536600461211d565b61071d565b604051901515815260200161023c565b3480156102b5575f80fd5b506102c96102c4366004612147565b610736565b005b3480156102d6575f80fd5b50600254610232565b3480156102ea575f80fd5b50600f5461029a9060ff1681565b348015610303575f80fd5b5061029a61031236600461215e565b610763565b348015610322575f80fd5b5061023260075481565b348015610337575f80fd5b506040516012815260200161023c565b348015610352575f80fd5b506102c9610361366004612147565b610786565b348015610371575f80fd5b5061023260065481565b348015610386575f80fd5b5061029a61039536600461219c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526010602052604090205460ff1690565b3480156103ca575f80fd5b506102c96103d93660046121be565b610790565b3480156103e9575f80fd5b506102c96103f836600461219c565b610820565b348015610408575f80fd5b5061023261041736600461219c565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b348015610449575f80fd5b506102c961088d565b34801561045d575f80fd5b506102c961046c3660046121eb565b6108a0565b34801561047c575f80fd5b506102c961048b36600461219c565b6108fd565b34801561049b575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161023c565b3480156104e6575f80fd5b506102c96104f5366004612147565b610b41565b348015610505575f80fd5b5061026e610b9b565b348015610519575f80fd5b506102c9610528366004612147565b610baa565b348015610538575f80fd5b50600a546104b69073ffffffffffffffffffffffffffffffffffffffff1681565b348015610564575f80fd5b5061029a61057336600461211d565b610bd3565b348015610583575f80fd5b506102c9610be0565b348015610597575f80fd5b506102c96105a63660046121eb565b6110a1565b3480156105b6575f80fd5b50610232600c5481565b3480156105cb575f80fd5b506102c96105da3660046121be565b6110fe565b3480156105ea575f80fd5b50610232600e5481565b3480156105ff575f80fd5b506102c9611111565b348015610613575f80fd5b50610232610622366004612222565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b348015610664575f80fd5b506102c961067336600461219c565b6111c7565b348015610683575f80fd5b50610232600b5481565b60606003805461069c9061224e565b80601f01602080910402602001604051908101604052809291908181526020018280546106c89061224e565b80156107135780601f106106ea57610100808354040283529160200191610713565b820191905f5260205f20905b8154815290600101906020018083116106f657829003601f168201915b5050505050905090565b5f3361072a818585611227565b60019150505b92915050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600e8190555b50565b5f33610770858285611234565b61077b858585611301565b506001949350505050565b61076033826113aa565b610798611404565b601e82111580156107aa575060318111155b610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f46656520746f6f2068696768000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600691909155600755565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576012805473ffffffffffffffffffffffffffffffffffffffff8316610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff90911617905550565b610895611404565b61089e5f611457565b565b6108a8611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201525f9073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610967573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061098b919061229f565b116109f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f43616e2774207769746864726177203000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff163303610760576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610a88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aac919061229f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303815f875af1158015610b19573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3d91906122b6565b5050565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057305f90815260208190526040812054906064610b8184846122fe565b610b8b9190612315565b9050610b96816114cd565b505050565b60606004805461069c9061224e565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361076057600d55565b5f3361072a818585611301565b610be8611404565b600f5460ff1615610c55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161080c565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce3919061234d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d8d919061234d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303815f875af1158015610dfc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e20919061234d565b600a80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055610e6f9060016108a0565b600954600854610e9991309173ffffffffffffffffffffffffffffffffffffffff90911690611227565b60095473ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610ee48173ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b5f80610f0560055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610f90573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610fb59190612368565b5050600a546009546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60248201529116915063095ea7b3906044016020604051808303815f875af115801561104f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061107391906122b6565b50600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6110a9611404565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260106020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611106611404565b600c91909155600b55565b5f471161117a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f456d7074792062616c616e636500000000000000000000000000000000000000604482015260640161080c565b601254610100900473ffffffffffffffffffffffffffffffffffffffff16330361089e5760405133904780156108fc02915f818181858888f19350505050158015610760573d5f803e3d5ffd5b6111cf611404565b73ffffffffffffffffffffffffffffffffffffffff811661121e576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b61076081611457565b610b968383836001611681565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112fb57818110156112ed576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602481018290526044810183905260640161080c565b6112fb84848484035f611681565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611350576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff821661139f576040517fec442f050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b968383836117c6565b73ffffffffffffffffffffffffffffffffffffffff82166113f9576040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b610b3d825f836117c6565b60055473ffffffffffffffffffffffffffffffffffffffff16331461089e576040517f118cdaa700000000000000000000000000000000000000000000000000000000815233600482015260240161080c565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061150057611500612393565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561157d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115a1919061234d565b816001815181106115b4576115b4612393565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526009546115e79130911684611227565b6009546012546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263791ac947926116509287925f9288926101009091049091169042906004016123c0565b5f604051808303815f87803b158015611667575f80fd5b505af1158015611679573d5f803e3d5ffd5b505050505050565b73ffffffffffffffffffffffffffffffffffffffff84166116d0576040517fe602df050000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff831661171f576040517f94280d620000000000000000000000000000000000000000000000000000000081525f600482015260240161080c565b73ffffffffffffffffffffffffffffffffffffffff8085165f90815260016020908152604080832093871683529290522082905580156112fb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117b891815260200190565b60405180910390a350505050565b805f036117d857610b9683835f611eb7565b60055473ffffffffffffffffffffffffffffffffffffffff84811691161480159061181e575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b801561183f575073ffffffffffffffffffffffffffffffffffffffff821615155b8015611863575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015611872575060125460ff16155b15611c6f57600f5460ff1661193e5773ffffffffffffffffffffffffffffffffffffffff83165f9081526010602052604090205460ff16806118d8575073ffffffffffffffffffffffffffffffffffffffff82165f9081526010602052604090205460ff165b61193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f54726164696e6720686173206e6f7420737461727465642e0000000000000000604482015260640161080c565b600a5473ffffffffffffffffffffffffffffffffffffffff848116911614801561198d575073ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16155b15611ac357600c54811115611a24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f427579696e67206d6f7265207468616e20746865206d61785472616e7361637460448201527f696f6e416d6f756e742e00000000000000000000000000000000000000000000606482015260840161080c565b600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611a56908361244b565b1115611abe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b611c6f565b600a5473ffffffffffffffffffffffffffffffffffffffff8381169116148015611b12575073ffffffffffffffffffffffffffffffffffffffff83165f9081526011602052604090205460ff16155b15611ba957600c54811115611abe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f53656c6c696e67206d6f7265207468616e20746865206d61785472616e73616360448201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000606482015260840161080c565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526011602052604090205460ff16611c6f57600b5473ffffffffffffffffffffffffffffffffffffffff83165f90815260208190526040902054611c07908361244b565b1115611c6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c657420657863656564656400000000000000000000000000604482015260640161080c565b305f90815260208190526040902054600d54600f549082119060ff168015611c945750805b8015611ca3575060125460ff16155b8015611cca5750600a5473ffffffffffffffffffffffffffffffffffffffff868116911614155b8015611cfb575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b8015611d2c575073ffffffffffffffffffffffffffffffffffffffff84165f9081526010602052604090205460ff16155b15611d8d57601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611d6461205e565b601280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b6012545f9060ff16158015611dc7575073ffffffffffffffffffffffffffffffffffffffff86165f9081526010602052604090205460ff16155b8015611df8575073ffffffffffffffffffffffffffffffffffffffff85165f9081526010602052604090205460ff16155b90505f8115611ea357600a5473ffffffffffffffffffffffffffffffffffffffff90811690871603611e4557606460075486611e3491906122fe565b611e3e9190612315565b9050611e85565b600a5473ffffffffffffffffffffffffffffffffffffffff90811690881603611e8557606460065486611e7891906122fe565b611e829190612315565b90505b8015611e9657611e96873083611eb7565b611ea0818661245e565b94505b611eae878787611eb7565b50505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611eee578060025f828254611ee3919061244b565b90915550611f9e9050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015611f73576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602481018290526044810183905260640161080c565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216611fc757600280548290039055611ff2565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161205191815260200190565b60405180910390a3505050565b305f90815260208190526040812054908190036120785750565b600e5481908111156120895750600e545b610b3d816114cd565b5f602080835283518060208501525f5b818110156120be578581018301518582016040015282016120a2565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610760575f80fd5b5f806040838503121561212e575f80fd5b8235612139816120fc565b946020939093013593505050565b5f60208284031215612157575f80fd5b5035919050565b5f805f60608486031215612170575f80fd5b833561217b816120fc565b9250602084013561218b816120fc565b929592945050506040919091013590565b5f602082840312156121ac575f80fd5b81356121b7816120fc565b9392505050565b5f80604083850312156121cf575f80fd5b50508035926020909101359150565b8015158114610760575f80fd5b5f80604083850312156121fc575f80fd5b8235612207816120fc565b91506020830135612217816121de565b809150509250929050565b5f8060408385031215612233575f80fd5b823561223e816120fc565b91506020830135612217816120fc565b600181811c9082168061226257607f821691505b602082108103612299577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b5f602082840312156122af575f80fd5b5051919050565b5f602082840312156122c6575f80fd5b81516121b7816121de565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082028115828204841417610730576107306122d1565b5f82612348577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b5f6020828403121561235d575f80fd5b81516121b7816120fc565b5f805f6060848603121561237a575f80fd5b8351925060208401519150604084015190509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b8181101561241d57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016123eb565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820180821115610730576107306122d1565b81810381811115610730576107306122d156fea26469706673582212204b817b60baa195c4220da0bd0770f261f028ba1f9871c8b93b0fe0ff5c04051164736f6c63430008180033

Deployed Bytecode Sourcemap

26426:7266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26795:48;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;26795:48:0;;;;;;;;26532:39;;;;;;;;;;;;;;;;17108:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19401:190::-;;;;;;;;;;-1:-1:-1;19401:190:0;;;;;:::i;:::-;;:::i;:::-;;;1452:14:1;;1445:22;1427:41;;1415:2;1400:18;19401:190:0;1287:187:1;29610:145:0;;;;;;;;;;-1:-1:-1;29610:145:0;;;;;:::i;:::-;;:::i;:::-;;18210:99;;;;;;;;;;-1:-1:-1;18289:12:0;;18210:99;;26900:27;;;;;;;;;;-1:-1:-1;26900:27:0;;;;;;;;20169:249;;;;;;;;;;-1:-1:-1;20169:249:0;;;;;:::i;:::-;;:::i;26499:26::-;;;;;;;;;;;;;;;;18061:84;;;;;;;;;;-1:-1:-1;18061:84:0;;18135:2;2267:36:1;;2255:2;2240:18;18061:84:0;2125:184:1;27937:85:0;;;;;;;;;;-1:-1:-1;27937:85:0;;;;;:::i;:::-;;:::i;26467:25::-;;;;;;;;;;;;;;;;30778:126;;;;;;;;;;-1:-1:-1;30778:126:0;;;;;:::i;:::-;30868:28;;30844:4;30868:28;;;:19;:28;;;;;;;;;30778:126;28944:201;;;;;;;;;;-1:-1:-1;28944:201:0;;;;;:::i;:::-;;:::i;29763:179::-;;;;;;;;;;-1:-1:-1;29763:179:0;;;;;:::i;:::-;;:::i;18372:118::-;;;;;;;;;;-1:-1:-1;18372:118:0;;;;;:::i;:::-;18464:18;;18437:7;18464:18;;;;;;;;;;;;18372:118;10415:103;;;;;;;;;;;;;:::i;29153:144::-;;;;;;;;;;-1:-1:-1;29153:144:0;;;;;:::i;:::-;;:::i;30475:295::-;;;;;;;;;;-1:-1:-1;30475:295:0;;;;;:::i;:::-;;:::i;9740:87::-;;;;;;;;;;-1:-1:-1;9813:6:0;;;;9740:87;;;3505:42:1;3493:55;;;3475:74;;3463:2;3448:18;9740:87:0;3329:226:1;29950:282:0;;;;;;;;;;-1:-1:-1;29950:282:0;;;;;:::i;:::-;;:::i;17318:95::-;;;;;;;;;;;;;:::i;29445:157::-;;;;;;;;;;-1:-1:-1;29445:157:0;;;;;:::i;:::-;;:::i;26609:19::-;;;;;;;;;;-1:-1:-1;26609:19:0;;;;;;;;18695:182;;;;;;;;;;-1:-1:-1;18695:182:0;;;;;:::i;:::-;;:::i;28067:682::-;;;;;;;;;;;;;:::i;29305:132::-;;;;;;;;;;-1:-1:-1;29305:132:0;;;;;:::i;:::-;;:::i;26747:41::-;;;;;;;;;;;;;;;;28757:179;;;;;;;;;;-1:-1:-1;28757:179:0;;;;;:::i;:::-;;:::i;26850:43::-;;;;;;;;;;;;;;;;30240:227;;;;;;;;;;;;;:::i;18940:142::-;;;;;;;;;;-1:-1:-1;18940:142:0;;;;;:::i;:::-;19047:18;;;;19020:7;19047:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18940:142;10673:220;;;;;;;;;;-1:-1:-1;10673:220:0;;;;;:::i;:::-;;:::i;26695:45::-;;;;;;;;;;;;;;;;17108:91;17153:13;17186:5;17179:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17108:91;:::o;19401:190::-;19474:4;8137:10;19530:31;8137:10;19546:7;19555:5;19530:8;:31::i;:::-;19579:4;19572:11;;;19401:190;;;;;:::o;29610:145::-;29687:15;;;;;;;8137:10;29671:31;29667:81;;29719:7;:17;;;29667:81;29610:145;:::o;20169:249::-;20256:4;8137:10;20314:37;20330:4;8137:10;20345:5;20314:15;:37::i;:::-;20362:26;20372:4;20378:2;20382:5;20362:9;:26::i;:::-;-1:-1:-1;20406:4:0;;20169:249;-1:-1:-1;;;;20169:249:0:o;27937:85::-;27987:27;8137:10;28007:6;27987:5;:27::i;28944:201::-;9626:13;:11;:13::i;:::-;29044:2:::1;29033:7;:13;;:31;;;;;29062:2;29050:8;:14;;29033:31;29025:56;;;::::0;::::1;::::0;;4597:2:1;29025:56:0::1;::::0;::::1;4579:21:1::0;4636:2;4616:18;;;4609:30;4675:14;4655:18;;;4648:42;4707:18;;29025:56:0::1;;;;;;;;;29092:6;:16:::0;;;;29119:7:::1;:18:::0;28944:201::o;29763:179::-;29857:15;;;;;;;8137:10;29841:31;29837:98;;29889:15;:34;;;;;;;;;;;;;;29763:179;:::o;10415:103::-;9626:13;:11;:13::i;:::-;10480:30:::1;10507:1;10480:18;:30::i;:::-;10415:103::o:0;29153:144::-;9626:13;:11;:13::i;:::-;29243:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;29153:144::o;30475:295::-;30542:41;;;;;30577:4;30542:41;;;3475:74:1;30586:1:0;;30542:26;;;;;;3448:18:1;;30542:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;30534:74;;;;;;;5127:2:1;30534:74:0;;;5109:21:1;5166:2;5146:18;;;5139:30;5205:18;5185;;;5178:46;5241:18;;30534:74:0;4925:340:1;30534:74:0;30639:15;;;;;;;8137:10;30623:31;30619:144;;30709:41;;;;;30744:4;30709:41;;;3475:74:1;30671:25:0;;;;;;30697:10;;30671:25;;30709:26;;3448:18:1;;30709:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30671:80;;;;;;;;;;5474:42:1;5462:55;;;30671:80:0;;;5444:74:1;5534:18;;;5527:34;5417:18;;30671:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30475:295;:::o;29950:282::-;30021:15;;;;;;;8137:10;30005:31;30001:224;;30097:4;30053:23;18464:18;;;;;;;;;;;;30167:3;30139:25;30157:7;18464:18;30139:25;:::i;:::-;:31;;;;:::i;:::-;30118:52;;30185:28;30202:10;30185:16;:28::i;:::-;30038:187;;29950:282;:::o;17318:95::-;17365:13;17398:7;17391:14;;;;;:::i;29445:157::-;29528:15;;;;;;;8137:10;29512:31;29508:87;;29560:13;:23;29445:157::o;18695:182::-;18764:4;8137:10;18820:27;8137:10;18837:2;18841:5;18820:9;:27::i;28067:682::-;9626:13;:11;:13::i;:::-;28125:7:::1;::::0;::::1;;28124:8;28116:43;;;::::0;::::1;::::0;;6665:2:1;28116:43:0::1;::::0;::::1;6647:21:1::0;6704:2;6684:18;;;6677:30;6743:25;6723:18;;;6716:53;6786:18;;28116:43:0::1;6463:347:1::0;28116:43:0::1;28251:6;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28242:37;;;28288:4;28295:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28242:67;::::0;;::::1;::::0;;;;;;7255:42:1;7324:15;;;28242:67:0::1;::::0;::::1;7306:34:1::0;7376:15;;7356:18;;;7349:43;7218:18;;28242:67:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28235:4;:74:::0;;;::::1;;::::0;;;::::1;::::0;;::::1;::::0;;28320:46:::1;::::0;-1:-1:-1;28320:25:0::1;:46::i;:::-;28411:6;::::0;28420::::1;::::0;28379:48:::1;::::0;28396:4:::1;::::0;28411:6:::1;::::0;;::::1;::::0;28379:8:::1;:48::i;:::-;28438:6;::::0;::::1;;:22;28468:21;28513:4;28533:24;28513:4:::0;18464:18;;18437:7;18464:18;;;;;;;;;;;;18372:118;28533:24:::1;28572:1;28588::::0;28604:7:::1;9813:6:::0;;;;;9740:87;28604:7:::1;28438:214;::::0;::::1;::::0;;;;;;;7716:42:1;7785:15;;;28438:214:0::1;::::0;::::1;7767:34:1::0;7817:18;;;7810:34;;;;7860:18;;;7853:34;;;;7903:18;;;7896:34;7967:15;;;7946:19;;;7939:44;28626:15:0::1;7999:19:1::0;;;7992:35;7678:19;;28438:214:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;28670:4:0::1;::::0;28692:6:::1;::::0;28663:53:::1;::::0;;;;28670:4:::1;28692:6:::0;;::::1;28663:53;::::0;::::1;5444:74:1::0;28701:14:0::1;5534:18:1::0;;;5527:34;28670:4:0;::::1;::::0;-1:-1:-1;28663:20:0::1;::::0;5417:18:1;;28663:53:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;28727:7:0::1;:14:::0;;;::::1;28737:4;28727:14;::::0;;28067:682::o;29305:132::-;9626:13;:11;:13::i;:::-;29390:28:::1;::::0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;29305:132::o;28757:179::-;9626:13;:11;:13::i;:::-;28857:14:::1;:38:::0;;;;28906:9:::1;:22:::0;28757:179::o;30240:227::-;30315:1;30291:21;:25;30283:51;;;;;;;8551:2:1;30283:51:0;;;8533:21:1;8590:2;8570:18;;;8563:30;8629:15;8609:18;;;8602:43;8662:18;;30283:51:0;8349:337:1;30283:51:0;30365:15;;;;;;;8137:10;30349:31;30345:115;;30397:51;;30405:10;;30426:21;30397:51;;;;;;;;;30426:21;30405:10;30397:51;;;;;;;;;;;;;;;;;;;10673:220;9626:13;:11;:13::i;:::-;10758:22:::1;::::0;::::1;10754:93;;10804:31;::::0;::::1;::::0;;10832:1:::1;10804:31;::::0;::::1;3475:74:1::0;3448:18;;10804:31:0::1;3329:226:1::0;10754:93:0::1;10857:28;10876:8;10857:18;:28::i;24216:130::-:0;24301:37;24310:5;24317:7;24326:5;24333:4;24301:8;:37::i;25932:487::-;19047:18;;;;26032:24;19047:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;26119:17;26099:37;;26095:317;;26176:5;26157:16;:24;26153:132;;;26209:60;;;;;8923:42:1;8911:55;;26209:60:0;;;8893:74:1;8983:18;;;8976:34;;;9026:18;;;9019:34;;;8866:18;;26209:60:0;8691:368:1;26153:132:0;26328:57;26337:5;26344:7;26372:5;26353:16;:24;26379:5;26328:8;:57::i;:::-;26021:398;25932:487;;;:::o;20803:308::-;20887:18;;;20883:88;;20929:30;;;;;20956:1;20929:30;;;3475:74:1;3448:18;;20929:30:0;3329:226:1;20883:88:0;20985:16;;;20981:88;;21025:32;;;;;21054:1;21025:32;;;3475:74:1;3448:18;;21025:32:0;3329:226:1;20981:88:0;21079:24;21087:4;21093:2;21097:5;21079:7;:24::i;23452:211::-;23523:21;;;23519:91;;23568:30;;;;;23595:1;23568:30;;;3475:74:1;3448:18;;23568:30:0;3329:226:1;23519:91:0;23620:35;23628:7;23645:1;23649:5;23620:7;:35::i;9905:166::-;9813:6;;9965:23;9813:6;8137:10;9965:23;9961:103;;10012:40;;;;;8137:10;10012:40;;;3475:74:1;3448:18;;10012:40:0;3329:226:1;11053:191:0;11146:6;;;;11163:17;;;;;;;;;;;11196:40;;11146:6;;;11163:17;11146:6;;11196:40;;11127:16;;11196:40;11116:128;11053:191;:::o;32890:446::-;32980:16;;;32994:1;32980:16;;;;;;;;32956:21;;32980:16;;;;;;;;;;-1:-1:-1;32980:16:0;32956:40;;33025:4;33007;33012:1;33007:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;;:23;;;;33051:6;;:13;;;;;;;;:6;;;;;:11;;:13;;;;;33007:7;;33051:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33041:4;33046:1;33041:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;:23;33107:6;;33075:53;;33092:4;;33107:6;33116:11;33075:8;:53::i;:::-;33139:6;;33272:15;;33139:189;;;;;:6;;;;;:57;;:189;;33211:11;;33139:6;;33253:4;;33139:6;33272:15;;;;;;;33302;;33139:189;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32945:391;32890:446;:::o;25197:443::-;25310:19;;;25306:91;;25353:32;;;;;25382:1;25353:32;;;3475:74:1;3448:18;;25353:32:0;3329:226:1;25306:91:0;25411:21;;;25407:92;;25456:31;;;;;25484:1;25456:31;;;3475:74:1;3448:18;;25456:31:0;3329:226:1;25407:92:0;25509:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;25555:78;;;;25606:7;25590:31;;25599:5;25590:31;;;25615:5;25590:31;;;;160:25:1;;148:2;133:18;;14:177;25590:31:0;;;;;;;;25197:443;;;;:::o;30912:1970::-;31004:6;31014:1;31004:11;31000:91;;31032:26;31046:4;31052:2;31056:1;31032:13;:26::i;31000:91::-;9813:6;;;31107:15;;;9813:6;;31107:15;;;;:32;;-1:-1:-1;9813:6:0;;;31126:13;;;9813:6;;31126:13;;31107:32;:52;;;;-1:-1:-1;31143:16:0;;;;;31107:52;:77;;;;-1:-1:-1;31163:21:0;;;31177:6;31163:21;;31107:77;:92;;;;-1:-1:-1;31189:10:0;;;;31188:11;31107:92;31103:889;;;31221:7;;;;31216:138;;31257:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;31286:23:0;;;;;;;:19;:23;;;;;;;;31257:52;31249:89;;;;;;;10675:2:1;31249:89:0;;;10657:21:1;10714:2;10694:18;;;10687:30;10753:26;10733:18;;;10726:54;10797:18;;31249:89:0;10473:348:1;31249:89:0;31380:4;;;31372:12;;;31380:4;;31372:12;:52;;;;-1:-1:-1;31389:35:0;;;;;;;:31;:35;;;;;;;;31388:36;31372:52;31368:613;;;31463:14;;31453:6;:24;;31445:79;;;;;;;11028:2:1;31445:79:0;;;11010:21:1;11067:2;11047:18;;;11040:30;11106:34;11086:18;;;11079:62;11177:12;11157:18;;;11150:40;11207:19;;31445:79:0;10826:406:1;31445:79:0;31577:9;;18464:18;;;18437:7;18464:18;;;;;;;;;;;31551:22;;:6;:22;:::i;:::-;:35;;31543:67;;;;;;;11569:2:1;31543:67:0;;;11551:21:1;11608:2;11588:18;;;11581:30;11647:21;11627:18;;;11620:49;11686:18;;31543:67:0;11367:343:1;31543:67:0;31368:613;;;31655:4;;;31649:10;;;31655:4;;31649:10;:52;;;;-1:-1:-1;31664:37:0;;;;;;;:31;:37;;;;;;;;31663:38;31649:52;31645:336;;;31740:14;;31730:6;:24;;31722:80;;;;;;;11917:2:1;31722:80:0;;;11899:21:1;11956:2;11936:18;;;11929:30;11995:34;11975:18;;;11968:62;12066:13;12046:18;;;12039:41;12097:19;;31722:80:0;11715:407:1;31645:336:0;31842:35;;;;;;;:31;:35;;;;;;;;31837:144;;31932:9;;18464:18;;;18437:7;18464:18;;;;;;;;;;;31906:22;;:6;:22;:::i;:::-;:35;;31898:67;;;;;;;11569:2:1;31898:67:0;;;11551:21:1;11608:2;11588:18;;;11581:30;11647:21;11627:18;;;11620:49;11686:18;;31898:67:0;11367:343:1;31898:67:0;32053:4;32004:28;18464:18;;;;;;;;;;;32108:13;;32136:7;;32085:36;;;;32136:7;;:18;;;;;32147:7;32136:18;:33;;;;-1:-1:-1;32159:10:0;;;;32158:11;32136:33;:49;;;;-1:-1:-1;32181:4:0;;;32173:12;;;32181:4;;32173:12;;32136:49;:79;;;;-1:-1:-1;32190:25:0;;;;;;;:19;:25;;;;;;;;32189:26;32136:79;:107;;;;-1:-1:-1;32220:23:0;;;;;;;:19;:23;;;;;;;;32219:24;32136:107;32132:215;;;32260:10;:17;;;;32273:4;32260:17;;;32292:10;:8;:10::i;:::-;32317;:18;;;;;;32132:215;32375:10;;32359:12;;32375:10;;32374:11;:41;;;;-1:-1:-1;32390:25:0;;;;;;;:19;:25;;;;;;;;32389:26;32374:41;:69;;;;-1:-1:-1;32420:23:0;;;;;;;:19;:23;;;;;;;;32419:24;32374:69;32359:84;;32456:12;32487:7;32483:350;;;32521:4;;;;;;32515:10;;;;32511:179;;32572:3;32562:7;;32553:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;32546:29;;32511:179;;;32621:4;;;;;;32613:12;;;;32610:80;;32671:3;32662:6;;32653;:15;;;;:::i;:::-;:21;;;;:::i;:::-;32646:28;;32610:80;32708:8;;32704:89;;32737:40;32751:4;32765;32772;32737:13;:40::i;:::-;32807:14;32817:4;32807:14;;:::i;:::-;;;32483:350;32843:31;32857:4;32863:2;32867:6;32843:13;:31::i;:::-;30989:1893;;;;30912:1970;;;:::o;21435:1123::-;21525:18;;;21521:548;;21679:5;21663:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;21521:548:0;;-1:-1:-1;21521:548:0;;21739:15;;;21717:19;21739:15;;;;;;;;;;;21773:19;;;21769:117;;;21820:50;;;;;8923:42:1;8911:55;;21820:50:0;;;8893:74:1;8983:18;;;8976:34;;;9026:18;;;9019:34;;;8866:18;;21820:50:0;8691:368:1;21769:117:0;22005:15;;;:9;:15;;;;;;;;;;22023:19;;;;22005:37;;21521:548;22085:16;;;22081:427;;22247:12;:21;;;;;;;22081:427;;;22459:13;;;:9;:13;;;;;;;;;;:22;;;;;;22081:427;22540:2;22525:25;;22534:4;22525:25;;;22544:5;22525:25;;;;160::1;;148:2;133:18;;14:177;22525:25:0;;;;;;;;21435:1123;;;:::o;33344:345::-;33427:4;33383:23;18464:18;;;;;;;;;;;;33448:20;;;33444:59;;33485:7;33344:345::o;33444:59::-;33583:7;;33538:15;;33568:22;;33564:77;;;-1:-1:-1;33622:7:0;;33564:77;33651:30;33668:12;33651:16;:30::i;196:607:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;794:2;724:66;719:2;711:6;707:15;703:88;692:9;688:104;684:113;676:121;;;;196:607;;;;:::o;808:154::-;894:42;887:5;883:54;876:5;873:65;863:93;;952:1;949;942:12;967:315;1035:6;1043;1096:2;1084:9;1075:7;1071:23;1067:32;1064:52;;;1112:1;1109;1102:12;1064:52;1151:9;1138:23;1170:31;1195:5;1170:31;:::i;:::-;1220:5;1272:2;1257:18;;;;1244:32;;-1:-1:-1;;;967:315:1:o;1479:180::-;1538:6;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;-1:-1:-1;1630:23:1;;1479:180;-1:-1:-1;1479:180:1:o;1664:456::-;1741:6;1749;1757;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;1865:9;1852:23;1884:31;1909:5;1884:31;:::i;:::-;1934:5;-1:-1:-1;1991:2:1;1976:18;;1963:32;2004:33;1963:32;2004:33;:::i;:::-;1664:456;;2056:7;;-1:-1:-1;;;2110:2:1;2095:18;;;;2082:32;;1664:456::o;2314:247::-;2373:6;2426:2;2414:9;2405:7;2401:23;2397:32;2394:52;;;2442:1;2439;2432:12;2394:52;2481:9;2468:23;2500:31;2525:5;2500:31;:::i;:::-;2550:5;2314:247;-1:-1:-1;;;2314:247:1:o;2566:248::-;2634:6;2642;2695:2;2683:9;2674:7;2670:23;2666:32;2663:52;;;2711:1;2708;2701:12;2663:52;-1:-1:-1;;2734:23:1;;;2804:2;2789:18;;;2776:32;;-1:-1:-1;2566:248:1:o;2819:118::-;2905:5;2898:13;2891:21;2884:5;2881:32;2871:60;;2927:1;2924;2917:12;2942:382;3007:6;3015;3068:2;3056:9;3047:7;3043:23;3039:32;3036:52;;;3084:1;3081;3074:12;3036:52;3123:9;3110:23;3142:31;3167:5;3142:31;:::i;:::-;3192:5;-1:-1:-1;3249:2:1;3234:18;;3221:32;3262:30;3221:32;3262:30;:::i;:::-;3311:7;3301:17;;;2942:382;;;;;:::o;3560:388::-;3628:6;3636;3689:2;3677:9;3668:7;3664:23;3660:32;3657:52;;;3705:1;3702;3695:12;3657:52;3744:9;3731:23;3763:31;3788:5;3763:31;:::i;:::-;3813:5;-1:-1:-1;3870:2:1;3855:18;;3842:32;3883:33;3842:32;3883:33;:::i;3953:437::-;4032:1;4028:12;;;;4075;;;4096:61;;4150:4;4142:6;4138:17;4128:27;;4096:61;4203:2;4195:6;4192:14;4172:18;4169:38;4166:218;;4240:77;4237:1;4230:88;4341:4;4338:1;4331:15;4369:4;4366:1;4359:15;4166:218;;3953:437;;;:::o;4736:184::-;4806:6;4859:2;4847:9;4838:7;4834:23;4830:32;4827:52;;;4875:1;4872;4865:12;4827:52;-1:-1:-1;4898:16:1;;4736:184;-1:-1:-1;4736:184:1:o;5572:245::-;5639:6;5692:2;5680:9;5671:7;5667:23;5663:32;5660:52;;;5708:1;5705;5698:12;5660:52;5740:9;5734:16;5759:28;5781:5;5759:28;:::i;5822:184::-;5874:77;5871:1;5864:88;5971:4;5968:1;5961:15;5995:4;5992:1;5985:15;6011:168;6084:9;;;6115;;6132:15;;;6126:22;;6112:37;6102:71;;6153:18;;:::i;6184:274::-;6224:1;6250;6240:189;;6285:77;6282:1;6275:88;6386:4;6383:1;6376:15;6414:4;6411:1;6404:15;6240:189;-1:-1:-1;6443:9:1;;6184:274::o;6815:251::-;6885:6;6938:2;6926:9;6917:7;6913:23;6909:32;6906:52;;;6954:1;6951;6944:12;6906:52;6986:9;6980:16;7005:31;7030:5;7005:31;:::i;8038:306::-;8126:6;8134;8142;8195:2;8183:9;8174:7;8170:23;8166:32;8163:52;;;8211:1;8208;8201:12;8163:52;8240:9;8234:16;8224:26;;8290:2;8279:9;8275:18;8269:25;8259:35;;8334:2;8323:9;8319:18;8313:25;8303:35;;8038:306;;;;;:::o;9253:184::-;9305:77;9302:1;9295:88;9402:4;9399:1;9392:15;9426:4;9423:1;9416:15;9442:1026;9704:4;9752:3;9741:9;9737:19;9783:6;9772:9;9765:25;9809:2;9847:6;9842:2;9831:9;9827:18;9820:34;9890:3;9885:2;9874:9;9870:18;9863:31;9914:6;9949;9943:13;9980:6;9972;9965:22;10018:3;10007:9;10003:19;9996:26;;10057:2;10049:6;10045:15;10031:29;;10078:1;10088:218;10102:6;10099:1;10096:13;10088:218;;;10167:13;;10182:42;10163:62;10151:75;;10281:15;;;;10246:12;;;;10124:1;10117:9;10088:218;;;-1:-1:-1;;10374:42:1;10362:55;;;;10357:2;10342:18;;10335:83;-1:-1:-1;;;10449:3:1;10434:19;10427:35;10323:3;9442:1026;-1:-1:-1;;;9442:1026:1:o;11237:125::-;11302:9;;;11323:10;;;11320:36;;;11336:18;;:::i;12127:128::-;12194:9;;;12215:11;;;12212:37;;;12229:18;;:::i

Swarm Source

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