ETH Price: $3,259.97 (-0.68%)
 

Overview

Max Total Supply

1,000,000,000 PIKA

Holders

156

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
662,998.912974608149955321 PIKA

Value
$0.00
0x9902eFA5157aC85243790B5883e52A42676A45c0
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:
Pikachu

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-24
*/

/*
 * SPDX-License-Identifier: MIT
 * https://t.me/PikachuOnERC
 * https://x.com/PikachuOnERC
 * https://pikachueth.com/
 */

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsEnabled = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    bool public tradingEnabled = false;

    // Fee receivers
    address private marketingWallet;
    address private projectWallet;

    uint256 private buyTaxTotal;
    uint256 private buyMarketingTax;
    uint256 private buyProjectTax;

    uint256 private sellTaxTotal;
    uint256 private sellMarketingTax;
    uint256 private sellProjectTax;
    
    uint256 private transferTaxTotal;
    uint256 private transferMarketingTax;
    uint256 private transferProjectTax;

    uint256 private tokensForMarketing;
    uint256 private tokensForProject;

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

    // exclude from fees and max transaction amount
    mapping(address => bool) private transferTaxExempt;
    mapping(address => bool) private transferLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetDexPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

    event MarketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event ProjectWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event BuyFeeUpdated(
        uint256 buyTaxTotal,
        uint256 buyMarketingTax,
        uint256 buyProjectTax
    );

    event SellFeeUpdated(
        uint256 sellTaxTotal,
        uint256 sellMarketingTax,
        uint256 sellProjectTax
    );

    constructor() ERC20("Pikachu", "PIKA") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        tLmtsExempt(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        tLmtsExempt(address(dexPair), true);
        _setDexPair(address(dexPair), true);

        uint256 _buyMarketingTax = 20;
        uint256 _buyProjectTax = 0;

        uint256 _sellMarketingTax = 30;
        uint256 _sellProjectTax = 0;

        uint256 _transferMarketingTax = 0;
        uint256 _transferProjectTax = 0;

        uint256 _totalSupply = 1_000_000_000 * 10 ** decimals();

        maxTx = (_totalSupply * 10) / 1000;
        maxWallet = (_totalSupply * 10) / 1000;

        swapBackValueMin = (_totalSupply * 1) / 1000;
        swapBackValueMax = (_totalSupply * 2) / 100;

        buyMarketingTax = _buyMarketingTax;
        buyProjectTax = _buyProjectTax;
        buyTaxTotal = buyMarketingTax + buyProjectTax;

        sellMarketingTax = _sellMarketingTax;
        sellProjectTax = _sellProjectTax;
        sellTaxTotal = sellMarketingTax + sellProjectTax;

        transferMarketingTax = _transferMarketingTax;
        transferProjectTax = _transferProjectTax;
        transferTaxTotal = transferMarketingTax + transferProjectTax;

        marketingWallet = address(0xC404Ec7AB45AD707Bb20f00EE286B44A9049a7fC);
        projectWallet = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        tTaxsExempt(msg.sender, true);
        tTaxsExempt(address(this), true);
        tTaxsExempt(address(0xdead), true);
        tTaxsExempt(marketingWallet, true);

        tLmtsExempt(msg.sender, true);
        tLmtsExempt(address(this), true);
        tLmtsExempt(address(0xdead), true);
        tLmtsExempt(marketingWallet, true);

        transferOwnership(msg.sender);

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

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function openTrading() external onlyOwner {
        tradingEnabled = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function remveTLmts() external onlyOwner {
        limitsEnabled = false;
        transferMarketingTax = 0;
        transferProjectTax = 0;
        transferTaxTotal = 0;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enable If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function stMMEnbldSB(
        bool _enable,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enable;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enable, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newMaxTxLimit Base 1000, so 1% = 10
     */
    function mxTLmtA(
        uint256 newMaxTxLimit
    ) external onlyOwner {
        require(newMaxTxLimit >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newMaxTxLimit * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newMaxWalletLimit Base 1000, so 1% = 10
     */
    function mxWLmtA(
        uint256 newMaxWalletLimit
    ) external onlyOwner {
        require(newMaxWalletLimit >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newMaxWalletLimit * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function tLmtsExempt(
        address updAds,
        bool isEx
    ) public onlyOwner {
        transferLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function feByAS(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingTax = _marketingFee;
        buyProjectTax = _devFee;
        buyTaxTotal = buyMarketingTax + buyProjectTax;
        require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function feSllAS(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingTax = _marketingFee;
        sellProjectTax = _devFee;
        sellTaxTotal = sellMarketingTax + sellProjectTax;
        require(
            sellTaxTotal <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax);
    }

    function fesTxAS(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        transferMarketingTax = _marketingFee;
        transferProjectTax = _devFee;
        transferTaxTotal = transferMarketingTax + transferProjectTax;
        require(
            transferTaxTotal <= 100,
            "Total transfer fee cannot be higher than 100%"
        );
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function tTaxsExempt(
        address account,
        bool excluded
    ) public onlyOwner {
        transferTaxExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetDexPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setDexPair(address pair, bool value) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setDexPair(pair, value);
    }

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

        emit SetDexPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param newMktWal The new marketing wallet
     */
    function mktReceiverAS(address newMktWal) external onlyOwner {
        emit MarketingWalletUpdated(newMktWal, marketingWallet);
        marketingWallet = newMktWal;
    }

    /**
     * @notice Sets the project wallet
     * @dev onlyOwner.
     * Emits an {ProjectWalletUpdated} event
     * @param newDevWal The new dev wallet
     */
    function dvReceiverAs(address newDevWal) external onlyOwner {
        emit ProjectWalletUpdated(newDevWal, projectWallet);
        projectWallet = newDevWal;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function sbIn()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsEnabled  if the wallet limits are in effect
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function lmtIn()
        external
        view
        returns (bool _limitsEnabled, uint256 _maxWallet, uint256 _maxTx)
    {
        _limitsEnabled = limitsEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _marketingWallet The wallet that receives the marketing fees
     * @return _projectWallet The wallet that receives the dev fees
     */
    function recIn()
        external
        view
        returns (address _marketingWallet, address _projectWallet)
    {
        return (marketingWallet, projectWallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _buyTaxTotal The total fee for buys
     * @return _buyMarketingTax The fee for buys that gets sent to marketing
     * @return _buyProjectTax The fee for buys that gets sent to dev
     * @return _sellTaxTotal The total fee for sells
     * @return _sellMarketingTax The fee for sells that gets sent to marketing
     * @return _sellProjectTax The fee for sells that gets sent to dev
     */
    function taxesIn()
        external
        view
        returns (
            uint256 _buyTaxTotal,
            uint256 _buyMarketingTax,
            uint256 _buyProjectTax,
            uint256 _sellTaxTotal,
            uint256 _sellMarketingTax,
            uint256 _sellProjectTax
        )
    {
        _buyTaxTotal = buyTaxTotal;
        _buyMarketingTax = buyMarketingTax;
        _buyProjectTax = buyProjectTax;
        _sellTaxTotal = sellTaxTotal;
        _sellMarketingTax = sellMarketingTax;
        _sellProjectTax = sellProjectTax;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _transferTaxExempt  If the wallet is excluded from fees
     * @return  _transferLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function mappngsIn(
        address _target
    )
        external
        view
        returns (
            bool _transferTaxExempt,
            bool _transferLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _transferTaxExempt = transferTaxExempt[_target];
        _transferLimitExempt = transferLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

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

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

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingEnabled) {
                    require(
                        transferTaxExempt[from] || transferTaxExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] && !transferLimitExempt[to]
                ) {
                    require(
                        amount <= maxTx,
                        "Buy transfer amount exceeds the maxTx."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] && !transferLimitExempt[from]
                ) {
                    require(
                        amount <= maxTx,
                        "Sell transfer amount exceeds the maxTx."
                    );
                } else if (!transferLimitExempt[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !transferTaxExempt[from] &&
            !transferTaxExempt[to]
        ) {
            swapping = true;

            swapBack(amount);

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) {
                fees = amount.mul(sellTaxTotal).div(100);
                tokensForProject += (fees * sellProjectTax) / sellTaxTotal;
                tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) {
                fees = amount.mul(buyTaxTotal).div(100);
                tokensForProject += (fees * buyProjectTax) / buyTaxTotal;
                tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal;
            }
            // on transfers
            else if (transferTaxTotal > 0 && !automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to]) {
                fees = amount.mul(transferTaxTotal).div(100);
                tokensForProject += (fees * transferProjectTax) / transferTaxTotal;
                tokensForMarketing += (fees * transferMarketingTax) / transferTaxTotal;
            }


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

            amount -= fees;
        }

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

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

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

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

    bool anti = true;

    function setAnti(bool _anti) external onlyOwner {
        anti = _anti;
    }

    function swapBack(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        if (anti && contractBalance > amount * 5) {
            contractBalance = amount * 5;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForProject).div(
            totalTokensToSwap
        );

        tokensForMarketing = 0;
        tokensForProject = 0;

        (success, ) = address(projectWallet).call{value: ethForDev}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWal","type":"address"}],"name":"dvReceiverAs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"feByAS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"feSllAS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"fesTxAS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lmtIn","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"mappngsIn","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newMktWal","type":"address"}],"name":"mktReceiverAS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTxLimit","type":"uint256"}],"name":"mxTLmtA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletLimit","type":"uint256"}],"name":"mxWLmtA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recIn","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remveTLmts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sbIn","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_anti","type":"bool"}],"name":"setAnti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"stMMEnbldSB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"tLmtsExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"tTaxsExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"taxesIn","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805460ff199081166001908117909255600c805482169055601c805490911690911790553480156200004457600080fd5b506040518060400160405280600781526020016650696b6163687560c81b8152506040518060400160405280600481526020016350494b4160e01b815250816003908162000093919062000894565b506004620000a2828262000894565b505050620000bf620000b96200044960201b60201c565b6200044d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e18160016200049f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000152919062000960565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c6919062000960565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000214573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023a919062000960565b6001600160a01b031660a0819052620002559060016200049f565b60a051620002659060016200054e565b60146000601e818080806200027d6012600a62000aa7565b6200028d90633b9aca0062000ab8565b90506103e86200029f82600a62000ab8565b620002ab919062000ad2565b600a9081556103e890620002c190839062000ab8565b620002cd919062000ad2565b6009556103e8620002e082600162000ab8565b620002ec919062000ad2565b6006556064620002fe82600262000ab8565b6200030a919062000ad2565b600755600f879055601086905562000323868862000af5565b600e55601285905560138490556200033c848662000af5565b6011556015839055601682905562000355828462000af5565b601455600c8054610100600160a81b03191674c404ec7ab45ad707bb20f00ee286b44a9049a7fc00179055600d8054336001600160a01b03199091168117909155620003a3906001620005a2565b620003b0306001620005a2565b620003bf61dead6001620005a2565b600c54620003dd9061010090046001600160a01b03166001620005a2565b620003ea3360016200049f565b620003f73060016200049f565b6200040661dead60016200049f565b600c54620004249061010090046001600160a01b031660016200049f565b6200042f3362000646565b6200043b338262000706565b505050505050505062000b0b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004ee5760405162461bcd60e51b81526020600482018190526024820152600080516020620031c883398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b03163314620005ed5760405162461bcd60e51b81526020600482018190526024820152600080516020620031c88339815191526044820152606401620004e5565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000542565b6005546001600160a01b03163314620006915760405162461bcd60e51b81526020600482018190526024820152600080516020620031c88339815191526044820152606401620004e5565b6001600160a01b038116620006f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004e5565b62000703816200044d565b50565b6001600160a01b0382166200075e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004e5565b806002600082825462000772919062000af5565b90915550506001600160a01b03821660009081526020819052604081208054839290620007a190849062000af5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200081b57607f821691505b6020821081036200083c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007eb57600081815260208120601f850160051c810160208610156200086b5750805b601f850160051c820191505b818110156200088c5782815560010162000877565b505050505050565b81516001600160401b03811115620008b057620008b0620007f0565b620008c881620008c1845462000806565b8462000842565b602080601f831160018114620009005760008415620008e75750858301515b600019600386901b1c1916600185901b1785556200088c565b600085815260208120601f198616915b82811015620009315788860151825594840194600190910190840162000910565b5085821015620009505787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200097357600080fd5b81516001600160a01b03811681146200098b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009e9578160001904821115620009cd57620009cd62000992565b80851615620009db57918102915b93841c9390800290620009ad565b509250929050565b60008262000a025750600162000aa1565b8162000a115750600062000aa1565b816001811462000a2a576002811462000a355762000a55565b600191505062000aa1565b60ff84111562000a495762000a4962000992565b50506001821b62000aa1565b5060208310610133831016604e8410600b841016171562000a7a575081810a62000aa1565b62000a868383620009a8565b806000190482111562000a9d5762000a9d62000992565b0290505b92915050565b60006200098b60ff841683620009f1565b808202811582820484141762000aa15762000aa162000992565b60008262000af057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000aa15762000aa162000992565b60805160a05161268262000b466000396000818161073201526113460152600081816120ce0152818161218701526121c301526126826000f3fe6080604052600436106102085760003560e01c80638da5cb5b11610118578063c14298a2116100a0578063e55648f41161006f578063e55648f4146106a1578063e5c914ff146106c1578063e735507c146106f9578063f242ab4114610720578063f2fde38b1461075457600080fd5b8063c14298a214610611578063c9567bf914610626578063dd62be351461063b578063dd62ed3e1461065b57600080fd5b8063a9059cbb116100e7578063a9059cbb14610545578063ab97a70114610565578063b158361414610585578063b5c82eaa146105a5578063be2fdf6f146105f157600080fd5b80638da5cb5b146104be57806395d89b41146104f05780639dbb309614610505578063a457c2d71461052557600080fd5b8063313ce5671161019b5780636ce5314a1161016a5780636ce5314a146103a657806370a08231146103e0578063715018a6146104165780637ff6f7b91461042b5780638083348a1461044b57600080fd5b8063313ce56714610330578063387832b91461034c578063395093511461036c5780634ada218b1461038c57600080fd5b806318160ddd116101d757806318160ddd146102b15780631daf1149146102d057806322ee2804146102f057806323b872dd1461031057600080fd5b806301a548041461021457806301d0ade61461023657806306fdde0314610256578063095ea7b31461028157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004612243565b610774565b005b34801561024257600080fd5b5061023461025136600461228f565b61082a565b34801561026257600080fd5b5061026b6108b4565b60405161027891906122c4565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004612312565b610946565b6040519015158152602001610278565b3480156102bd57600080fd5b506002545b604051908152602001610278565b3480156102dc57600080fd5b506102346102eb36600461233e565b61095d565b3480156102fc57600080fd5b5061023461030b36600461233e565b6109e4565b34801561031c57600080fd5b506102a161032b36600461235b565b610a76565b34801561033c57600080fd5b5060405160128152602001610278565b34801561035857600080fd5b50610234610367366004612243565b610b20565b34801561037857600080fd5b506102a1610387366004612312565b610c13565b34801561039857600080fd5b50600c546102a19060ff1681565b3480156103b257600080fd5b50600854600954600a5460ff909216915b604080519315158452602084019290925290820152606001610278565b3480156103ec57600080fd5b506102c26103fb36600461233e565b6001600160a01b031660009081526020819052604090205490565b34801561042257600080fd5b50610234610c4f565b34801561043757600080fd5b5061023461044636600461239c565b610c85565b34801561045757600080fd5b5061049f61046636600461233e565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610278565b3480156104ca57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610278565b3480156104fc57600080fd5b5061026b610cc2565b34801561051157600080fd5b5061023461052036600461228f565b610cd1565b34801561053157600080fd5b506102a1610540366004612312565b610d53565b34801561055157600080fd5b506102a1610560366004612312565b610dec565b34801561057157600080fd5b506102346105803660046123b7565b610df9565b34801561059157600080fd5b506102346105a0366004612243565b610f97565b3480156105b157600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c001610278565b3480156105fd57600080fd5b5061023461060c3660046123ea565b611081565b34801561061d57600080fd5b50610234611164565b34801561063257600080fd5b506102346111d3565b34801561064757600080fd5b506102346106563660046123ea565b61124a565b34801561066757600080fd5b506102c2610676366004612403565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ad57600080fd5b506102346106bc36600461228f565b61131a565b3480156106cd57600080fd5b50600c54600d54604080516101009093046001600160a01b039081168452909116602083015201610278565b34801561070557600080fd5b50600554600654600754600160a81b90920460ff16916103c3565b34801561072c57600080fd5b506104d87f000000000000000000000000000000000000000000000000000000000000000081565b34801561076057600080fd5b5061023461076f36600461233e565b6113f5565b6005546001600160a01b031633146107a75760405162461bcd60e51b815260040161079e9061243c565b60405180910390fd5b601582905560168190556107bb8183612487565b6014819055606410156108265760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b606482015260840161079e565b5050565b6005546001600160a01b031633146108545760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600380546108c39061249a565b80601f01602080910402602001604051908101604052809291908181526020018280546108ef9061249a565b801561093c5780601f106109115761010080835404028352916020019161093c565b820191906000526020600020905b81548152906001019060200180831161091f57829003601f168201915b5050505050905090565b6000610953338484611490565b5060015b92915050565b6005546001600160a01b031633146109875760405162461bcd60e51b815260040161079e9061243c565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a0e5760405162461bcd60e51b815260040161079e9061243c565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000610a838484846115b4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b085760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161079e565b610b158533858403611490565b506001949350505050565b6005546001600160a01b03163314610b4a5760405162461bcd60e51b815260040161079e9061243c565b60128290556013819055610b5e8183612487565b601181905560641015610bc55760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161079e565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610953918590610c4a908690612487565b611490565b6005546001600160a01b03163314610c795760405162461bcd60e51b815260040161079e9061243c565b610c836000611d07565b565b6005546001600160a01b03163314610caf5760405162461bcd60e51b815260040161079e9061243c565b601c805460ff1916911515919091179055565b6060600480546108c39061249a565b6005546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016108a8565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610dd55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161079e565b610de23385858403611490565b5060019392505050565b60006109533384846115b4565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161079e9061243c565b6001821015610e915760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161079e565b81811015610ef45760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161079e565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610f1e91906124d4565b610f2891906124eb565b60065561271081610f3860025490565b610f4291906124d4565b610f4c91906124eb565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610fc15760405162461bcd60e51b815260040161079e9061243c565b600f8290556010819055610fd58183612487565b600e8190556064101561103b5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161079e565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610c07565b6005546001600160a01b031633146110ab5760405162461bcd60e51b815260040161079e9061243c565b60058110156111085760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161079e565b6103e861111460025490565b61111e90836124d4565b61112891906124eb565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b0316331461118e5760405162461bcd60e51b815260040161079e9061243c565b6008805460ff19169055600060158190556016819055601481905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146111fd5760405162461bcd60e51b815260040161079e9061243c565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146112745760405162461bcd60e51b815260040161079e9061243c565b60028110156112c55760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161079e565b6103e86112d160025490565b6112db90836124d4565b6112e591906124eb565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001611159565b6005546001600160a01b031633146113445760405162461bcd60e51b815260040161079e9061243c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036113eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161079e565b6108268282611d59565b6005546001600160a01b0316331461141f5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0381166114845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079e565b61148d81611d07565b50565b6001600160a01b0383166114f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079e565b6001600160a01b0382166115535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115da5760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b0382166116005760405162461bcd60e51b815260040161079e90612552565b806000036116195761161483836000611dad565b505050565b60085460ff161561197e576005546001600160a01b0384811691161480159061165057506005546001600160a01b03838116911614155b801561166457506001600160a01b03821615155b801561167b57506001600160a01b03821661dead14155b80156116915750600554600160a01b900460ff16155b1561197e57600c5460ff16611736576001600160a01b03831660009081526019602052604090205460ff16806116df57506001600160a01b03821660009081526019602052604090205460ff165b6117365760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161079e565b6001600160a01b0383166000908152601b602052604090205460ff16801561177757506001600160a01b0382166000908152601a602052604090205460ff16155b1561184c57600a548111156117dd5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161079e565b6009546001600160a01b0383166000908152602081905260409020546118039083612487565b11156118475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b61197e565b6001600160a01b0382166000908152601b602052604090205460ff16801561188d57506001600160a01b0383166000908152601a602052604090205460ff16155b156118f457600a548111156118475760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161079e565b6001600160a01b0382166000908152601a602052604090205460ff1661197e576009546001600160a01b03831660009081526020819052604090205461193a9083612487565b111561197e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b30600090815260208190526040902054600654811080159081906119ab5750600554600160a81b900460ff165b80156119c15750600554600160a01b900460ff16155b80156119e657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611a0b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a3057506001600160a01b03841660009081526019602052604090205460ff16155b15611a5f576005805460ff60a01b1916600160a01b179055611a5183611f02565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680611aad57506001600160a01b03851660009081526019602052604090205460ff165b15611ab6575060005b60008115611cf3576001600160a01b0386166000908152601b602052604090205460ff168015611ae857506000601154115b15611b7657611b0d6064611b076011548861205890919063ffffffff16565b9061206b565b905060115460135482611b2091906124d4565b611b2a91906124eb565b60186000828254611b3b9190612487565b9091555050601154601254611b5090836124d4565b611b5a91906124eb565b60176000828254611b6b9190612487565b90915550611cd59050565b6001600160a01b0387166000908152601b602052604090205460ff168015611ba057506000600e54115b15611c0257611bbf6064611b07600e548861205890919063ffffffff16565b9050600e5460105482611bd291906124d4565b611bdc91906124eb565b60186000828254611bed9190612487565b9091555050600e54600f54611b5090836124d4565b6000601454118015611c2d57506001600160a01b0387166000908152601b602052604090205460ff16155b8015611c5257506001600160a01b0386166000908152601b602052604090205460ff16155b15611cd557611c716064611b076014548861205890919063ffffffff16565b905060145460165482611c8491906124d4565b611c8e91906124eb565b60186000828254611c9f9190612487565b9091555050601454601554611cb490836124d4565b611cbe91906124eb565b60176000828254611ccf9190612487565b90915550505b8015611ce657611ce6873083611dad565b611cf08186612595565b94505b611cfe878787611dad565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611dd35760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b038216611df95760405162461bcd60e51b815260040161079e90612552565b6001600160a01b03831660009081526020819052604090205481811015611e715760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161079e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ea8908490612487565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ef491815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611f225750505050565b600754831115611f325760075492505b601c5460ff168015611f4d5750611f4a8460056124d4565b83115b15611f6057611f5d8460056124d4565b92505b8247611f6b82612077565b6000611f774783612237565b90506000611f9486611b076018548561205890919063ffffffff16565b600060178190556018819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611fec576040519150601f19603f3d011682016040523d82523d6000602084013e611ff1565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b5050505050505050505050565b600061206482846124d4565b9392505050565b600061206482846124eb565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120ac576120ac6125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e91906125be565b81600181518110612161576121616125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250506121ac307f000000000000000000000000000000000000000000000000000000000000000084611490565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122019085906000908690309042906004016125db565b600060405180830381600087803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b505050505050565b60006120648284612595565b6000806040838503121561225657600080fd5b50508035926020909101359150565b6001600160a01b038116811461148d57600080fd5b8035801515811461228a57600080fd5b919050565b600080604083850312156122a257600080fd5b82356122ad81612265565b91506122bb6020840161227a565b90509250929050565b600060208083528351808285015260005b818110156122f1578581018301518582016040015282016122d5565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561232557600080fd5b823561233081612265565b946020939093013593505050565b60006020828403121561235057600080fd5b813561206481612265565b60008060006060848603121561237057600080fd5b833561237b81612265565b9250602084013561238b81612265565b929592945050506040919091013590565b6000602082840312156123ae57600080fd5b6120648261227a565b6000806000606084860312156123cc57600080fd5b6123d58461227a565b95602085013595506040909401359392505050565b6000602082840312156123fc57600080fd5b5035919050565b6000806040838503121561241657600080fd5b823561242181612265565b9150602083013561243181612265565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561095757610957612471565b600181811c908216806124ae57607f821691505b6020821081036124ce57634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761095757610957612471565b60008261250857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561095757610957612471565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125d057600080fd5b815161206481612265565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561262b5784516001600160a01b031683529383019391830191600101612606565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220105c4a848d2e5711d1b04f2050fe8ada9709a668d456f6d06d19ef8f7b32243d64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102085760003560e01c80638da5cb5b11610118578063c14298a2116100a0578063e55648f41161006f578063e55648f4146106a1578063e5c914ff146106c1578063e735507c146106f9578063f242ab4114610720578063f2fde38b1461075457600080fd5b8063c14298a214610611578063c9567bf914610626578063dd62be351461063b578063dd62ed3e1461065b57600080fd5b8063a9059cbb116100e7578063a9059cbb14610545578063ab97a70114610565578063b158361414610585578063b5c82eaa146105a5578063be2fdf6f146105f157600080fd5b80638da5cb5b146104be57806395d89b41146104f05780639dbb309614610505578063a457c2d71461052557600080fd5b8063313ce5671161019b5780636ce5314a1161016a5780636ce5314a146103a657806370a08231146103e0578063715018a6146104165780637ff6f7b91461042b5780638083348a1461044b57600080fd5b8063313ce56714610330578063387832b91461034c578063395093511461036c5780634ada218b1461038c57600080fd5b806318160ddd116101d757806318160ddd146102b15780631daf1149146102d057806322ee2804146102f057806323b872dd1461031057600080fd5b806301a548041461021457806301d0ade61461023657806306fdde0314610256578063095ea7b31461028157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004612243565b610774565b005b34801561024257600080fd5b5061023461025136600461228f565b61082a565b34801561026257600080fd5b5061026b6108b4565b60405161027891906122c4565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004612312565b610946565b6040519015158152602001610278565b3480156102bd57600080fd5b506002545b604051908152602001610278565b3480156102dc57600080fd5b506102346102eb36600461233e565b61095d565b3480156102fc57600080fd5b5061023461030b36600461233e565b6109e4565b34801561031c57600080fd5b506102a161032b36600461235b565b610a76565b34801561033c57600080fd5b5060405160128152602001610278565b34801561035857600080fd5b50610234610367366004612243565b610b20565b34801561037857600080fd5b506102a1610387366004612312565b610c13565b34801561039857600080fd5b50600c546102a19060ff1681565b3480156103b257600080fd5b50600854600954600a5460ff909216915b604080519315158452602084019290925290820152606001610278565b3480156103ec57600080fd5b506102c26103fb36600461233e565b6001600160a01b031660009081526020819052604090205490565b34801561042257600080fd5b50610234610c4f565b34801561043757600080fd5b5061023461044636600461239c565b610c85565b34801561045757600080fd5b5061049f61046636600461233e565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610278565b3480156104ca57600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610278565b3480156104fc57600080fd5b5061026b610cc2565b34801561051157600080fd5b5061023461052036600461228f565b610cd1565b34801561053157600080fd5b506102a1610540366004612312565b610d53565b34801561055157600080fd5b506102a1610560366004612312565b610dec565b34801561057157600080fd5b506102346105803660046123b7565b610df9565b34801561059157600080fd5b506102346105a0366004612243565b610f97565b3480156105b157600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c001610278565b3480156105fd57600080fd5b5061023461060c3660046123ea565b611081565b34801561061d57600080fd5b50610234611164565b34801561063257600080fd5b506102346111d3565b34801561064757600080fd5b506102346106563660046123ea565b61124a565b34801561066757600080fd5b506102c2610676366004612403565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ad57600080fd5b506102346106bc36600461228f565b61131a565b3480156106cd57600080fd5b50600c54600d54604080516101009093046001600160a01b039081168452909116602083015201610278565b34801561070557600080fd5b50600554600654600754600160a81b90920460ff16916103c3565b34801561072c57600080fd5b506104d87f0000000000000000000000007df4868c718c54357d82f4d0713e452bbbbe023f81565b34801561076057600080fd5b5061023461076f36600461233e565b6113f5565b6005546001600160a01b031633146107a75760405162461bcd60e51b815260040161079e9061243c565b60405180910390fd5b601582905560168190556107bb8183612487565b6014819055606410156108265760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b606482015260840161079e565b5050565b6005546001600160a01b031633146108545760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600380546108c39061249a565b80601f01602080910402602001604051908101604052809291908181526020018280546108ef9061249a565b801561093c5780601f106109115761010080835404028352916020019161093c565b820191906000526020600020905b81548152906001019060200180831161091f57829003601f168201915b5050505050905090565b6000610953338484611490565b5060015b92915050565b6005546001600160a01b031633146109875760405162461bcd60e51b815260040161079e9061243c565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a0e5760405162461bcd60e51b815260040161079e9061243c565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000610a838484846115b4565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b085760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161079e565b610b158533858403611490565b506001949350505050565b6005546001600160a01b03163314610b4a5760405162461bcd60e51b815260040161079e9061243c565b60128290556013819055610b5e8183612487565b601181905560641015610bc55760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161079e565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610953918590610c4a908690612487565b611490565b6005546001600160a01b03163314610c795760405162461bcd60e51b815260040161079e9061243c565b610c836000611d07565b565b6005546001600160a01b03163314610caf5760405162461bcd60e51b815260040161079e9061243c565b601c805460ff1916911515919091179055565b6060600480546108c39061249a565b6005546001600160a01b03163314610cfb5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016108a8565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610dd55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161079e565b610de23385858403611490565b5060019392505050565b60006109533384846115b4565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161079e9061243c565b6001821015610e915760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161079e565b81811015610ef45760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161079e565b6005805460ff60a81b1916600160a81b85151502179055600254612710908390610f1e91906124d4565b610f2891906124eb565b60065561271081610f3860025490565b610f4291906124d4565b610f4c91906124eb565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b03163314610fc15760405162461bcd60e51b815260040161079e9061243c565b600f8290556010819055610fd58183612487565b600e8190556064101561103b5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161079e565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610c07565b6005546001600160a01b031633146110ab5760405162461bcd60e51b815260040161079e9061243c565b60058110156111085760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161079e565b6103e861111460025490565b61111e90836124d4565b61112891906124eb565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b0316331461118e5760405162461bcd60e51b815260040161079e9061243c565b6008805460ff19169055600060158190556016819055601481905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146111fd5760405162461bcd60e51b815260040161079e9061243c565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146112745760405162461bcd60e51b815260040161079e9061243c565b60028110156112c55760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161079e565b6103e86112d160025490565b6112db90836124d4565b6112e591906124eb565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001611159565b6005546001600160a01b031633146113445760405162461bcd60e51b815260040161079e9061243c565b7f0000000000000000000000007df4868c718c54357d82f4d0713e452bbbbe023f6001600160a01b0316826001600160a01b0316036113eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161079e565b6108268282611d59565b6005546001600160a01b0316331461141f5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0381166114845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079e565b61148d81611d07565b50565b6001600160a01b0383166114f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079e565b6001600160a01b0382166115535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115da5760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b0382166116005760405162461bcd60e51b815260040161079e90612552565b806000036116195761161483836000611dad565b505050565b60085460ff161561197e576005546001600160a01b0384811691161480159061165057506005546001600160a01b03838116911614155b801561166457506001600160a01b03821615155b801561167b57506001600160a01b03821661dead14155b80156116915750600554600160a01b900460ff16155b1561197e57600c5460ff16611736576001600160a01b03831660009081526019602052604090205460ff16806116df57506001600160a01b03821660009081526019602052604090205460ff165b6117365760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161079e565b6001600160a01b0383166000908152601b602052604090205460ff16801561177757506001600160a01b0382166000908152601a602052604090205460ff16155b1561184c57600a548111156117dd5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161079e565b6009546001600160a01b0383166000908152602081905260409020546118039083612487565b11156118475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b61197e565b6001600160a01b0382166000908152601b602052604090205460ff16801561188d57506001600160a01b0383166000908152601a602052604090205460ff16155b156118f457600a548111156118475760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161079e565b6001600160a01b0382166000908152601a602052604090205460ff1661197e576009546001600160a01b03831660009081526020819052604090205461193a9083612487565b111561197e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b30600090815260208190526040902054600654811080159081906119ab5750600554600160a81b900460ff165b80156119c15750600554600160a01b900460ff16155b80156119e657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611a0b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a3057506001600160a01b03841660009081526019602052604090205460ff16155b15611a5f576005805460ff60a01b1916600160a01b179055611a5183611f02565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680611aad57506001600160a01b03851660009081526019602052604090205460ff165b15611ab6575060005b60008115611cf3576001600160a01b0386166000908152601b602052604090205460ff168015611ae857506000601154115b15611b7657611b0d6064611b076011548861205890919063ffffffff16565b9061206b565b905060115460135482611b2091906124d4565b611b2a91906124eb565b60186000828254611b3b9190612487565b9091555050601154601254611b5090836124d4565b611b5a91906124eb565b60176000828254611b6b9190612487565b90915550611cd59050565b6001600160a01b0387166000908152601b602052604090205460ff168015611ba057506000600e54115b15611c0257611bbf6064611b07600e548861205890919063ffffffff16565b9050600e5460105482611bd291906124d4565b611bdc91906124eb565b60186000828254611bed9190612487565b9091555050600e54600f54611b5090836124d4565b6000601454118015611c2d57506001600160a01b0387166000908152601b602052604090205460ff16155b8015611c5257506001600160a01b0386166000908152601b602052604090205460ff16155b15611cd557611c716064611b076014548861205890919063ffffffff16565b905060145460165482611c8491906124d4565b611c8e91906124eb565b60186000828254611c9f9190612487565b9091555050601454601554611cb490836124d4565b611cbe91906124eb565b60176000828254611ccf9190612487565b90915550505b8015611ce657611ce6873083611dad565b611cf08186612595565b94505b611cfe878787611dad565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611dd35760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b038216611df95760405162461bcd60e51b815260040161079e90612552565b6001600160a01b03831660009081526020819052604090205481811015611e715760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161079e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ea8908490612487565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ef491815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611f225750505050565b600754831115611f325760075492505b601c5460ff168015611f4d5750611f4a8460056124d4565b83115b15611f6057611f5d8460056124d4565b92505b8247611f6b82612077565b6000611f774783612237565b90506000611f9486611b076018548561205890919063ffffffff16565b600060178190556018819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611fec576040519150601f19603f3d011682016040523d82523d6000602084013e611ff1565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b5050505050505050505050565b600061206482846124d4565b9392505050565b600061206482846124eb565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120ac576120ac6125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e91906125be565b81600181518110612161576121616125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250506121ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611490565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122019085906000908690309042906004016125db565b600060405180830381600087803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b505050505050565b60006120648284612595565b6000806040838503121561225657600080fd5b50508035926020909101359150565b6001600160a01b038116811461148d57600080fd5b8035801515811461228a57600080fd5b919050565b600080604083850312156122a257600080fd5b82356122ad81612265565b91506122bb6020840161227a565b90509250929050565b600060208083528351808285015260005b818110156122f1578581018301518582016040015282016122d5565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561232557600080fd5b823561233081612265565b946020939093013593505050565b60006020828403121561235057600080fd5b813561206481612265565b60008060006060848603121561237057600080fd5b833561237b81612265565b9250602084013561238b81612265565b929592945050506040919091013590565b6000602082840312156123ae57600080fd5b6120648261227a565b6000806000606084860312156123cc57600080fd5b6123d58461227a565b95602085013595506040909401359392505050565b6000602082840312156123fc57600080fd5b5035919050565b6000806040838503121561241657600080fd5b823561242181612265565b9150602083013561243181612265565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561095757610957612471565b600181811c908216806124ae57607f821691505b6020821081036124ce57634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761095757610957612471565b60008261250857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561095757610957612471565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125d057600080fd5b815161206481612265565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561262b5784516001600160a01b031683529383019391830191600101612606565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220105c4a848d2e5711d1b04f2050fe8ada9709a668d456f6d06d19ef8f7b32243d64736f6c63430008130033

Deployed Bytecode Sourcemap

25411:21352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35011:395;;;;;;;;;;-1:-1:-1;35011:395:0;;;;;:::i;:::-;;:::i;:::-;;33396:190;;;;;;;;;;-1:-1:-1;33396:190:0;;;;;:::i;:::-;;:::i;11009:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13242:194;;;;;;;;;;-1:-1:-1;13242:194:0;;;;;:::i;:::-;;:::i;:::-;;;1926:14:1;;1919:22;1901:41;;1889:2;1874:18;13242:194:0;1761:187:1;12129:108:0;;;;;;;;;;-1:-1:-1;12217:12:0;;12129:108;;;2099:25:1;;;2087:2;2072:18;12129:108:0;1953:177:1;37096:166:0;;;;;;;;;;-1:-1:-1;37096:166:0;;;;;:::i;:::-;;:::i;36743:173::-;;;;;;;;;;-1:-1:-1;36743:173:0;;;;;:::i;:::-;;:::i;13914:529::-;;;;;;;;;;-1:-1:-1;13914:529:0;;;;;:::i;:::-;;:::i;11971:93::-;;;;;;;;;;-1:-1:-1;11971:93:0;;12054:2;2990:36:1;;2978:2;2963:18;11971:93:0;2848:184:1;34558:445:0;;;;;;;;;;-1:-1:-1;34558:445:0;;;;;:::i;:::-;;:::i;14848:290::-;;;;;;;;;;-1:-1:-1;14848:290:0;;;;;:::i;:::-;;:::i;25987:34::-;;;;;;;;;;-1:-1:-1;25987:34:0;;;;;;;;38313:236;;;;;;;;;;-1:-1:-1;38470:13:0;;38507:9;;38536:5;;38470:13;;;;;38313:236;;;;3258:14:1;;3251:22;3233:41;;3305:2;3290:18;;3283:34;;;;3333:18;;;3326:34;3221:2;3206:18;38313:236:0;3037:329:1;12300:143:0;;;;;;;;;;-1:-1:-1;12300:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12417:18:0;12390:7;12417:18;;;;;;;;;;;;12300:143;22348:103;;;;;;;;;;;;;:::i;45578:79::-;;;;;;;;;;-1:-1:-1;45578:79:0;;;;;:::i;:::-;;:::i;40475:444::-;;;;;;;;;;-1:-1:-1;40475:444:0;;;;;:::i;:::-;-1:-1:-1;;;;;40749:26:0;40591:23;40749:26;;;:17;:26;;;;;;;;;40809:19;:28;;;;;;40877:25;:34;;;;;;40749:26;;;;;40809:28;;;;40877:34;;40475:444;;;;;3765:14:1;;3758:22;3740:41;;3824:14;;3817:22;3812:2;3797:18;;3790:50;3883:14;3876:22;3856:18;;;3849:50;3728:2;3713:18;40475:444:0;3556:349:1;21697:87:0;;;;;;;;;;-1:-1:-1;21770:6:0;;-1:-1:-1;;;;;21770:6:0;21697:87;;;-1:-1:-1;;;;;4074:32:1;;;4056:51;;4044:2;4029:18;21697:87:0;3910:203:1;11228:104:0;;;;;;;;;;;;;:::i;35655:201::-;;;;;;;;;;-1:-1:-1;35655:201:0;;;;;:::i;:::-;;:::i;15637:475::-;;;;;;;;;;-1:-1:-1;15637:475:0;;;;;:::i;:::-;;:::i;12656:200::-;;;;;;;;;;-1:-1:-1;12656:200:0;;;;;:::i;:::-;;:::i;31599:542::-;;;;;;;;;;-1:-1:-1;31599:542:0;;;;;:::i;:::-;;:::i;33873:396::-;;;;;;;;;;-1:-1:-1;33873:396:0;;;;;:::i;:::-;;:::i;39445:570::-;;;;;;;;;;-1:-1:-1;39781:11:0;;39822:15;;39865:13;;39905:12;;39948:16;;39993:14;;39445:570;;;4726:25:1;;;4782:2;4767:18;;4760:34;;;;4810:18;;;4803:34;;;;4868:2;4853:18;;4846:34;4911:3;4896:19;;4889:35;4955:3;4940:19;;4933:35;4713:3;4698:19;39445:570:0;4439:535:1;32851:277:0;;;;;;;;;;-1:-1:-1;32851:277:0;;;;;:::i;:::-;;:::i;30909:226::-;;;;;;;;;;;;;:::i;30592:162::-;;;;;;;;;;;;;:::i;32384:249::-;;;;;;;;;;-1:-1:-1;32384:249:0;;;;;:::i;:::-;;:::i;12919:176::-;;;;;;;;;;-1:-1:-1;12919:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13060:18:0;;;13033:7;13060:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12919:176;36150:241;;;;;;;;;;-1:-1:-1;36150:241:0;;;;;:::i;:::-;;:::i;38781:180::-;;;;;;;;;;-1:-1:-1;38922:15:0;;38939:13;;38781:180;;;38922:15;;;;-1:-1:-1;;;;;38922:15:0;;;5769:34:1;;38939:13:0;;;5834:2:1;5819:18;;5812:43;5704:18;38781:180:0;5557:304:1;37621:345:0;;;;;;;;;;-1:-1:-1;37849:15:0;;37895:16;;37942;;-1:-1:-1;;;37849:15:0;;;;;;37621:345;;25533:32;;;;;;;;;;;;;;;22606:238;;;;;;;;;;-1:-1:-1;22606:238:0;;;;;:::i;:::-;;:::i;35011:395::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;;;;;;;;;35123:20:::1;:36:::0;;;35170:18:::1;:28:::0;;;35228:41:::1;35191:7:::0;35146:13;35228:41:::1;:::i;:::-;35209:16;:60:::0;;;35322:3:::1;-1:-1:-1::0;35302:23:0::1;35280:118;;;::::0;-1:-1:-1;;;35280:118:0;;6691:2:1;35280:118:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;6769:34;6749:18;;;6742:62;-1:-1:-1;;;6820:18:1;;;6813:43;6873:19;;35280:118:0::1;6489:409:1::0;35280:118:0::1;35011:395:::0;;:::o;33396:190::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33497:27:0;::::1;;::::0;;;:19:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;33497:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33547:31;;1901:41:1;;;33547:31:0::1;::::0;1874:18:1;33547:31:0::1;;;;;;;;33396:190:::0;;:::o;11009:100::-;11063:13;11096:5;11089:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11009:100;:::o;13242:194::-;13350:4;13367:39;10095:10;13390:7;13399:6;13367:8;:39::i;:::-;-1:-1:-1;13424:4:0;13242:194;;;;;:::o;37096:166::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;37204:13:::1;::::0;37172:46:::1;::::0;-1:-1:-1;;;;;37204:13:0;;::::1;::::0;37172:46;::::1;::::0;::::1;::::0;37204:13:::1;::::0;37172:46:::1;37229:13;:25:::0;;-1:-1:-1;;;;;;37229:25:0::1;-1:-1:-1::0;;;;;37229:25:0;;;::::1;::::0;;;::::1;::::0;;37096:166::o;36743:173::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;36854:15:::1;::::0;36820:50:::1;::::0;-1:-1:-1;;;;;36854:15:0::1;::::0;;::::1;::::0;::::1;::::0;36820:50;::::1;::::0;::::1;::::0;;;::::1;36881:15;:27:::0;;-1:-1:-1;;;;;36881:27:0;;::::1;;;-1:-1:-1::0;;;;;;36881:27:0;;::::1;::::0;;;::::1;::::0;;36743:173::o;13914:529::-;14054:4;14071:36;14081:6;14089:9;14100:6;14071:9;:36::i;:::-;-1:-1:-1;;;;;14147:19:0;;14120:24;14147:19;;;:11;:19;;;;;;;;10095:10;14147:33;;;;;;;;14213:26;;;;14191:116;;;;-1:-1:-1;;;14191:116:0;;7490:2:1;14191:116:0;;;7472:21:1;7529:2;7509:18;;;7502:30;7568:34;7548:18;;;7541:62;-1:-1:-1;;;7619:18:1;;;7612:38;7667:19;;14191:116:0;7288:404:1;14191:116:0;14343:57;14352:6;10095:10;14393:6;14374:16;:25;14343:8;:57::i;:::-;-1:-1:-1;14431:4:0;;13914:529;-1:-1:-1;;;;13914:529:0:o;34558:445::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;34670:16:::1;:32:::0;;;34713:14:::1;:24:::0;;;34763:33:::1;34730:7:::0;34689:13;34763:33:::1;:::i;:::-;34748:12;:48:::0;;;34845:3:::1;-1:-1:-1::0;34829:19:0::1;34807:110;;;::::0;-1:-1:-1;;;34807:110:0;;7899:2:1;34807:110:0::1;::::0;::::1;7881:21:1::0;7938:2;7918:18;;;7911:30;7977:34;7957:18;;;7950:62;-1:-1:-1;;;8028:18:1;;;8021:39;8077:19;;34807:110:0::1;7697:405:1::0;34807:110:0::1;34948:12;::::0;34962:16:::1;::::0;34980:14:::1;::::0;34933:62:::1;::::0;;8309:25:1;;;8365:2;8350:18;;8343:34;;;;8393:18;;;8386:34;34933:62:0::1;::::0;8297:2:1;8282:18;34933:62:0::1;;;;;;;;34558:445:::0;;:::o;14848:290::-;10095:10;14961:4;15050:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15050:34:0;;;;;;;;;;14961:4;;14978:130;;15028:7;;15050:47;;15087:10;;15050:47;:::i;:::-;14978:8;:130::i;22348:103::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;22413:30:::1;22440:1;22413:18;:30::i;:::-;22348:103::o:0;45578:79::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;45637:4:::1;:12:::0;;-1:-1:-1;;45637:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45578:79::o;11228:104::-;11284:13;11317:7;11310:14;;;;;:::i;35655:201::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35761:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;35761:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;35814:34;;1901:41:1;;;35814:34:0::1;::::0;1874:18:1;35814:34:0::1;1761:187:1::0;15637:475:0;10095:10;15755:4;15799:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15799:34:0;;;;;;;;;;15866:35;;;;15844:122;;;;-1:-1:-1;;;15844:122:0;;8633:2:1;15844:122:0;;;8615:21:1;8672:2;8652:18;;;8645:30;8711:34;8691:18;;;8684:62;-1:-1:-1;;;8762:18:1;;;8755:35;8807:19;;15844:122:0;8431:401:1;15844:122:0;16002:67;10095:10;16025:7;16053:15;16034:16;:34;16002:8;:67::i;:::-;-1:-1:-1;16100:4:0;;15637:475;-1:-1:-1;;;15637:475:0:o;12656:200::-;12767:4;12784:42;10095:10;12808:9;12819:6;12784:9;:42::i;31599:542::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;31756:1:::1;31748:4;:9;;31726:111;;;::::0;-1:-1:-1;;;31726:111:0;;9039:2:1;31726:111:0::1;::::0;::::1;9021:21:1::0;9078:2;9058:18;;;9051:30;9117:34;9097:18;;;9090:62;-1:-1:-1;;;9168:18:1;;;9161:50;9228:19;;31726:111:0::1;8837:416:1::0;31726:111:0::1;31864:4;31856;:12;;31848:67;;;::::0;-1:-1:-1;;;31848:67:0;;9460:2:1;31848:67:0::1;::::0;::::1;9442:21:1::0;9499:2;9479:18;;;9472:30;9538:34;9518:18;;;9511:62;-1:-1:-1;;;9589:18:1;;;9582:40;9639:19;;31848:67:0::1;9258:406:1::0;31848:67:0::1;31928:15;:25:::0;;-1:-1:-1;;;;31928:25:0::1;-1:-1:-1::0;;;31928:25:0;::::1;;;;::::0;;12217:12;;32008:5:::1;::::0;32000:4;;31984:20:::1;;;;:::i;:::-;31983:30;;;;:::i;:::-;31964:16;:49:::0;32068:5:::1;32060:4:::0;32044:13:::1;12217:12:::0;;;12129:108;32044:13:::1;:20;;;;:::i;:::-;32043:30;;;;:::i;:::-;32024:16;:49:::0;32089:44:::1;::::0;;3258:14:1;;3251:22;3233:41;;3305:2;3290:18;;3283:34;;;3333:18;;;3326:34;;;32089:44:0::1;::::0;3221:2:1;3206:18;32089:44:0::1;;;;;;;31599:542:::0;;;:::o;33873:396::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;33984:15:::1;:31:::0;;;34026:13:::1;:23:::0;;;34074:31:::1;34042:7:::0;34002:13;34074:31:::1;:::i;:::-;34060:11;:45:::0;;;34139:3:::1;-1:-1:-1::0;34124:18:0::1;34116:71;;;::::0;-1:-1:-1;;;34116:71:0;;10266:2:1;34116:71:0::1;::::0;::::1;10248:21:1::0;10305:2;10285:18;;;10278:30;10344:34;10324:18;;;10317:62;-1:-1:-1;;;10395:18:1;;;10388:38;10443:19;;34116:71:0::1;10064:404:1::0;34116:71:0::1;34217:11;::::0;34230:15:::1;::::0;34247:13:::1;::::0;34203:58:::1;::::0;;8309:25:1;;;8365:2;8350:18;;8343:34;;;;8393:18;;;8386:34;34203:58:0::1;::::0;8297:2:1;8282:18;34203:58:0::1;8107:319:1::0;32851:277:0;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;32970:1:::1;32949:17;:22;;32941:71;;;::::0;-1:-1:-1;;;32941:71:0;;10675:2:1;32941:71:0::1;::::0;::::1;10657:21:1::0;10714:2;10694:18;;;10687:30;10753:34;10733:18;;;10726:62;-1:-1:-1;;;10804:18:1;;;10797:34;10848:19;;32941:71:0::1;10473:400:1::0;32941:71:0::1;33073:4;33056:13;12217:12:::0;;;12129:108;33056:13:::1;33036:33;::::0;:17;:33:::1;:::i;:::-;33035:42;;;;:::i;:::-;33023:9;:54:::0;;;33093:27:::1;::::0;2099:25:1;;;33093:27:0::1;::::0;2087:2:1;2072:18;33093:27:0::1;;;;;;;;32851:277:::0;:::o;30909:226::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;30961:13:::1;:21:::0;;-1:-1:-1;;30961:21:0::1;::::0;;30977:5:::1;30993:20;:24:::0;;;31028:18:::1;:22:::0;;;31061:16:::1;:20:::0;;;31097:30:::1;::::0;31111:15:::1;::::0;31097:30:::1;::::0;::::1;30909:226::o:0;30592:162::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;30645:14:::1;:21:::0;;-1:-1:-1;;30645:21:0::1;30662:4;30645:21;::::0;;30677:15:::1;:22:::0;;-1:-1:-1;;;;30677:22:0::1;-1:-1:-1::0;;;30677:22:0::1;::::0;;30715:31:::1;::::0;30730:15:::1;::::0;30715:31:::1;::::0;30645:14:::1;::::0;30715:31:::1;30592:162::o:0;32384:249::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;32495:1:::1;32478:13;:18;;32470:63;;;::::0;-1:-1:-1;;;32470:63:0;;11080:2:1;32470:63:0::1;::::0;::::1;11062:21:1::0;;;11099:18;;;11092:30;11158:34;11138:18;;;11131:62;11210:18;;32470:63:0::1;10878:356:1::0;32470:63:0::1;32586:4;32569:13;12217:12:::0;;;12129:108;32569:13:::1;32553:29;::::0;:13;:29:::1;:::i;:::-;32552:38;;;;:::i;:::-;32544:5;:46:::0;;;32606:19:::1;::::0;2099:25:1;;;32606:19:0::1;::::0;2087:2:1;2072:18;32606:19:0::1;1953:177:1::0;36150:241:0;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;36254:7:::1;-1:-1:-1::0;;;;;36246:15:0::1;:4;-1:-1:-1::0;;;;;36246:15:0::1;::::0;36224:122:::1;;;::::0;-1:-1:-1;;;36224:122:0;;11441:2:1;36224:122:0::1;::::0;::::1;11423:21:1::0;11480:2;11460:18;;;11453:30;11519:34;11499:18;;;11492:62;11590:27;11570:18;;;11563:55;11635:19;;36224:122:0::1;11239:421:1::0;36224:122:0::1;36359:24;36371:4;36377:5;36359:11;:24::i;22606:238::-:0;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22709:22:0;::::1;22687:110;;;::::0;-1:-1:-1;;;22687:110:0;;11867:2:1;22687:110:0::1;::::0;::::1;11849:21:1::0;11906:2;11886:18;;;11879:30;11945:34;11925:18;;;11918:62;-1:-1:-1;;;11996:18:1;;;11989:36;12042:19;;22687:110:0::1;11665:402:1::0;22687:110:0::1;22808:28;22827:8;22808:18;:28::i;:::-;22606:238:::0;:::o;19420:380::-;-1:-1:-1;;;;;19556:19:0;;19548:68;;;;-1:-1:-1;;;19548:68:0;;12274:2:1;19548:68:0;;;12256:21:1;12313:2;12293:18;;;12286:30;12352:34;12332:18;;;12325:62;-1:-1:-1;;;12403:18:1;;;12396:34;12447:19;;19548:68:0;12072:400:1;19548:68:0;-1:-1:-1;;;;;19635:21:0;;19627:68;;;;-1:-1:-1;;;19627:68:0;;12679:2:1;19627:68:0;;;12661:21:1;12718:2;12698:18;;;12691:30;12757:34;12737:18;;;12730:62;-1:-1:-1;;;12808:18:1;;;12801:32;12850:19;;19627:68:0;12477:398:1;19627:68:0;-1:-1:-1;;;;;19708:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19760:32;;2099:25:1;;;19760:32:0;;2072:18:1;19760:32:0;;;;;;;19420:380;;;:::o;40927:4039::-;-1:-1:-1;;;;;41059:18:0;;41051:68;;;;-1:-1:-1;;;41051:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41138:16:0;;41130:64;;;;-1:-1:-1;;;41130:64:0;;;;;;;:::i;:::-;41211:6;41221:1;41211:11;41207:93;;41239:28;41255:4;41261:2;41265:1;41239:15;:28::i;:::-;40927:4039;;;:::o;41207:93::-;41316:13;;;;41312:1564;;;21770:6;;-1:-1:-1;;;;;41368:15:0;;;21770:6;;41368:15;;;;:49;;-1:-1:-1;21770:6:0;;-1:-1:-1;;;;;41404:13:0;;;21770:6;;41404:13;;41368:49;:86;;;;-1:-1:-1;;;;;;41438:16:0;;;;41368:86;:128;;;;-1:-1:-1;;;;;;41475:21:0;;41489:6;41475:21;;41368:128;:158;;;;-1:-1:-1;41518:8:0;;-1:-1:-1;;;41518:8:0;;;;41517:9;41368:158;41346:1519;;;41566:14;;;;41561:232;;-1:-1:-1;;;;;41639:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;41666:21:0;;;;;;:17;:21;;;;;;;;41639:48;41605:168;;;;-1:-1:-1;;;41605:168:0;;13892:2:1;41605:168:0;;;13874:21:1;13931:2;13911:18;;;13904:30;13970:34;13950:18;;;13943:62;-1:-1:-1;;;14021:18:1;;;14014:32;14063:19;;41605:168:0;13690:398:1;41605:168:0;-1:-1:-1;;;;;41867:31:0;;;;;;:25;:31;;;;;;;;:59;;;;-1:-1:-1;;;;;;41903:23:0;;;;;;:19;:23;;;;;;;;41902:24;41867:59;41841:1009;;;42013:5;;42003:6;:15;;41969:139;;;;-1:-1:-1;;;41969:139:0;;14295:2:1;41969:139:0;;;14277:21:1;14334:2;14314:18;;;14307:30;14373:34;14353:18;;;14346:62;-1:-1:-1;;;14424:18:1;;;14417:36;14470:19;;41969:139:0;14093:402:1;41969:139:0;42191:9;;-1:-1:-1;;;;;12417:18:0;;12390:7;12417:18;;;;;;;;;;;42165:22;;:6;:22;:::i;:::-;:35;;42131:140;;;;-1:-1:-1;;;42131:140:0;;14702:2:1;42131:140:0;;;14684:21:1;14741:2;14721:18;;;14714:30;-1:-1:-1;;;14760:18:1;;;14753:49;14819:18;;42131:140:0;14500:343:1;42131:140:0;41841:1009;;;-1:-1:-1;;;;;42369:29:0;;;;;;:25;:29;;;;;;;;:59;;;;-1:-1:-1;;;;;;42403:25:0;;;;;;:19;:25;;;;;;;;42402:26;42369:59;42343:507;;;42515:5;;42505:6;:15;;42471:140;;;;-1:-1:-1;;;42471:140:0;;15050:2:1;42471:140:0;;;15032:21:1;15089:2;15069:18;;;15062:30;15128:34;15108:18;;;15101:62;-1:-1:-1;;;15179:18:1;;;15172:37;15226:19;;42471:140:0;14848:403:1;42343:507:0;-1:-1:-1;;;;;42642:23:0;;;;;;:19;:23;;;;;;;;42637:213;;42750:9;;-1:-1:-1;;;;;12417:18:0;;12390:7;12417:18;;;;;;;;;;;42724:22;;:6;:22;:::i;:::-;:35;;42690:140;;;;-1:-1:-1;;;42690:140:0;;14702:2:1;42690:140:0;;;14684:21:1;14741:2;14721:18;;;14714:30;-1:-1:-1;;;14760:18:1;;;14753:49;14819:18;;42690:140:0;14500:343:1;42690:140:0;42937:4;42888:28;12417:18;;;;;;;;;;;42995:16;;42971:40;;;;;;;43042:39;;-1:-1:-1;43066:15:0;;-1:-1:-1;;;43066:15:0;;;;43042:39;:65;;;;-1:-1:-1;43099:8:0;;-1:-1:-1;;;43099:8:0;;;;43098:9;43042:65;:114;;;;-1:-1:-1;;;;;;43125:31:0;;;;;;:25;:31;;;;;;;;43124:32;43042:114;:155;;;;-1:-1:-1;;;;;;43174:23:0;;;;;;:17;:23;;;;;;;;43173:24;43042:155;:194;;;;-1:-1:-1;;;;;;43215:21:0;;;;;;:17;:21;;;;;;;;43214:22;43042:194;43024:332;;;43263:8;:15;;-1:-1:-1;;;;43263:15:0;-1:-1:-1;;;43263:15:0;;;43295:16;43304:6;43295:8;:16::i;:::-;43328:8;:16;;-1:-1:-1;;;;43328:16:0;;;43024:332;43384:8;;-1:-1:-1;;;;;43494:23:0;;43368:12;43494:23;;;:17;:23;;;;;;43384:8;-1:-1:-1;;;43384:8:0;;;;;43383:9;;43494:23;;:48;;-1:-1:-1;;;;;;43521:21:0;;;;;;:17;:21;;;;;;;;43494:48;43490:96;;;-1:-1:-1;43569:5:0;43490:96;43598:12;43703:7;43699:1214;;;-1:-1:-1;;;;;43755:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;43803:1;43788:12;;:16;43755:49;43751:1011;;;43832:33;43861:3;43832:24;43843:12;;43832:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;43825:40;;43930:12;;43912:14;;43905:4;:21;;;;:::i;:::-;43904:38;;;;:::i;:::-;43884:16;;:58;;;;;;;:::i;:::-;;;;-1:-1:-1;;44011:12:0;;43991:16;;43984:23;;:4;:23;:::i;:::-;43983:40;;;;:::i;:::-;43961:18;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;43751:1011:0;;-1:-1:-1;43751:1011:0;;-1:-1:-1;;;;;44085:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;44134:1;44120:11;;:15;44085:50;44081:681;;;44163:32;44191:3;44163:23;44174:11;;44163:6;:10;;:23;;;;:::i;:32::-;44156:39;;44259:11;;44242:13;;44235:4;:20;;;;:::i;:::-;44234:36;;;;:::i;:::-;44214:16;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;44338:11:0;;44319:15;;44312:22;;:4;:22;:::i;44081:681::-;44436:1;44417:16;;:20;:56;;;;-1:-1:-1;;;;;;44442:31:0;;;;;;:25;:31;;;;;;;;44441:32;44417:56;:90;;;;-1:-1:-1;;;;;;44478:29:0;;;;;;:25;:29;;;;;;;;44477:30;44417:90;44413:349;;;44535:37;44568:3;44535:28;44546:16;;44535:6;:10;;:28;;;;:::i;:37::-;44528:44;;44641:16;;44619:18;;44612:4;:25;;;;:::i;:::-;44611:46;;;;:::i;:::-;44591:16;;:66;;;;;;;:::i;:::-;;;;-1:-1:-1;;44730:16:0;;44706:20;;44699:27;;:4;:27;:::i;:::-;44698:48;;;;:::i;:::-;44676:18;;:70;;;;;;;:::i;:::-;;;;-1:-1:-1;;44413:349:0;44784:8;;44780:91;;44813:42;44829:4;44843;44850;44813:15;:42::i;:::-;44887:14;44897:4;44887:14;;:::i;:::-;;;43699:1214;44925:33;44941:4;44947:2;44951:6;44925:15;:33::i;:::-;41040:3926;;;;40927:4039;;;:::o;23004:191::-;23097:6;;;-1:-1:-1;;;;;23114:17:0;;;-1:-1:-1;;;;;;23114:17:0;;;;;;;23147:40;;23097:6;;;23114:17;23097:6;;23147:40;;23078:16;;23147:40;23067:128;23004:191;:::o;36399:154::-;-1:-1:-1;;;;;36465:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;36465:39:0;;;;;;;;;;36522:23;;36465:39;;:31;36522:23;;;36399:154;;:::o;16602:770::-;-1:-1:-1;;;;;16742:20:0;;16734:70;;;;-1:-1:-1;;;16734:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16823:23:0;;16815:71;;;;-1:-1:-1;;;16815:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16983:17:0;;16959:21;16983:17;;;;;;;;;;;17033:23;;;;17011:111;;;;-1:-1:-1;;;17011:111:0;;15591:2:1;17011:111:0;;;15573:21:1;15630:2;15610:18;;;15603:30;15669:34;15649:18;;;15642:62;-1:-1:-1;;;15720:18:1;;;15713:36;15766:19;;17011:111:0;15389:402:1;17011:111:0;-1:-1:-1;;;;;17158:17:0;;;:9;:17;;;;;;;;;;;17178:22;;;17158:42;;17222:20;;;;;;;;:30;;17194:6;;17158:9;17222:30;;17194:6;;17222:30;:::i;:::-;;;;;;;;17287:9;-1:-1:-1;;;;;17270:35:0;17279:6;-1:-1:-1;;;;;17270:35:0;;17298:6;17270:35;;;;2099:25:1;;2087:2;2072:18;;1953:177;17270:35:0;;;;;;;;16723:649;16602:770;;;:::o;45665:1095::-;45762:4;45718:23;12417:18;;;;;;;;;;;;;;45862:20;;;45858:59;;45899:7;;;45665:1095;:::o;45858:59::-;45951:16;;45933:15;:34;45929:101;;;46002:16;;45984:34;;45929:101;46046:4;;;;:36;;;;-1:-1:-1;46072:10:0;:6;46081:1;46072:10;:::i;:::-;46054:15;:28;46046:36;46042:97;;;46117:10;:6;46126:1;46117:10;:::i;:::-;46099:28;;46042:97;46180:15;46236:21;46270:36;46180:15;46270:16;:36::i;:::-;46319:18;46340:44;:21;46366:17;46340:25;:44::i;:::-;46319:65;;46397:17;46417:79;46468:17;46417:32;46432:16;;46417:10;:14;;:32;;;;:::i;:79::-;46530:1;46509:18;:22;;;46542:16;:20;;;46597:13;;46589:49;;46397:99;;-1:-1:-1;;;;;;46597:13:0;;46397:99;;46589:49;46530:1;46589:49;46397:99;46597:13;46589:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46673:15:0;;46665:87;;46575:63;;-1:-1:-1;46673:15:0;;;-1:-1:-1;;;;;46673:15:0;;46716:21;;46665:87;;;;46716:21;46673:15;46665:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45665:1095:0:o;3374:98::-;3432:7;3459:5;3463:1;3459;:5;:::i;:::-;3452:12;3374:98;-1:-1:-1;;;3374:98:0:o;3773:::-;3831:7;3858:5;3862:1;3858;:5;:::i;44974:571::-;45124:16;;;45138:1;45124:16;;;;;;;;45100:21;;45124:16;;;;;;;;;;-1:-1:-1;45124:16:0;45100:40;;45169:4;45151;45156:1;45151:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45151:23:0;;;-1:-1:-1;;;;;45151:23:0;;;;;45195:9;-1:-1:-1;;;;;45195:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45185:4;45190:1;45185:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;45185:26:0;;;-1:-1:-1;;;;;45185:26:0;;;;;45224:56;45241:4;45256:9;45268:11;45224:8;:56::i;:::-;45319:218;;-1:-1:-1;;;45319:218:0;;-1:-1:-1;;;;;45319:9:0;:60;;;;:218;;45394:11;;45420:1;;45464:4;;45491;;45511:15;;45319:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45029:516;44974:571;:::o;3017:98::-;3075:7;3102:5;3106:1;3102;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:131::-;-1:-1:-1;;;;;342:31:1;;332:42;;322:70;;388:1;385;378:12;403:160;468:20;;524:13;;517:21;507:32;;497:60;;553:1;550;543:12;497:60;403:160;;;:::o;568:315::-;633:6;641;694:2;682:9;673:7;669:23;665:32;662:52;;;710:1;707;700:12;662:52;749:9;736:23;768:31;793:5;768:31;:::i;:::-;818:5;-1:-1:-1;842:35:1;873:2;858:18;;842:35;:::i;:::-;832:45;;568:315;;;;;:::o;888:548::-;1000:4;1029:2;1058;1047:9;1040:21;1090:6;1084:13;1133:6;1128:2;1117:9;1113:18;1106:34;1158:1;1168:140;1182:6;1179:1;1176:13;1168:140;;;1277:14;;;1273:23;;1267:30;1243:17;;;1262:2;1239:26;1232:66;1197:10;;1168:140;;;1172:3;1357:1;1352:2;1343:6;1332:9;1328:22;1324:31;1317:42;1427:2;1420;1416:7;1411:2;1403:6;1399:15;1395:29;1384:9;1380:45;1376:54;1368:62;;;;888:548;;;;:::o;1441:315::-;1509:6;1517;1570:2;1558:9;1549:7;1545:23;1541:32;1538:52;;;1586:1;1583;1576:12;1538:52;1625:9;1612:23;1644:31;1669:5;1644:31;:::i;:::-;1694:5;1746:2;1731:18;;;;1718:32;;-1:-1:-1;;;1441:315:1:o;2135:247::-;2194:6;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2302:9;2289:23;2321:31;2346:5;2321:31;:::i;2387:456::-;2464:6;2472;2480;2533:2;2521:9;2512:7;2508:23;2504:32;2501:52;;;2549:1;2546;2539:12;2501:52;2588:9;2575:23;2607:31;2632:5;2607:31;:::i;:::-;2657:5;-1:-1:-1;2714:2:1;2699:18;;2686:32;2727:33;2686:32;2727:33;:::i;:::-;2387:456;;2779:7;;-1:-1:-1;;;2833:2:1;2818:18;;;;2805:32;;2387:456::o;3371:180::-;3427:6;3480:2;3468:9;3459:7;3455:23;3451:32;3448:52;;;3496:1;3493;3486:12;3448:52;3519:26;3535:9;3519:26;:::i;4118:316::-;4192:6;4200;4208;4261:2;4249:9;4240:7;4236:23;4232:32;4229:52;;;4277:1;4274;4267:12;4229:52;4300:26;4316:9;4300:26;:::i;:::-;4290:36;4373:2;4358:18;;4345:32;;-1:-1:-1;4424:2:1;4409:18;;;4396:32;;4118:316;-1:-1:-1;;;4118:316:1:o;4979:180::-;5038:6;5091:2;5079:9;5070:7;5066:23;5062:32;5059:52;;;5107:1;5104;5097:12;5059:52;-1:-1:-1;5130:23:1;;4979:180;-1:-1:-1;4979:180:1:o;5164:388::-;5232:6;5240;5293:2;5281:9;5272:7;5268:23;5264:32;5261:52;;;5309:1;5306;5299:12;5261:52;5348:9;5335:23;5367:31;5392:5;5367:31;:::i;:::-;5417:5;-1:-1:-1;5474:2:1;5459:18;;5446:32;5487:33;5446:32;5487:33;:::i;:::-;5539:7;5529:17;;;5164:388;;;;;:::o;5866:356::-;6068:2;6050:21;;;6087:18;;;6080:30;6146:34;6141:2;6126:18;;6119:62;6213:2;6198:18;;5866:356::o;6227:127::-;6288:10;6283:3;6279:20;6276:1;6269:31;6319:4;6316:1;6309:15;6343:4;6340:1;6333:15;6359:125;6424:9;;;6445:10;;;6442:36;;;6458:18;;:::i;6903:380::-;6982:1;6978:12;;;;7025;;;7046:61;;7100:4;7092:6;7088:17;7078:27;;7046:61;7153:2;7145:6;7142:14;7122:18;7119:38;7116:161;;7199:10;7194:3;7190:20;7187:1;7180:31;7234:4;7231:1;7224:15;7262:4;7259:1;7252:15;7116:161;;6903:380;;;:::o;9669:168::-;9742:9;;;9773;;9790:15;;;9784:22;;9770:37;9760:71;;9811:18;;:::i;9842:217::-;9882:1;9908;9898:132;;9952:10;9947:3;9943:20;9940:1;9933:31;9987:4;9984:1;9977:15;10015:4;10012:1;10005:15;9898:132;-1:-1:-1;10044:9:1;;9842:217::o;12880:401::-;13082:2;13064:21;;;13121:2;13101:18;;;13094:30;13160:34;13155:2;13140:18;;13133:62;-1:-1:-1;;;13226:2:1;13211:18;;13204:35;13271:3;13256:19;;12880:401::o;13286:399::-;13488:2;13470:21;;;13527:2;13507:18;;;13500:30;13566:34;13561:2;13546:18;;13539:62;-1:-1:-1;;;13632:2:1;13617:18;;13610:33;13675:3;13660:19;;13286:399::o;15256:128::-;15323:9;;;15344:11;;;15341:37;;;15358:18;;:::i;16138:127::-;16199:10;16194:3;16190:20;16187:1;16180:31;16230:4;16227:1;16220:15;16254:4;16251:1;16244:15;16270:251;16340:6;16393:2;16381:9;16372:7;16368:23;16364:32;16361:52;;;16409:1;16406;16399:12;16361:52;16441:9;16435:16;16460:31;16485:5;16460:31;:::i;16526:980::-;16788:4;16836:3;16825:9;16821:19;16867:6;16856:9;16849:25;16893:2;16931:6;16926:2;16915:9;16911:18;16904:34;16974:3;16969:2;16958:9;16954:18;16947:31;16998:6;17033;17027:13;17064:6;17056;17049:22;17102:3;17091:9;17087:19;17080:26;;17141:2;17133:6;17129:15;17115:29;;17162:1;17172:195;17186:6;17183:1;17180:13;17172:195;;;17251:13;;-1:-1:-1;;;;;17247:39:1;17235:52;;17342:15;;;;17307:12;;;;17283:1;17201:9;17172:195;;;-1:-1:-1;;;;;;;17423:32:1;;;;17418:2;17403:18;;17396:60;-1:-1:-1;;;17487:3:1;17472:19;17465:35;17384:3;16526:980;-1:-1:-1;;;16526:980:1:o

Swarm Source

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