ETH Price: $3,353.57 (-0.63%)
Gas: 10 Gwei

Token

Bazooka Tools (BAZOOKA)
 

Overview

Max Total Supply

10,000,000 BAZOOKA

Holders

320

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000686319 BAZOOKA

Value
$0.00
0x52ed29f22fb65523ff570fc4ce9bd0dce42fcc0a
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:
BAZOOKA

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-20
*/

/**
Twitter : https://www.twitter.com/BazookaTools

Website : https://bazooka.club

Telegram: https://t.me/BazookaTools

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

//SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

contract BAZOOKA is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 10_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(2);
    Tax public sellTaxes = Tax(2);
    Tax public transferTaxes = Tax(40);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 10_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;
    bool public launchTax;
    bool public limitsRemoved = false;


    //Wallets
    address public marketingWallet = 0xb0A5a045123B57F9176156a80FaFD9605840f44E ;

    uint256 public maxWalletPercentage = 3;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event TransferFailed(address recipient, uint256 amount);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWChanged(uint256 percentage);

    constructor() ERC20("Bazooka Tools", "BAZOOKA") {

        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
        launchTax = false;
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }


    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        launchTax=true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }
    function removeLimits() internal { 
    maxWalletPercentage = 100;
    transferDelayEnabled = false;
    transferTaxes.marketingTax = 0;
    limitsRemoved = true;    // Set limitsRemoved to true
    }
    function NormalizeTaxes() external onlyOwner{
        launchTax=false;
    }


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
    address _from,
    address _to,
    uint256 _amount
) internal returns (uint256) {
    if (whitelisted[_from] || whitelisted[_to]) {
        return _amount;
    }

    uint256 totalTax = transferTaxes.marketingTax;
    // Check if within the first 100 blocks
    if (launchTax) {
        if (block.number > startTradingBlock + 100) {
            buyTaxes.marketingTax = 2;
            sellTaxes.marketingTax = 2;
            launchTax = false;

        } else if (block.number <= startTradingBlock + 4) {
            buyTaxes.marketingTax = 40;
            sellTaxes.marketingTax = 40;
        } else if (block.number <= startTradingBlock + 25) {
            buyTaxes.marketingTax = 15;
            sellTaxes.marketingTax = 30;
        } else if (block.number <= startTradingBlock + 50) {
            buyTaxes.marketingTax = 5;
            sellTaxes.marketingTax = 20;
        } else if (block.number <= startTradingBlock + 75) {
            buyTaxes.marketingTax = 5;
            sellTaxes.marketingTax = 20;
        } else if (block.number <= startTradingBlock + 100) {
            buyTaxes.marketingTax = 2;
            sellTaxes.marketingTax = 8;
        }
        
    }
    if (_to == pairAddress) {
        totalTax = sellTaxes.marketingTax;
    } else if (_from == pairAddress) {
        totalTax = buyTaxes.marketingTax;
    }

    uint256 tax = 0;
    if (totalTax > 0) {
        tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
    }
    return (_amount - tax);
}

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    // Check if 15 blocks have passed since the start of trading and if limits have not been removed
    if(block.number >= startTradingBlock + 15 && !limitsRemoved && tradingEnabled) {
    removeLimits();
    }

     if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }   

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }
    super._transfer(_from, _to, toTransfer);
}

function internalSwap() internal {
    isSwapping = true;
    uint256 taxAmount = balanceOf(address(this)); 
    if (taxAmount == 0) {
        return;
    }
    swapToETH(balanceOf(address(this)));
    (bool success, ) = marketingWallet.call{value: address(this).balance}("");
    if (!success) {
        // Log the failure rather than reverting the transaction
        emit TransferFailed(marketingWallet, address(this).balance);
    } else {
        // Only set isSwapping to false if the transfer succeeded
        isSwapping = false;
    }
}


    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWChanged(_percentage);
}
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[],"name":"NormalizeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"enableTrading","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":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsRemoved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600260c0819052600681905560e081905260075561012060405260286101008190526008556200003d6127106a084595161401484a0000006200040e565b600b55600c805462ffffff19166001179055600e805476b0a5a045123b57f9176156a80fafd9605840f44e00000161ff01600160b81b03199091161790556003600f553480156200008d57600080fd5b506040518060400160405280600d81526020016c42617a6f6f6b6120546f6f6c7360981b8152506040518060400160405280600781526020016642415a4f4f4b4160c81b8152508160039081620000e59190620004d5565b506004620000f48282620004d5565b505050620001116200010b620002ed60201b60201c565b620002f1565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000167573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018d9190620005a1565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002039190620005a1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000251573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002779190620005a1565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002dc906a084595161401484a00000062000343565b600e805461ff0019169055620005fb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200039e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003b29190620005d3565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200042c57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200045c57607f821691505b6020821081036200047d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040957600081815260208120601f850160051c81016020861015620004ac5750805b601f850160051c820191505b81811015620004cd57828155600101620004b8565b505050505050565b81516001600160401b03811115620004f157620004f162000431565b620005098162000502845462000447565b8462000483565b602080601f831160018114620005415760008415620005285750858301515b600019600386901b1c1916600185901b178555620004cd565b600085815260208120601f198616915b82811015620005725788860151825594840194600190910190840162000551565b5085821015620005915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005b457600080fd5b81516001600160a01b0381168114620005cc57600080fd5b9392505050565b80820180821115620005f557634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611ef6620006606000396000818161061101528181611083015281816110c001528181611323015281816114990152818161169901526116db01526000818161049501528181611a5601528181611b0f0152611b4b0152611ef66000f3fe6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106ac578063e2f45605146106cc578063ef586f71146106e2578063f2fde38b146106f7578063f66895a31461071757600080fd5b8063a8b08982146105ff578063a9059cbb14610633578063afa4f3b214610653578063b886311514610673578063c876d0b91461069257600080fd5b80638d456754116100f25780638d456754146105775780638da5cb5b1461058c57806395d89b41146105aa578063a3ca847d146105bf578063a457c2d7146105df57600080fd5b806376be96f3146104f65780637a845ece1461050c578063830351ff1461052c578063864701a51461054b5780638a8c523c1461056257600080fd5b8063313ce567116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f71461048357806375f0a874146104cf57600080fd5b8063313ce5671461039557806339509351146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc5780631d6f965514610335578063224611731461035557806323b872dd1461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061025561072e565b6040516102629190611bb7565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611c05565b6107c0565b005b34801561029957600080fd5b506102ad6102a8366004611c33565b610825565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611c5f565b61083f565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611c9d565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b50600e546102ad9062010000900460ff1681565b34801561036157600080fd5b5061028b610370366004611c9d565b61089b565b34801561038157600080fd5b506102ad610390366004611cba565b61095b565b3480156103a157600080fd5b5060405160128152602001610262565b3480156103bd57600080fd5b506102ad6103cc366004611c33565b610981565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee600f5481565b34801561044457600080fd5b506102ee610453366004611c9d565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b6109a3565b34801561048f57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b50600e546104b790630100000090046001600160a01b031681565b34801561050257600080fd5b506102ee600d5481565b34801561051857600080fd5b5061028b610527366004611c05565b6109b7565b34801561053857600080fd5b50600e546102ad90610100900460ff1681565b34801561055757600080fd5b506006546102ee9081565b34801561056e57600080fd5b5061028b610abb565b34801561058357600080fd5b5061028b610b42565b34801561059857600080fd5b506005546001600160a01b03166104b7565b3480156105b657600080fd5b50610255610b57565b3480156105cb57600080fd5b5061028b6105da366004611c05565b610b66565b3480156105eb57600080fd5b506102ad6105fa366004611c33565b610bc2565b34801561060b57600080fd5b506104b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561063f57600080fd5b506102ad61064e366004611c33565b610c48565b34801561065f57600080fd5b5061028b61066e366004611c05565b610c56565b34801561067f57600080fd5b50600c546102ad90610100900460ff1681565b34801561069e57600080fd5b50600e546102ad9060ff1681565b3480156106b857600080fd5b506102ee6106c7366004611cfb565b610d4c565b3480156106d857600080fd5b506102ee600b5481565b3480156106ee57600080fd5b5061028b610d77565b34801561070357600080fd5b5061028b610712366004611c9d565b610da6565b34801561072357600080fd5b506007546102ee9081565b60606003805461073d90611d29565b80601f016020809104026020016040519081016040528092919081815260200182805461076990611d29565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b5050505050905090565b6107c8610e1f565b6007819055601e8111156107f75760405162461bcd60e51b81526004016107ee90611d63565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610833818585610e79565b60019150505b92915050565b610847610e1f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108a3610e1f565b6001600160a01b0381166109055760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107ee565b600e80546301000000600160b81b03191663010000006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610969858285610f9d565b610974858585611017565b60019150505b9392505050565b6000336108338185856109948383610d4c565b61099e9190611dbd565b610e79565b6109ab610e1f565b6109b5600061150d565b565b6109bf610e1f565b60018111610a1a5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107ee565b6064811115610a805760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107ee565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610ac3610e1f565b600c5462010000900460ff1615610b1c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107ee565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610b4a610e1f565b600e805461ff0019169055565b60606004805461073d90611d29565b610b6e610e1f565b6006819055601e811115610b945760405162461bcd60e51b81526004016107ee90611d63565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610bd08286610d4c565b905083811015610c305760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ee565b610c3d8286868403610e79565b506001949350505050565b600033610833818585611017565b610c5e610e1f565b600081118015610c9057506103e8610c826a084595161401484a0000006005611dd0565b610c8c9190611de7565b8111155b610d195760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107ee565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d7f610e1f565b600c5460ff16610d90576001610d93565b60005b600c805460ff1916911515919091179055565b610dae610e1f565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ee565b610e1c8161150d565b50565b6005546001600160a01b031633146109b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ee565b6001600160a01b038316610edb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ee565b6001600160a01b038216610f3c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ee565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fa98484610d4c565b9050600019811461101157818110156110045760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ee565b6110118484848403610e79565b50505050565b600d5461102590600f611dbd565b431015801561103d5750600e5462010000900460ff16155b80156110515750600c5462010000900460ff165b15611076576110766064600f55600e8054600060085562ff00ff191662010000179055565b600e5460ff1615611177577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156110f557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561117757326000908152600a602052604090205443116111645760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107ee565b326000908152600a602052604090204390555b6001600160a01b0383166111cd5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107ee565b6001600160a01b0382166112235760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107ee565b600081116112855760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107ee565b60006064600f546a084595161401484a0000006112a29190611dd0565b6112ac9190611de7565b6001600160a01b03851660009081526009602052604090205490915060ff161580156112f157506001600160a01b03831660009081526009602052604090205460ff16155b801561130557506001600160a01b03831615155b801561131a57506001600160a01b0383163014155b801561135857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b156113d657808261137e856001600160a01b031660009081526020819052604090205490565b6113889190611dbd565b11156113d65760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107ee565b60006113e385858561155f565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561143b57506001600160a01b03851660009081526009602052604090205460ff16155b156114fa57600c5462010000900460ff1661148d5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107ee565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161480156114d05750600c5460ff165b80156114d95750805b80156114ed5750600c54610100900460ff16155b156114fa576114fa611756565b61150586868461185b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061159e57506001600160a01b03831660009081526009602052604090205460ff165b156115aa57508061097a565b600854600e54610100900460ff161561169757600d546115cb906064611dbd565b4311156115ec5760026006819055600755600e805461ff0019169055611697565b600d546115fa906004611dbd565b431161160f5760286006819055600755611697565b600d5461161d906019611dbd565b431161163257600f600655601e600755611697565b600d54611640906032611dbd565b43116116555760056006556014600755611697565b600d5461166390604b611dbd565b43116116785760056006556014600755611697565b600d54611686906064611dbd565b431161169757600260065560086007555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036116d95750600754611717565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03160361171757506006545b6000811561174257606461172b8386611dd0565b6117359190611de7565b905061174286308361185b565b61174c8185611e09565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036117825750565b3060009081526020819052604090205461179b906119ff565b600e54604051600091630100000090046001600160a01b03169047908381818185875af1925050503d80600081146117ef576040519150601f19603f3d011682016040523d82523d6000602084013e6117f4565b606091505b505090508061184c57600e546040805163010000009092046001600160a01b031682524760208301527f1c43b9761b3fba5321ca8212bfc231945f668ccc0c446f333999eea9ce8fda81910160405180910390a15050565b600c805461ff00191690555050565b6001600160a01b0383166118bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ee565b6001600160a01b0382166119215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ee565b6001600160a01b038316600090815260208190526040902054818110156119995760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ee565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611011565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3457611a34611e1c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ab2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad69190611e32565b81600181518110611ae957611ae9611e1c565b60200260200101906001600160a01b031690816001600160a01b031681525050611b34307f000000000000000000000000000000000000000000000000000000000000000084610e79565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b89908590600090869030904290600401611e4f565b600060405180830381600087803b158015611ba357600080fd5b505af1158015611505573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611be457858101830151858201604001528201611bc8565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c1757600080fd5b5035919050565b6001600160a01b0381168114610e1c57600080fd5b60008060408385031215611c4657600080fd5b8235611c5181611c1e565b946020939093013593505050565b60008060408385031215611c7257600080fd5b8235611c7d81611c1e565b915060208301358015158114611c9257600080fd5b809150509250929050565b600060208284031215611caf57600080fd5b813561097a81611c1e565b600080600060608486031215611ccf57600080fd5b8335611cda81611c1e565b92506020840135611cea81611c1e565b929592945050506040919091013590565b60008060408385031215611d0e57600080fd5b8235611d1981611c1e565b91506020830135611c9281611c1e565b600181811c90821680611d3d57607f821691505b602082108103611d5d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083957610839611da7565b808202811582820484141761083957610839611da7565b600082611e0457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561083957610839611da7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e4457600080fd5b815161097a81611c1e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e9f5784516001600160a01b031683529383019391830191600101611e7a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f6d3c99ea15117ac8b2239cc09db132af3e51540688d7369a7c0c791157710da64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102345760003560e01c806376be96f31161012e578063a8b08982116100ab578063dd62ed3e1161006f578063dd62ed3e146106ac578063e2f45605146106cc578063ef586f71146106e2578063f2fde38b146106f7578063f66895a31461071757600080fd5b8063a8b08982146105ff578063a9059cbb14610633578063afa4f3b214610653578063b886311514610673578063c876d0b91461069257600080fd5b80638d456754116100f25780638d456754146105775780638da5cb5b1461058c57806395d89b41146105aa578063a3ca847d146105bf578063a457c2d7146105df57600080fd5b806376be96f3146104f65780637a845ece1461050c578063830351ff1461052c578063864701a51461054b5780638a8c523c1461056257600080fd5b8063313ce567116101bc578063599ca39711610180578063599ca3971461042257806370a0823114610438578063715018a61461046e578063735de9f71461048357806375f0a874146104cf57600080fd5b8063313ce5671461039557806339509351146103b15780634a74bb02146103d15780634ada218b146103eb5780635331803c1461040b57600080fd5b806318160ddd1161020357806318160ddd146102dd5780631950c218146102fc5780631d6f965514610335578063224611731461035557806323b872dd1461037557600080fd5b806306fdde03146102405780630940bbc71461026b578063095ea7b31461028d5780630c424284146102bd57600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061025561072e565b6040516102629190611bb7565b60405180910390f35b34801561027757600080fd5b5061028b610286366004611c05565b6107c0565b005b34801561029957600080fd5b506102ad6102a8366004611c33565b610825565b6040519015158152602001610262565b3480156102c957600080fd5b5061028b6102d8366004611c5f565b61083f565b3480156102e957600080fd5b506002545b604051908152602001610262565b34801561030857600080fd5b506102ad610317366004611c9d565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561034157600080fd5b50600e546102ad9062010000900460ff1681565b34801561036157600080fd5b5061028b610370366004611c9d565b61089b565b34801561038157600080fd5b506102ad610390366004611cba565b61095b565b3480156103a157600080fd5b5060405160128152602001610262565b3480156103bd57600080fd5b506102ad6103cc366004611c33565b610981565b3480156103dd57600080fd5b50600c546102ad9060ff1681565b3480156103f757600080fd5b50600c546102ad9062010000900460ff1681565b34801561041757600080fd5b506008546102ee9081565b34801561042e57600080fd5b506102ee600f5481565b34801561044457600080fd5b506102ee610453366004611c9d565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b5061028b6109a3565b34801561048f57600080fd5b506104b77f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610262565b3480156104db57600080fd5b50600e546104b790630100000090046001600160a01b031681565b34801561050257600080fd5b506102ee600d5481565b34801561051857600080fd5b5061028b610527366004611c05565b6109b7565b34801561053857600080fd5b50600e546102ad90610100900460ff1681565b34801561055757600080fd5b506006546102ee9081565b34801561056e57600080fd5b5061028b610abb565b34801561058357600080fd5b5061028b610b42565b34801561059857600080fd5b506005546001600160a01b03166104b7565b3480156105b657600080fd5b50610255610b57565b3480156105cb57600080fd5b5061028b6105da366004611c05565b610b66565b3480156105eb57600080fd5b506102ad6105fa366004611c33565b610bc2565b34801561060b57600080fd5b506104b77f00000000000000000000000060f15884071a62fb6f30e399d9477e8eac3e672881565b34801561063f57600080fd5b506102ad61064e366004611c33565b610c48565b34801561065f57600080fd5b5061028b61066e366004611c05565b610c56565b34801561067f57600080fd5b50600c546102ad90610100900460ff1681565b34801561069e57600080fd5b50600e546102ad9060ff1681565b3480156106b857600080fd5b506102ee6106c7366004611cfb565b610d4c565b3480156106d857600080fd5b506102ee600b5481565b3480156106ee57600080fd5b5061028b610d77565b34801561070357600080fd5b5061028b610712366004611c9d565b610da6565b34801561072357600080fd5b506007546102ee9081565b60606003805461073d90611d29565b80601f016020809104026020016040519081016040528092919081815260200182805461076990611d29565b80156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b5050505050905090565b6107c8610e1f565b6007819055601e8111156107f75760405162461bcd60e51b81526004016107ee90611d63565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610833818585610e79565b60019150505b92915050565b610847610e1f565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108a3610e1f565b6001600160a01b0381166109055760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b60648201526084016107ee565b600e80546301000000600160b81b03191663010000006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610969858285610f9d565b610974858585611017565b60019150505b9392505050565b6000336108338185856109948383610d4c565b61099e9190611dbd565b610e79565b6109ab610e1f565b6109b5600061150d565b565b6109bf610e1f565b60018111610a1a5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b60648201526084016107ee565b6064811115610a805760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b60648201526084016107ee565b600f8190556040518181527f35d0d65816d2618c40bb72544c0686674a06ef8d669a0819ecba314be8292df09060200160405180910390a150565b610ac3610e1f565b600c5462010000900460ff1615610b1c5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064016107ee565b600c805462ff0000191662010000179055600e805461ff00191661010017905543600d55565b610b4a610e1f565b600e805461ff0019169055565b60606004805461073d90611d29565b610b6e610e1f565b6006819055601e811115610b945760405162461bcd60e51b81526004016107ee90611d63565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610bd08286610d4c565b905083811015610c305760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107ee565b610c3d8286868403610e79565b506001949350505050565b600033610833818585611017565b610c5e610e1f565b600081118015610c9057506103e8610c826a084595161401484a0000006005611dd0565b610c8c9190611de7565b8111155b610d195760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a4016107ee565b600b81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d7f610e1f565b600c5460ff16610d90576001610d93565b60005b600c805460ff1916911515919091179055565b610dae610e1f565b6001600160a01b038116610e135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ee565b610e1c8161150d565b50565b6005546001600160a01b031633146109b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ee565b6001600160a01b038316610edb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ee565b6001600160a01b038216610f3c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ee565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610fa98484610d4c565b9050600019811461101157818110156110045760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107ee565b6110118484848403610e79565b50505050565b600d5461102590600f611dbd565b431015801561103d5750600e5462010000900460ff16155b80156110515750600c5462010000900460ff165b15611076576110766064600f55600e8054600060085562ff00ff191662010000179055565b600e5460ff1615611177577f00000000000000000000000060f15884071a62fb6f30e399d9477e8eac3e67286001600160a01b0316826001600160a01b0316141580156110f557507f00000000000000000000000060f15884071a62fb6f30e399d9477e8eac3e67286001600160a01b0316826001600160a01b031614155b1561117757326000908152600a602052604090205443116111645760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b60648201526084016107ee565b326000908152600a602052604090204390555b6001600160a01b0383166111cd5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f00000000000060448201526064016107ee565b6001600160a01b0382166112235760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f000000000000000060448201526064016107ee565b600081116112855760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107ee565b60006064600f546a084595161401484a0000006112a29190611dd0565b6112ac9190611de7565b6001600160a01b03851660009081526009602052604090205490915060ff161580156112f157506001600160a01b03831660009081526009602052604090205460ff16155b801561130557506001600160a01b03831615155b801561131a57506001600160a01b0383163014155b801561135857507f00000000000000000000000060f15884071a62fb6f30e399d9477e8eac3e67286001600160a01b0316836001600160a01b031614155b156113d657808261137e856001600160a01b031660009081526020819052604090205490565b6113889190611dbd565b11156113d65760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016107ee565b60006113e385858561155f565b600b5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff1615801561143b57506001600160a01b03851660009081526009602052604090205460ff16155b156114fa57600c5462010000900460ff1661148d5760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b60448201526064016107ee565b846001600160a01b03167f00000000000000000000000060f15884071a62fb6f30e399d9477e8eac3e67286001600160a01b03161480156114d05750600c5460ff165b80156114d95750805b80156114ed5750600c54610100900460ff16155b156114fa576114fa611756565b61150586868461185b565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061159e57506001600160a01b03831660009081526009602052604090205460ff165b156115aa57508061097a565b600854600e54610100900460ff161561169757600d546115cb906064611dbd565b4311156115ec5760026006819055600755600e805461ff0019169055611697565b600d546115fa906004611dbd565b431161160f5760286006819055600755611697565b600d5461161d906019611dbd565b431161163257600f600655601e600755611697565b600d54611640906032611dbd565b43116116555760056006556014600755611697565b600d5461166390604b611dbd565b43116116785760056006556014600755611697565b600d54611686906064611dbd565b431161169757600260065560086007555b7f00000000000000000000000060f15884071a62fb6f30e399d9477e8eac3e67286001600160a01b0316846001600160a01b0316036116d95750600754611717565b7f00000000000000000000000060f15884071a62fb6f30e399d9477e8eac3e67286001600160a01b0316856001600160a01b03160361171757506006545b6000811561174257606461172b8386611dd0565b6117359190611de7565b905061174286308361185b565b61174c8185611e09565b9695505050505050565b600c805461ff001916610100179055306000908152602081905260408120549050806000036117825750565b3060009081526020819052604090205461179b906119ff565b600e54604051600091630100000090046001600160a01b03169047908381818185875af1925050503d80600081146117ef576040519150601f19603f3d011682016040523d82523d6000602084013e6117f4565b606091505b505090508061184c57600e546040805163010000009092046001600160a01b031682524760208301527f1c43b9761b3fba5321ca8212bfc231945f668ccc0c446f333999eea9ce8fda81910160405180910390a15050565b600c805461ff00191690555050565b6001600160a01b0383166118bf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107ee565b6001600160a01b0382166119215760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107ee565b6001600160a01b038316600090815260208190526040902054818110156119995760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ee565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611011565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3457611a34611e1c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ab2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad69190611e32565b81600181518110611ae957611ae9611e1c565b60200260200101906001600160a01b031690816001600160a01b031681525050611b34307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e79565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b89908590600090869030904290600401611e4f565b600060405180830381600087803b158015611ba357600080fd5b505af1158015611505573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611be457858101830151858201604001528201611bc8565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611c1757600080fd5b5035919050565b6001600160a01b0381168114610e1c57600080fd5b60008060408385031215611c4657600080fd5b8235611c5181611c1e565b946020939093013593505050565b60008060408385031215611c7257600080fd5b8235611c7d81611c1e565b915060208301358015158114611c9257600080fd5b809150509250929050565b600060208284031215611caf57600080fd5b813561097a81611c1e565b600080600060608486031215611ccf57600080fd5b8335611cda81611c1e565b92506020840135611cea81611c1e565b929592945050506040919091013590565b60008060408385031215611d0e57600080fd5b8235611d1981611c1e565b91506020830135611c9281611c1e565b600181811c90821680611d3d57607f821691505b602082108103611d5d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083957610839611da7565b808202811582820484141761083957610839611da7565b600082611e0457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561083957610839611da7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e4457600080fd5b815161097a81611c1e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e9f5784516001600160a01b031683529383019391830191600101611e7a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f6d3c99ea15117ac8b2239cc09db132af3e51540688d7369a7c0c791157710da64736f6c63430008130033

Deployed Bytecode Sourcemap

21334:9128:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9446:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24245:246;;;;;;;;;;-1:-1:-1;24245:246:0;;;;;:::i;:::-;;:::i;:::-;;11806:201;;;;;;;;;;-1:-1:-1;11806:201:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;11806:201:0;1208:187:1;25013:195:0;;;;;;;;;;-1:-1:-1;25013:195:0;;;;;:::i;:::-;;:::i;10575:108::-;;;;;;;;;;-1:-1:-1;10663:12:0;;10575:108;;;1967:25:1;;;1955:2;1940:18;10575:108:0;1821:177:1;29997:116:0;;;;;;;;;;-1:-1:-1;29997:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;30085:20:0;30061:4;30085:20;;;:11;:20;;;;;;;;;29997:116;22273:33;;;;;;;;;;-1:-1:-1;22273:33:0;;;;;;;;;;;23462:297;;;;;;;;;;-1:-1:-1;23462:297:0;;;;;:::i;:::-;;:::i;12587:261::-;;;;;;;;;;-1:-1:-1;12587:261:0;;;;;:::i;:::-;;:::i;10417:93::-;;;;;;;;;;-1:-1:-1;10417:93:0;;10500:2;2858:36:1;;2846:2;2831:18;10417:93:0;2716:184:1;13257:238:0;;;;;;;;;;-1:-1:-1;13257:238:0;;;;;:::i;:::-;;:::i;22035:40::-;;;;;;;;;;-1:-1:-1;22035:40:0;;;;;;;;22119:34;;;;;;;;;;-1:-1:-1;22119:34:0;;;;;;;;;;;21690;;;;;;;;;;-1:-1:-1;21690:34:0;;;;;;22417:38;;;;;;;;;;;;;;;;10746:127;;;;;;;;;;-1:-1:-1;10746:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10847:18:0;10820:7;10847:18;;;;;;;;;;;;10746:127;2901:103;;;;;;;;;;;;;:::i;21514:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3086:32:1;;;3068:51;;3056:2;3041:18;21514:40:0;2905:220:1;22332:75:0;;;;;;;;;;-1:-1:-1;22332:75:0;;;;;;;-1:-1:-1;;;;;22332:75:0;;;22160:32;;;;;;;;;;;;;;;;30121:303;;;;;;;;;;-1:-1:-1;30121:303:0;;;;;:::i;:::-;;:::i;22245:21::-;;;;;;;;;;-1:-1:-1;22245:21:0;;;;;;;;;;;21619:28;;;;;;;;;;-1:-1:-1;21619:28:0;;;;;;23769:217;;;;;;;;;;;;;:::i;25425:78::-;;;;;;;;;;;;;:::i;2260:87::-;;;;;;;;;;-1:-1:-1;2333:6:0;;-1:-1:-1;;;;;2333:6:0;2260:87;;9665:104;;;;;;;;;;;;;:::i;23994:243::-;;;;;;;;;;-1:-1:-1;23994:243:0;;;;;:::i;:::-;;:::i;13998:436::-;;;;;;;;;;-1:-1:-1;13998:436:0;;;;;:::i;:::-;;:::i;21561:36::-;;;;;;;;;;;;;;;11079:193;;;;;;;;;;-1:-1:-1;11079:193:0;;;;;:::i;:::-;;:::i;24499:372::-;;;;;;;;;;-1:-1:-1;24499:372:0;;;;;:::i;:::-;;:::i;22082:30::-;;;;;;;;;;-1:-1:-1;22082:30:0;;;;;;;;;;;22199:39;;;;;;;;;;-1:-1:-1;22199:39:0;;;;;;;;11335:151;;;;;;;;;;-1:-1:-1;11335:151:0;;;;;:::i;:::-;;:::i;21930:57::-;;;;;;;;;;;;;;;;24879:126;;;;;;;;;;;;;:::i;3159:201::-;;;;;;;;;;-1:-1:-1;3159:201:0;;;;;:::i;:::-;;:::i;21654:29::-;;;;;;;;;;-1:-1:-1;21654:29:0;;;;;;9446:100;9500:13;9533:5;9526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9446:100;:::o;24245:246::-;2146:13;:11;:13::i;:::-;24320:9:::1;:38:::0;;;24394:2:::1;24377:19:::0;::::1;;24369:68;;;;-1:-1:-1::0;;;24369:68:0::1;;;;;;;:::i;:::-;;;;;;;;;24453:30;::::0;24469:13;;24453:30:::1;::::0;;;::::1;24245:246:::0;:::o;11806:201::-;11889:4;891:10;11945:32;891:10;11961:7;11970:6;11945:8;:32::i;:::-;11995:4;11988:11;;;11806:201;;;;;:::o;25013:195::-;2146:13;:11;:13::i;:::-;-1:-1:-1;;;;;25127:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;25127:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25173:27;;25127:30;;:20;25173:27:::1;::::0;::::1;25013:195:::0;;:::o;23462:297::-;2146:13;:11;:13::i;:::-;-1:-1:-1;;;;;23565:27:0;::::1;23543:113;;;::::0;-1:-1:-1;;;23543:113:0;;4723:2:1;23543:113:0::1;::::0;::::1;4705:21:1::0;4762:2;4742:18;;;4735:30;4801:34;4781:18;;;4774:62;-1:-1:-1;;;4852:18:1;;;4845:34;4896:19;;23543:113:0::1;4521:400:1::0;23543:113:0::1;23667:15;:31:::0;;-1:-1:-1;;;;;;23667:31:0::1;::::0;-1:-1:-1;;;;;23667:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;23714:37:::1;::::0;::::1;::::0;-1:-1:-1;;23714:37:0::1;23462:297:::0;:::o;12587:261::-;12684:4;891:10;12742:38;12758:4;891:10;12773:6;12742:15;:38::i;:::-;12791:27;12801:4;12807:2;12811:6;12791:9;:27::i;:::-;12836:4;12829:11;;;12587:261;;;;;;:::o;13257:238::-;13345:4;891:10;13401:64;891:10;13417:7;13454:10;13426:25;891:10;13417:7;13426:9;:25::i;:::-;:38;;;;:::i;:::-;13401:8;:64::i;2901:103::-;2146:13;:11;:13::i;:::-;2966:30:::1;2993:1;2966:18;:30::i;:::-;2901:103::o:0;30121:303::-;2146:13;:11;:13::i;:::-;30222:1:::1;30208:11;:15;30200:62;;;::::0;-1:-1:-1;;;30200:62:0;;5390:2:1;30200:62:0::1;::::0;::::1;5372:21:1::0;5429:2;5409:18;;;5402:30;5468:34;5448:18;;;5441:62;-1:-1:-1;;;5519:18:1;;;5512:32;5561:19;;30200:62:0::1;5188:398:1::0;30200:62:0::1;30292:3;30277:11;:18;;30269:75;;;::::0;-1:-1:-1;;;30269:75:0;;5793:2:1;30269:75:0::1;::::0;::::1;5775:21:1::0;5832:2;5812:18;;;5805:30;5871:34;5851:18;;;5844:62;-1:-1:-1;;;5922:18:1;;;5915:42;5974:19;;30269:75:0::1;5591:408:1::0;30269:75:0::1;30351:19;:33:::0;;;30396:24:::1;::::0;1967:25:1;;;30396:24:0::1;::::0;1955:2:1;1940:18;30396:24:0::1;;;;;;;30121:303:::0;:::o;23769:217::-;2146:13;:11;:13::i;:::-;23833:14:::1;::::0;;;::::1;;;23832:15;23824:54;;;::::0;-1:-1:-1;;;23824:54:0;;6206:2:1;23824:54:0::1;::::0;::::1;6188:21:1::0;6245:2;6225:18;;;6218:30;6284:28;6264:18;;;6257:56;6330:18;;23824:54:0::1;6004:350:1::0;23824:54:0::1;23889:14;:21:::0;;-1:-1:-1;;23889:21:0::1;::::0;::::1;::::0;;23921:9:::1;:14:::0;;-1:-1:-1;;23921:14:0::1;23889:21;23921:14;::::0;;23966:12:::1;23946:17;:32:::0;23769:217::o;25425:78::-;2146:13;:11;:13::i;:::-;25480:9:::1;:15:::0;;-1:-1:-1;;25480:15:0::1;::::0;;25425:78::o;9665:104::-;9721:13;9754:7;9747:14;;;;;:::i;23994:243::-;2146:13;:11;:13::i;:::-;24068:8:::1;:37:::0;;;24141:2:::1;24124:19:::0;::::1;;24116:68;;;;-1:-1:-1::0;;;24116:68:0::1;;;;;;;:::i;:::-;24200:29;::::0;24215:13;;24200:29:::1;::::0;;;::::1;23994:243:::0;:::o;13998:436::-;14091:4;891:10;14091:4;14174:25;891:10;14191:7;14174:9;:25::i;:::-;14147:52;;14238:15;14218:16;:35;;14210:85;;;;-1:-1:-1;;;14210:85:0;;6561:2:1;14210:85:0;;;6543:21:1;6600:2;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;-1:-1:-1;;;6690:18:1;;;6683:35;6735:19;;14210:85:0;6359:401:1;14210:85:0;14331:60;14340:5;14347:7;14375:15;14356:16;:34;14331:8;:60::i;:::-;-1:-1:-1;14422:4:0;;13998:436;-1:-1:-1;;;;13998:436:0:o;11079:193::-;11158:4;891:10;11214:28;891:10;11231:2;11235:6;11214:9;:28::i;24499:372::-;2146:13;:11;:13::i;:::-;24615:1:::1;24602:10;:14;:57;;;;-1:-1:-1::0;24655:4:0::1;24635:16;21474:17;24650:1;24635:16;:::i;:::-;24634:25;;;;:::i;:::-;24620:10;:39;;24602:57;24580:185;;;::::0;-1:-1:-1;;;24580:185:0;;7362:2:1;24580:185:0::1;::::0;::::1;7344:21:1::0;7401:2;7381:18;;;7374:30;7440:34;7420:18;;;7413:62;7511:34;7491:18;;;7484:62;-1:-1:-1;;;7562:19:1;;;7555:45;7617:19;;24580:185:0::1;7160:482:1::0;24580:185:0::1;24776:18;:31:::0;;;24823:40:::1;::::0;24797:10;;24823:40:::1;::::0;;;::::1;24499:372:::0;:::o;11335:151::-;-1:-1:-1;;;;;11451:18:0;;;11424:7;11451:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11335:151::o;24879:126::-;2146:13;:11;:13::i;:::-;24960:21:::1;::::0;::::1;;24959:38;;24993:4;24959:38;;;24985:5;24959:38;24935:21;:62:::0;;-1:-1:-1;;24935:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24879:126::o;3159:201::-;2146:13;:11;:13::i;:::-;-1:-1:-1;;;;;3248:22:0;::::1;3240:73;;;::::0;-1:-1:-1;;;3240:73:0;;7849:2:1;3240:73:0::1;::::0;::::1;7831:21:1::0;7888:2;7868:18;;;7861:30;7927:34;7907:18;;;7900:62;-1:-1:-1;;;7978:18:1;;;7971:36;8024:19;;3240:73:0::1;7647:402:1::0;3240:73:0::1;3324:28;3343:8;3324:18;:28::i;:::-;3159:201:::0;:::o;2425:132::-;2333:6;;-1:-1:-1;;;;;2333:6:0;891:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;8256:2:1;2481:68:0;;;8238:21:1;;;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;8386:18;;2481:68:0;8054:356:1;17991:346:0;-1:-1:-1;;;;;18093:19:0;;18085:68;;;;-1:-1:-1;;;18085:68:0;;8617:2:1;18085:68:0;;;8599:21:1;8656:2;8636:18;;;8629:30;8695:34;8675:18;;;8668:62;-1:-1:-1;;;8746:18:1;;;8739:34;8790:19;;18085:68:0;8415:400:1;18085:68:0;-1:-1:-1;;;;;18172:21:0;;18164:68;;;;-1:-1:-1;;;18164:68:0;;9022:2:1;18164:68:0;;;9004:21:1;9061:2;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;-1:-1:-1;;;9151:18:1;;;9144:32;9193:19;;18164:68:0;8820:398:1;18164:68:0;-1:-1:-1;;;;;18245:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18297:32;;1967:25:1;;;18297:32:0;;1940:18:1;18297:32:0;;;;;;;17991:346;;;:::o;18628:419::-;18729:24;18756:25;18766:5;18773:7;18756:9;:25::i;:::-;18729:52;;-1:-1:-1;;18796:16:0;:37;18792:248;;18878:6;18858:16;:26;;18850:68;;;;-1:-1:-1;;;18850:68:0;;9425:2:1;18850:68:0;;;9407:21:1;9464:2;9444:18;;;9437:30;9503:31;9483:18;;;9476:59;9552:18;;18850:68:0;9223:353:1;18850:68:0;18962:51;18971:5;18978:7;19006:6;18987:16;:25;18962:8;:51::i;:::-;18718:329;18628:419;;;:::o;27234:1736::-;27470:17;;:22;;27490:2;27470:22;:::i;:::-;27454:12;:38;;:56;;;;-1:-1:-1;27497:13:0;;;;;;;27496:14;27454:56;:74;;;;-1:-1:-1;27514:14:0;;;;;;;27454:74;27451:108;;;27537:14;25277:3;25255:19;:25;25287:20;:28;;25310:5;25322:13;:30;-1:-1:-1;;25359:20:0;;;;;25214:205;27537:14;27572:20;;;;27568:307;;;27624:11;-1:-1:-1;;;;;27609:27:0;:3;-1:-1:-1;;;;;27609:27:0;;;:58;;;;;27655:11;-1:-1:-1;;;;;27640:27:0;:3;-1:-1:-1;;;;;27640:27:0;;;27609:58;27605:263;;;27721:9;27692:39;;;;:28;:39;;;;;;27734:12;-1:-1:-1;27684:103:0;;;;-1:-1:-1;;;27684:103:0;;9783:2:1;27684:103:0;;;9765:21:1;9822:2;9802:18;;;9795:30;9861:34;9841:18;;;9834:62;-1:-1:-1;;;9912:18:1;;;9905:34;9956:19;;27684:103:0;9581:400:1;27684:103:0;27831:9;27802:39;;;;:28;:39;;;;;27844:12;27802:54;;27605:263;-1:-1:-1;;;;;27894:19:0;;27886:58;;;;-1:-1:-1;;;27886:58:0;;10188:2:1;27886:58:0;;;10170:21:1;10227:2;10207:18;;;10200:30;10266:28;10246:18;;;10239:56;10312:18;;27886:58:0;9986:350:1;27886:58:0;-1:-1:-1;;;;;27959:17:0;;27951:54;;;;-1:-1:-1;;;27951:54:0;;10543:2:1;27951:54:0;;;10525:21:1;10582:2;10562:18;;;10555:30;10621:26;10601:18;;;10594:54;10665:18;;27951:54:0;10341:348:1;27951:54:0;28030:1;28020:7;:11;28012:65;;;;-1:-1:-1;;;28012:65:0;;10896:2:1;28012:65:0;;;10878:21:1;10935:2;10915:18;;;10908:30;10974:34;10954:18;;;10947:62;-1:-1:-1;;;11025:18:1;;;11018:39;11074:19;;28012:65:0;10694:405:1;28012:65:0;28190:23;28253:3;28231:19;;21474:17;28216:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;28338:18:0;;;;;;:11;:18;;;;;;28190:66;;-1:-1:-1;28338:18:0;;28337:19;:40;;;;-1:-1:-1;;;;;;28361:16:0;;;;;;:11;:16;;;;;;;;28360:17;28337:40;:61;;;;-1:-1:-1;;;;;;28381:17:0;;;;28337:61;:85;;;;-1:-1:-1;;;;;;28402:20:0;;28417:4;28402:20;;28337:85;:107;;;;;28433:11;-1:-1:-1;;;;;28426:18:0;:3;-1:-1:-1;;;;;28426:18:0;;;28337:107;28333:217;;;28493:15;28482:7;28465:14;28475:3;-1:-1:-1;;;;;10847:18:0;10820:7;10847:18;;;;;;;;;;;;10746:127;28465:14;:24;;;;:::i;:::-;:43;;28457:85;;;;-1:-1:-1;;;28457:85:0;;11306:2:1;28457:85:0;;;11288:21:1;11345:2;11325:18;;;11318:30;11384:31;11364:18;;;11357:59;11433:18;;28457:85:0;11104:353:1;28457:85:0;28558:18;28579:29;28588:5;28595:3;28600:7;28579:8;:29::i;:::-;28660:18;;28650:4;28617:12;10847:18;;;;;;;;;;;;-1:-1:-1;;;;;28690:18:0;;;;:11;:18;;;;;;;28558:50;;-1:-1:-1;;28632:46:0;;28690:18;;28689:19;:40;;;;-1:-1:-1;;;;;;28713:16:0;;;;;;:11;:16;;;;;;;;28712:17;28689:40;28685:236;;;28750:14;;;;;;;28742:45;;;;-1:-1:-1;;;28742:45:0;;11664:2:1;28742:45:0;;;11646:21:1;11703:2;11683:18;;;11676:30;-1:-1:-1;;;11722:18:1;;;11715:48;11780:18;;28742:45:0;11462:342:1;28742:45:0;28817:3;-1:-1:-1;;;;;28802:18:0;:11;-1:-1:-1;;;;;28802:18:0;;:43;;;;-1:-1:-1;28824:21:0;;;;28802:43;:54;;;;;28849:7;28802:54;:69;;;;-1:-1:-1;28861:10:0;;;;;;;28860:11;28802:69;28798:116;;;28888:14;:12;:14::i;:::-;28927:39;28943:5;28950:3;28955:10;28927:15;:39::i;:::-;27342:1628;;;27234:1736;;;:::o;3520:191::-;3613:6;;;-1:-1:-1;;;;;3630:17:0;;;-1:-1:-1;;;;;;3630:17:0;;;;;;;3663:40;;3613:6;;;3630:17;3613:6;;3663:40;;3594:16;;3663:40;3583:128;3520:191;:::o;25649:1581::-;-1:-1:-1;;;;;25768:18:0;;25748:7;25768:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;25790:16:0;;;;;;:11;:16;;;;;;;;25768:38;25764:77;;;-1:-1:-1;25826:7:0;25819:14;;25764:77;25868:13;:26;25950:9;;;;;;;25946:935;;;25991:17;;:23;;26011:3;25991:23;:::i;:::-;25976:12;:38;25972:892;;;26055:1;26031:8;:25;;;26071:9;:26;26112:9;:17;;-1:-1:-1;;26112:17:0;;;25972:892;;;26169:17;;:21;;26189:1;26169:21;:::i;:::-;26153:12;:37;26149:715;;26231:2;26207:8;:26;;;26248:9;:27;26149:715;;;26313:17;;:22;;26333:2;26313:22;:::i;:::-;26297:12;:38;26293:571;;26376:2;26352:8;:26;26418:2;26393:9;:27;26293:571;;;26458:17;;:22;;26478:2;26458:22;:::i;:::-;26442:12;:38;26438:426;;26521:1;26497:8;:25;26562:2;26537:9;:27;26438:426;;;26602:17;;:22;;26622:2;26602:22;:::i;:::-;26586:12;:38;26582:282;;26665:1;26641:8;:25;26706:2;26681:9;:27;26582:282;;;26746:17;;:23;;26766:3;26746:23;:::i;:::-;26730:12;:39;26726:138;;26810:1;26786:8;:25;26851:1;26826:9;:26;26726:138;26898:11;-1:-1:-1;;;;;26891:18:0;:3;-1:-1:-1;;;;;26891:18:0;;26887:159;;-1:-1:-1;26933:9:0;:22;26887:159;;;26982:11;-1:-1:-1;;;;;26973:20:0;:5;-1:-1:-1;;;;;26973:20:0;;26969:77;;-1:-1:-1;27017:8:0;:21;26969:77;27054:11;27080:12;;27076:122;;27134:3;27112:18;27122:8;27112:7;:18;:::i;:::-;27111:26;;;;:::i;:::-;27105:32;;27148:42;27164:5;27179:4;27186:3;27148:15;:42::i;:::-;27212:13;27222:3;27212:7;:13;:::i;:::-;27204:22;25649:1581;-1:-1:-1;;;;;;25649:1581:0:o;28974:560::-;29014:10;:17;;-1:-1:-1;;29014:17:0;;;;;29076:4;-1:-1:-1;10847:18:0;;;;;;;;;;;29038:44;;29094:9;29107:1;29094:14;29090:45;;29121:7;28974:560::o;29090:45::-;29169:4;10820:7;10847:18;;;;;;;;;;;29141:35;;:9;:35::i;:::-;29202:15;;:54;;29184:12;;29202:15;;;-1:-1:-1;;;;;29202:15:0;;29230:21;;29184:12;29202:54;29184:12;29202:54;29230:21;29202:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29183:73;;;29268:7;29263:268;;29374:15;;29359:54;;;29374:15;;;;-1:-1:-1;;;;;29374:15:0;12326:51:1;;29391:21:0;12408:2:1;12393:18;;12386:34;29359:54:0;;12299:18:1;29359:54:0;;;;;;;29007:527;;28974:560::o;29263:268::-;29505:10;:18;;-1:-1:-1;;29505:18:0;;;29007:527;;28974:560::o;14904:806::-;-1:-1:-1;;;;;15001:18:0;;14993:68;;;;-1:-1:-1;;;14993:68:0;;12633:2:1;14993:68:0;;;12615:21:1;12672:2;12652:18;;;12645:30;12711:34;12691:18;;;12684:62;-1:-1:-1;;;12762:18:1;;;12755:35;12807:19;;14993:68:0;12431:401:1;14993:68:0;-1:-1:-1;;;;;15080:16:0;;15072:64;;;;-1:-1:-1;;;15072:64:0;;13039:2:1;15072:64:0;;;13021:21:1;13078:2;13058:18;;;13051:30;13117:34;13097:18;;;13090:62;-1:-1:-1;;;13168:18:1;;;13161:33;13211:19;;15072:64:0;12837:399:1;15072:64:0;-1:-1:-1;;;;;15222:15:0;;15200:19;15222:15;;;;;;;;;;;15256:21;;;;15248:72;;;;-1:-1:-1;;;15248:72:0;;13443:2:1;15248:72:0;;;13425:21:1;13482:2;13462:18;;;13455:30;13521:34;13501:18;;;13494:62;-1:-1:-1;;;13572:18:1;;;13565:36;13618:19;;15248:72:0;13241:402:1;15248:72:0;-1:-1:-1;;;;;15356:15:0;;;:9;:15;;;;;;;;;;;15374:20;;;15356:38;;15574:13;;;;;;;;;;:23;;;;;;15626:26;;1967:25:1;;;15574:13:0;;15626:26;;1940:18:1;15626:26:0;;;;;;;15665:37;19647:91;29544:447;29624:16;;;29638:1;29624:16;;;;;;;;29600:21;;29624:16;;;;;;;;;;-1:-1:-1;29624:16:0;29600:40;;29669:4;29651;29656:1;29651:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;29651:23:0;;;-1:-1:-1;;;;;29651:23:0;;;;;29695:13;-1:-1:-1;;;;;29695:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29685:4;29690:1;29685:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;29685:30:0;;;-1:-1:-1;;;;;29685:30:0;;;;;29726:56;29743:4;29758:13;29774:7;29726:8;:56::i;:::-;29793:190;;-1:-1:-1;;;29793:190:0;;-1:-1:-1;;;;;29793:13:0;:64;;;;:190;;29872:7;;29894:1;;29910:4;;29937;;29957:15;;29793:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:416::-;1465:6;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:52;;;1542:1;1539;1532:12;1494:52;1581:9;1568:23;1600:31;1625:5;1600:31;:::i;:::-;1650:5;-1:-1:-1;1707:2:1;1692:18;;1679:32;1749:15;;1742:23;1730:36;;1720:64;;1780:1;1777;1770:12;1720:64;1803:7;1793:17;;;1400:416;;;;;:::o;2003:247::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2170:9;2157:23;2189:31;2214:5;2189:31;:::i;2255:456::-;2332:6;2340;2348;2401:2;2389:9;2380:7;2376:23;2372:32;2369:52;;;2417:1;2414;2407:12;2369:52;2456:9;2443:23;2475:31;2500:5;2475:31;:::i;:::-;2525:5;-1:-1:-1;2582:2:1;2567:18;;2554:32;2595:33;2554:32;2595:33;:::i;:::-;2255:456;;2647:7;;-1:-1:-1;;;2701:2:1;2686:18;;;;2673:32;;2255:456::o;3338:388::-;3406:6;3414;3467:2;3455:9;3446:7;3442:23;3438:32;3435:52;;;3483:1;3480;3473:12;3435:52;3522:9;3509:23;3541:31;3566:5;3541:31;:::i;:::-;3591:5;-1:-1:-1;3648:2:1;3633:18;;3620:32;3661:33;3620:32;3661:33;:::i;3731:380::-;3810:1;3806:12;;;;3853;;;3874:61;;3928:4;3920:6;3916:17;3906:27;;3874:61;3981:2;3973:6;3970:14;3950:18;3947:38;3944:161;;4027:10;4022:3;4018:20;4015:1;4008:31;4062:4;4059:1;4052:15;4090:4;4087:1;4080:15;3944:161;;3731:380;;;:::o;4116:400::-;4318:2;4300:21;;;4357:2;4337:18;;;4330:30;4396:34;4391:2;4376:18;;4369:62;-1:-1:-1;;;4462:2:1;4447:18;;4440:34;4506:3;4491:19;;4116:400::o;4926:127::-;4987:10;4982:3;4978:20;4975:1;4968:31;5018:4;5015:1;5008:15;5042:4;5039:1;5032:15;5058:125;5123:9;;;5144:10;;;5141:36;;;5157:18;;:::i;6765:168::-;6838:9;;;6869;;6886:15;;;6880:22;;6866:37;6856:71;;6907:18;;:::i;6938:217::-;6978:1;7004;6994:132;;7048:10;7043:3;7039:20;7036:1;7029:31;7083:4;7080:1;7073:15;7111:4;7108:1;7101:15;6994:132;-1:-1:-1;7140:9:1;;6938:217::o;11809:128::-;11876:9;;;11897:11;;;11894:37;;;11911:18;;:::i;13780:127::-;13841:10;13836:3;13832:20;13829:1;13822:31;13872:4;13869:1;13862:15;13896:4;13893:1;13886:15;13912:251;13982:6;14035:2;14023:9;14014:7;14010:23;14006:32;14003:52;;;14051:1;14048;14041:12;14003:52;14083:9;14077:16;14102:31;14127:5;14102:31;:::i;14168:980::-;14430:4;14478:3;14467:9;14463:19;14509:6;14498:9;14491:25;14535:2;14573:6;14568:2;14557:9;14553:18;14546:34;14616:3;14611:2;14600:9;14596:18;14589:31;14640:6;14675;14669:13;14706:6;14698;14691:22;14744:3;14733:9;14729:19;14722:26;;14783:2;14775:6;14771:15;14757:29;;14804:1;14814:195;14828:6;14825:1;14822:13;14814:195;;;14893:13;;-1:-1:-1;;;;;14889:39:1;14877:52;;14984:15;;;;14949:12;;;;14925:1;14843:9;14814:195;;;-1:-1:-1;;;;;;;15065:32:1;;;;15060:2;15045:18;;15038:60;-1:-1:-1;;;15129:3:1;15114:19;15107:35;15026:3;14168:980;-1:-1:-1;;;14168:980:1:o

Swarm Source

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