ETH Price: $3,033.43 (+0.32%)
Gas: 3 Gwei

Token

ethtard (ethtard)
 

Overview

Max Total Supply

1,000,000,000 ethtard

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,105,166.497583367000895109 ethtard

Value
$0.00
0x56ed3cf183c901d0ef4fb11653305369d1c6e94b
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:
ethtard

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Wooo (1).sol
// SPDX-License-Identifier: MIT

// https://ethtard.com
// https://t.me/EtherTard
// https://x.com/Eth_Tard 

pragma solidity =0.8.15;

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

interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

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

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

contract ethtard is ERC20, Ownable {

    IRouter public router;
    address public pair;
 

    address public devWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    mapping(address => bool) public _isBot;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedFromMaxWallet;
    mapping(address => bool) public automatedMarketMakerPairs;

    bool private swapping;
    bool public swapEnabled = true;
    bool public tradingEnabled;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);


    struct Taxes {
        uint256 dev;
    }


    Taxes public buyTaxes = Taxes(5);
    Taxes public sellTaxes = Taxes(5);
    uint256 public totalBuyTax = 5;
    uint256 public totalSellTax = 5;

    constructor(address _dev)Ownable(msg.sender)
        ERC20("ethtard", "ethtard")
    {
    
        setSwapTokensAtAmount(200000);
        updateMaxWalletAmount(20000000);
        setMaxBuyAndSell(20000000, 20000000);
        setDevWallet(_dev);
        IRouter _router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromMaxWallet(_pair, true);
   
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(_router), true);
        _setAutomatedMarketMakerPair(_pair, true);
    

        _mint(owner(), 1000000000 * (10**18));
    }

    receive() external payable {}



    function excludeFromFees(address account, bool excluded)
        public
        onlyOwner
    {
        require(
            _isExcludedFromFees[account] != excluded,
            " Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

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



    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

    function setBuyTaxes( uint256 _dev) external onlyOwner{
        require(_dev <= 20, "Fee must be <= 20%");
        buyTaxes = Taxes( _dev);
        totalBuyTax = _dev;
    }

    function setSellTaxes(uint256 _dev) external onlyOwner{
        require( _dev <= 20, "Fee must be <= 20%");
        sellTaxes = Taxes( _dev);
        totalSellTax = _dev;
    }


    function setDevWallet(address newWallet) public onlyOwner {
        devWallet = newWallet;
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        require(newNum >= 1000000, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * (10**18);
    }

    function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell)
        public
        onlyOwner
    {
        require(maxBuy >= 1000000, "Cannot set maxbuy lower than 1% ");
        require(maxSell >= 500000, "Cannot set maxsell lower than 0.5% ");
        maxBuyAmount = maxBuy * 10**18;
        maxSellAmount = maxSell * 10**18;
    }


    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        swapTokensAtAmount = amount * 10**18;
    }


    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }

   
    function rescueETH20Tokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }


    function forceSend() external onlyOwner {
        (bool success, ) = payable(devWallet).call{
            value: address(this).balance
        }("");
        require(success, "Failed to send Ether to dev wallet");
    }


    function updateRouter(address newRouter) external onlyOwner {
        router = IRouter(newRouter);
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading enabled");
        tradingEnabled = true;
    }


    function setBot(address bot, bool value) external onlyOwner {
        require(_isBot[bot] != value);
        _isBot[bot] = value;
    }

    function setBulkBot(address[] memory bots, bool value) external onlyOwner {
        for (uint256 i; i < bots.length; i++) {
            _isBot[bots[i]] = value;
        }
    }


    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

    function _setAutomatedMarketMakerPair(address newPair, bool value) private {
        require(
            automatedMarketMakerPairs[newPair] != value,
            "Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[newPair] = value;


        emit SetAutomatedMarketMakerPair(newPair, value);
    }



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


    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");
        require(!_isBot[from] && !_isBot[to], "Bye  Bot");

        if (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
            
            if (automatedMarketMakerPairs[to]) {
                require(
                    amount <= maxSellAmount,
                    "You are exceeding maxSellAmount"
                );
            } else if (automatedMarketMakerPairs[from])
                require(
                    amount <= maxBuyAmount,
                    "You are exceeding maxBuyAmount"
                );
            if (!_isExcludedFromMaxWallet[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }
        }

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

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            if (totalSellTax > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 100;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 100;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);

    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 toSwap = tokens; 

        swapTokensForETH(toSwap);

        uint256 contractrewardbalance = address(this).balance;

        uint256 devAmt = contractrewardbalance ;
        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success, "Failed to send Ether to dev wallet");
        }

    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

     
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.15;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

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

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

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */



function _transfer(address from, address to, uint256 value) internal virtual {
    // function implementation

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

File 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.15;

import {Context} from "../utils/Context.sol";

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

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

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

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 4 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.15;

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

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

File 5 of 7 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.15;

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

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

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

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

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

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

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

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

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

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

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

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

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

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

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

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.15;

import {IERC20} from "../IERC20.sol";

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

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

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

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.15;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"buyTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBulkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","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":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001601160016101000a81548160ff021916908315150217905550604051806020016040528060058152506012600082015181600001555050604051806020016040528060058152506013600082015181600001555050600560145560056015553480156200007257600080fd5b50604051620057a7380380620057a7833981810160405281019062000098919062000e48565b336040518060400160405280600781526020017f65746874617264000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f65746874617264000000000000000000000000000000000000000000000000008152508160039081620001169190620010f4565b508060049081620001289190620010f4565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001a05760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001979190620011ec565b60405180910390fd5b620001b181620004bd60201b60201c565b50620001c662030d406200058360201b60201c565b620001db6301312d00620005b260201b60201c565b620001f16301312d00806200062a60201b60201c565b62000202816200070860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000269573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028f919062000e48565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031d919062000e48565b6040518363ffffffff1660e01b81526004016200033c92919062001209565b6020604051808303816000875af11580156200035c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000382919062000e48565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004286200041a6200075c60201b60201c565b60016200078660201b60201c565b6200043b3060016200078660201b60201c565b6200044e816001620008d660201b60201c565b62000461306001620008d660201b60201c565b62000474826001620008d660201b60201c565b620004878160016200094160201b60201c565b620004b46200049b6200075c60201b60201c565b6b033b2e3c9fd0803ce800000062000a7760201b60201c565b505050620016ab565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200059362000b0460201b60201c565b670de0b6b3a764000081620005a9919062001265565b60098190555050565b620005c262000b0460201b60201c565b620f42408110156200060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000602906200134d565b60405180910390fd5b670de0b6b3a76400008162000621919062001265565b600c8190555050565b6200063a62000b0460201b60201c565b620f424082101562000683576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067a90620013bf565b60405180910390fd5b6207a120811015620006cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c39062001457565b60405180910390fd5b670de0b6b3a764000082620006e2919062001265565b600a81905550670de0b6b3a764000081620006fe919062001265565b600b819055505050565b6200071862000b0460201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200079662000b0460201b60201c565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200082b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082290620014ef565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008ca91906200152e565b60405180910390a25050565b620008e662000b0460201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620009d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cd90620015c1565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000aec5760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000ae39190620011ec565b60405180910390fd5b62000b006000838362000ba660201b60201c565b5050565b62000b1462000dd660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000b3a6200075c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ba45762000b6662000dd660201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040162000b9b9190620011ec565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000bfc57806002600082825462000bef9190620015e3565b9250508190555062000cd2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000c8b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000c829392919062001651565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d1d578060026000828254039250508190555062000d6a565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000dc991906200168e565b60405180910390a3505050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e108262000de3565b9050919050565b62000e228162000e03565b811462000e2e57600080fd5b50565b60008151905062000e428162000e17565b92915050565b60006020828403121562000e615762000e6062000dde565b5b600062000e718482850162000e31565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000efc57607f821691505b60208210810362000f125762000f1162000eb4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f7c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f3d565b62000f88868362000f3d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000fd562000fcf62000fc98462000fa0565b62000faa565b62000fa0565b9050919050565b6000819050919050565b62000ff18362000fb4565b62001009620010008262000fdc565b84845462000f4a565b825550505050565b600090565b6200102062001011565b6200102d81848462000fe6565b505050565b5b8181101562001055576200104960008262001016565b60018101905062001033565b5050565b601f821115620010a4576200106e8162000f18565b620010798462000f2d565b8101602085101562001089578190505b620010a1620010988562000f2d565b83018262001032565b50505b505050565b600082821c905092915050565b6000620010c960001984600802620010a9565b1980831691505092915050565b6000620010e48383620010b6565b9150826002028217905092915050565b620010ff8262000e7a565b67ffffffffffffffff8111156200111b576200111a62000e85565b5b62001127825462000ee3565b6200113482828562001059565b600060209050601f8311600181146200116c576000841562001157578287015190505b620011638582620010d6565b865550620011d3565b601f1984166200117c8662000f18565b60005b82811015620011a6578489015182556001820191506020850194506020810190506200117f565b86831015620011c65784890151620011c2601f891682620010b6565b8355505b6001600288020188555050505b505050505050565b620011e68162000e03565b82525050565b6000602082019050620012036000830184620011db565b92915050565b6000604082019050620012206000830185620011db565b6200122f6020830184620011db565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620012728262000fa0565b91506200127f8362000fa0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620012bb57620012ba62001236565b5b828202905092915050565b600082825260208201905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600062001335602283620012c6565b91506200134282620012d7565b604082019050919050565b60006020820190508181036000830152620013688162001326565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000620013a7602083620012c6565b9150620013b4826200136f565b602082019050919050565b60006020820190508181036000830152620013da8162001398565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b60006200143f602383620012c6565b91506200144c82620013e1565b604082019050919050565b60006020820190508181036000830152620014728162001430565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000620014d7602b83620012c6565b9150620014e48262001479565b604082019050919050565b600060208201905081810360008301526200150a81620014c8565b9050919050565b60008115159050919050565b620015288162001511565b82525050565b60006020820190506200154560008301846200151d565b92915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000620015a9603883620012c6565b9150620015b6826200154b565b604082019050919050565b60006020820190508181036000830152620015dc816200159a565b9050919050565b6000620015f08262000fa0565b9150620015fd8362000fa0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001635576200163462001236565b5b828201905092915050565b6200164b8162000fa0565b82525050565b6000606082019050620016686000830186620011db565b62001677602083018562001640565b62001686604083018462001640565b949350505050565b6000602082019050620016a5600083018462001640565b92915050565b6140ec80620016bb6000396000f3fe6080604052600436106102765760003560e01c80638da5cb5b1161014f578063c0246668116100c1578063e01af92c1161007a578063e01af92c14610947578063e2f4560514610970578063f2fde38b1461099b578063f66895a3146109c4578063f887ea40146109ef578063f8b45b0514610a1a5761027d565b8063c02466681461083d578063c18bc19514610866578063c492f0461461088f578063c851cc32146108b8578063d2fcc001146108e1578063dd62ed3e1461090a5761027d565b8063a8aa1b3111610113578063a8aa1b3114610709578063a9059cbb14610734578063abb8105214610771578063afa4f3b2146107ae578063b62496f5146107d7578063b83b297f146108145761027d565b80638da5cb5b146106365780638ea5220f1461066157806395d89b411461068c5780639a7a23d6146106b7578063a3ca847d146106e05761027d565b8063342aa8b5116101e85780636ddd1713116101ac5780636ddd17131461053857806370a0823114610563578063715018a6146105a057806379b447bd146105b7578063864701a5146105e057806388e765ff1461060b5761027d565b8063342aa8b51461045157806346469afb1461047a5780634ada218b146104a55780634fbee193146104d057806366d602ae1461050d5761027d565b806312b77e8a1161023a57806312b77e8a1461035357806318160ddd1461036a5780631bff7898146103955780631f53ac02146103c057806323b872dd146103e9578063313ce567146104265761027d565b806306fdde03146102825780630940bbc7146102ad578063095ea7b3146102d65780630a78097d146103135780630bd05b691461033c5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a45565b6040516102a49190612d28565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612d94565b610ad7565b005b3480156102e257600080fd5b506102fd60048036038101906102f89190612e1f565b610b4b565b60405161030a9190612e7a565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190612e95565b610b6e565b005b34801561034857600080fd5b50610351610c78565b005b34801561035f57600080fd5b50610368610ced565b005b34801561037657600080fd5b5061037f610dc6565b60405161038c9190612ed1565b60405180910390f35b3480156103a157600080fd5b506103aa610dd0565b6040516103b79190612ed1565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612e95565b610dd6565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612eec565b610e22565b60405161041d9190612e7a565b60405180910390f35b34801561043257600080fd5b5061043b610e51565b6040516104489190612f5b565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190612fa2565b610e5a565b005b34801561048657600080fd5b5061048f610f19565b60405161049c9190612ed1565b60405180910390f35b3480156104b157600080fd5b506104ba610f1f565b6040516104c79190612e7a565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190612e95565b610f32565b6040516105049190612e7a565b60405180910390f35b34801561051957600080fd5b50610522610f88565b60405161052f9190612ed1565b60405180910390f35b34801561054457600080fd5b5061054d610f8e565b60405161055a9190612e7a565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612e95565b610fa1565b6040516105979190612ed1565b60405180910390f35b3480156105ac57600080fd5b506105b5610fe9565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fe2565b610ffd565b005b3480156105ec57600080fd5b506105f56110c9565b6040516106029190612ed1565b60405180910390f35b34801561061757600080fd5b506106206110d5565b60405161062d9190612ed1565b60405180910390f35b34801561064257600080fd5b5061064b6110db565b6040516106589190613031565b60405180910390f35b34801561066d57600080fd5b50610676611105565b6040516106839190613031565b60405180910390f35b34801561069857600080fd5b506106a161112b565b6040516106ae9190612d28565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190612fa2565b6111bd565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612d94565b6111d3565b005b34801561071557600080fd5b5061071e611247565b60405161072b9190613031565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190612e1f565b61126d565b6040516107689190612e7a565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612e95565b611290565b6040516107a59190612e7a565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190612d94565b6112b0565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190612e95565b6112d5565b60405161080b9190612e7a565b60405180910390f35b34801561082057600080fd5b5061083b60048036038101906108369190613194565b6112f5565b005b34801561084957600080fd5b50610864600480360381019061085f9190612fa2565b611392565b005b34801561087257600080fd5b5061088d60048036038101906108889190612d94565b6114d5565b005b34801561089b57600080fd5b506108b660048036038101906108b1919061324b565b611540565b005b3480156108c457600080fd5b506108df60048036038101906108da9190612e95565b611628565b005b3480156108ed57600080fd5b5061090860048036038101906109039190612fa2565b611674565b005b34801561091657600080fd5b50610931600480360381019061092c91906132ab565b6116d7565b60405161093e9190612ed1565b60405180910390f35b34801561095357600080fd5b5061096e600480360381019061096991906132eb565b61175e565b005b34801561097c57600080fd5b50610985611783565b6040516109929190612ed1565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd9190612e95565b611789565b005b3480156109d057600080fd5b506109d961180f565b6040516109e69190612ed1565b60405180910390f35b3480156109fb57600080fd5b50610a0461181b565b604051610a119190613377565b60405180910390f35b348015610a2657600080fd5b50610a2f611841565b604051610a3c9190612ed1565b60405180910390f35b606060038054610a54906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906133c1565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b610adf611847565b6014811115610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a9061343e565b60405180910390fd5b6040518060200160405280828152506013600082015181600001559050508060158190555050565b600080610b566118ce565b9050610b638185856118d6565b600191505092915050565b610b76611847565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b9a6110db565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bd39190613031565b602060405180830381865afa158015610bf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c149190613473565b6040518363ffffffff1660e01b8152600401610c319291906134a0565b6020604051808303816000875af1158015610c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7491906134de565b5050565b610c80611847565b601160029054906101000a900460ff1615610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790613557565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b610cf5611847565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d3d906135a8565b60006040518083038185875af1925050503d8060008114610d7a576040519150601f19603f3d011682016040523d82523d6000602084013e610d7f565b606091505b5050905080610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061362f565b60405180910390fd5b50565b6000600254905090565b60155481565b610dde611847565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610e2d6118ce565b9050610e3a8582856118e8565b610e4585858561197c565b60019150509392505050565b60006012905090565b610e62611847565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610ebe57600080fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b601160029054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601160019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ff1611847565b610ffb600061226c565b565b611005611847565b620f424082101561104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061369b565b60405180910390fd5b6207a120811015611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061372d565b60405180910390fd5b670de0b6b3a7640000826110a5919061377c565b600a81905550670de0b6b3a7640000816110bf919061377c565b600b819055505050565b60128060000154905081565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461113a906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611166906133c1565b80156111b35780601f10611188576101008083540402835291602001916111b3565b820191906000526020600020905b81548152906001019060200180831161119657829003601f168201915b5050505050905090565b6111c5611847565b6111cf8282612332565b5050565b6111db611847565b601481111561121f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112169061343e565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806112786118ce565b905061128581858561197c565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6112b8611847565b670de0b6b3a7640000816112cc919061377c565b60098190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6112fd611847565b60005b825181101561138d5781600d6000858481518110611321576113206137d6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061138590613805565b915050611300565b505050565b61139a611847565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361142c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611423906138bf565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114c99190612e7a565b60405180910390a25050565b6114dd611847565b620f4240811015611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613951565b60405180910390fd5b670de0b6b3a764000081611537919061377c565b600c8190555050565b611548611847565b60005b838390508110156115e75781600e600086868581811061156e5761156d6137d6565b5b90506020020160208101906115839190612e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115df90613805565b91505061154b565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161161b93929190613a34565b60405180910390a1505050565b611630611847565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61167c611847565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611766611847565b80601160016101000a81548160ff02191690831515021790555050565b60095481565b611791611847565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118035760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016117fa9190613031565b60405180910390fd5b61180c8161226c565b50565b60138060000154905081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b61184f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1661186d6110db565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576118906118ce565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016118c39190613031565b60405180910390fd5b565b600033905090565b6118e38383836001612465565b505050565b60006118f484846116d7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119765781811015611966578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161195d93929190613a66565b60405180910390fd5b61197584848484036000612465565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613b0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190613ba1565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611afe5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3490613c0d565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611be15750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611bfa5750601160009054906101000a900460ff16155b15611e2e57601160029054906101000a900460ff16611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613c79565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cea57600b54811115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613ce5565b60405180910390fd5b611d83565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d8257600a54811115611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613d51565b60405180910390fd5b5b5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e2d57600c54611de083610fa1565b82611deb9190613d71565b1115611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390613e13565b60405180910390fd5b5b5b60008103611e4757611e428383600061263c565b612267565b6000611e5230610fa1565b905060006009548210159050808015611e785750601160009054906101000a900460ff16155b8015611e905750601160019054906101000a900460ff165b8015611ee55750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611f3b5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f915750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fe4576001601160006101000a81548160ff02191690831515021790555060006015541115611fc857611fc7600954612730565b5b6000601160006101000a81548160ff0219169083151502179055505b6000601160009054906101000a900460ff16159050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061209a5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120a457600090505b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156121485750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561215257600090505b8015612258576000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121cd576064601554866121bc919061377c565b6121c69190613e62565b905061223d565b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561223c5760646014548661222f919061377c565b6122399190613e62565b90505b5b80856122499190613e93565b945061225687308361263c565b505b61226386868661263c565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb90613f39565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124d75760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016124ce9190613031565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125495760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016125409190613031565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015612636578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161262d9190612ed1565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ae5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016126a59190613031565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127205760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016127179190613031565b60405180910390fd5b61272b838383612827565b505050565b600081905061273e81612a4c565b600047905060008190506000811115612821576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612799906135a8565b60006040518083038185875af1925050503d80600081146127d6576040519150601f19603f3d011682016040523d82523d6000602084013e6127db565b606091505b505090508061281f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128169061362f565b60405180910390fd5b505b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361287957806002600082825461286d9190613d71565b9250508190555061294c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612905578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016128fc93929190613a66565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361299557806002600082825403925050819055506129e2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612a3f9190612ed1565b60405180910390a3505050565b6000600267ffffffffffffffff811115612a6957612a68613051565b5b604051908082528060200260200182016040528015612a975781602001602082028036833780820191505090505b5090503081600081518110612aaf57612aae6137d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7a9190613f6e565b81600181518110612b8e57612b8d6137d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bf530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118d6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c5995949392919061405c565b600060405180830381600087803b158015612c7357600080fd5b505af1158015612c87573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc9578082015181840152602081019050612cae565b83811115612cd8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cfa82612c8f565b612d048185612c9a565b9350612d14818560208601612cab565b612d1d81612cde565b840191505092915050565b60006020820190508181036000830152612d428184612cef565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612d7181612d5e565b8114612d7c57600080fd5b50565b600081359050612d8e81612d68565b92915050565b600060208284031215612daa57612da9612d54565b5b6000612db884828501612d7f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dec82612dc1565b9050919050565b612dfc81612de1565b8114612e0757600080fd5b50565b600081359050612e1981612df3565b92915050565b60008060408385031215612e3657612e35612d54565b5b6000612e4485828601612e0a565b9250506020612e5585828601612d7f565b9150509250929050565b60008115159050919050565b612e7481612e5f565b82525050565b6000602082019050612e8f6000830184612e6b565b92915050565b600060208284031215612eab57612eaa612d54565b5b6000612eb984828501612e0a565b91505092915050565b612ecb81612d5e565b82525050565b6000602082019050612ee66000830184612ec2565b92915050565b600080600060608486031215612f0557612f04612d54565b5b6000612f1386828701612e0a565b9350506020612f2486828701612e0a565b9250506040612f3586828701612d7f565b9150509250925092565b600060ff82169050919050565b612f5581612f3f565b82525050565b6000602082019050612f706000830184612f4c565b92915050565b612f7f81612e5f565b8114612f8a57600080fd5b50565b600081359050612f9c81612f76565b92915050565b60008060408385031215612fb957612fb8612d54565b5b6000612fc785828601612e0a565b9250506020612fd885828601612f8d565b9150509250929050565b60008060408385031215612ff957612ff8612d54565b5b600061300785828601612d7f565b925050602061301885828601612d7f565b9150509250929050565b61302b81612de1565b82525050565b60006020820190506130466000830184613022565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61308982612cde565b810181811067ffffffffffffffff821117156130a8576130a7613051565b5b80604052505050565b60006130bb612d4a565b90506130c78282613080565b919050565b600067ffffffffffffffff8211156130e7576130e6613051565b5b602082029050602081019050919050565b600080fd5b600061311061310b846130cc565b6130b1565b90508083825260208201905060208402830185811115613133576131326130f8565b5b835b8181101561315c57806131488882612e0a565b845260208401935050602081019050613135565b5050509392505050565b600082601f83011261317b5761317a61304c565b5b813561318b8482602086016130fd565b91505092915050565b600080604083850312156131ab576131aa612d54565b5b600083013567ffffffffffffffff8111156131c9576131c8612d59565b5b6131d585828601613166565b92505060206131e685828601612f8d565b9150509250929050565b600080fd5b60008083601f84011261320b5761320a61304c565b5b8235905067ffffffffffffffff811115613228576132276131f0565b5b602083019150836020820283011115613244576132436130f8565b5b9250929050565b60008060006040848603121561326457613263612d54565b5b600084013567ffffffffffffffff81111561328257613281612d59565b5b61328e868287016131f5565b935093505060206132a186828701612f8d565b9150509250925092565b600080604083850312156132c2576132c1612d54565b5b60006132d085828601612e0a565b92505060206132e185828601612e0a565b9150509250929050565b60006020828403121561330157613300612d54565b5b600061330f84828501612f8d565b91505092915050565b6000819050919050565b600061333d61333861333384612dc1565b613318565b612dc1565b9050919050565b600061334f82613322565b9050919050565b600061336182613344565b9050919050565b61337181613356565b82525050565b600060208201905061338c6000830184613368565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133d957607f821691505b6020821081036133ec576133eb613392565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b6000613428601283612c9a565b9150613433826133f2565b602082019050919050565b600060208201905081810360008301526134578161341b565b9050919050565b60008151905061346d81612d68565b92915050565b60006020828403121561348957613488612d54565b5b60006134978482850161345e565b91505092915050565b60006040820190506134b56000830185613022565b6134c26020830184612ec2565b9392505050565b6000815190506134d881612f76565b92915050565b6000602082840312156134f4576134f3612d54565b5b6000613502848285016134c9565b91505092915050565b7f54726164696e6720656e61626c65640000000000000000000000000000000000600082015250565b6000613541600f83612c9a565b915061354c8261350b565b602082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b600081905092915050565b50565b6000613592600083613577565b915061359d82613582565b600082019050919050565b60006135b382613585565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613619602283612c9a565b9150613624826135bd565b604082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000613685602083612c9a565b91506136908261364f565b602082019050919050565b600060208201905081810360008301526136b481613678565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000613717602383612c9a565b9150613722826136bb565b604082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612d5e565b915061379283612d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137cb576137ca61374d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061381082612d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138425761384161374d565b5b600182019050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b60006138a9602b83612c9a565b91506138b48261384d565b604082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600061393b602283612c9a565b9150613946826138df565b604082019050919050565b6000602082019050818103600083015261396a8161392e565b9050919050565b600082825260208201905092915050565b6000819050919050565b61399581612de1565b82525050565b60006139a7838361398c565b60208301905092915050565b60006139c26020840184612e0a565b905092915050565b6000602082019050919050565b60006139e38385613971565b93506139ee82613982565b8060005b85811015613a2757613a0482846139b3565b613a0e888261399b565b9750613a19836139ca565b9250506001810190506139f2565b5085925050509392505050565b60006040820190508181036000830152613a4f8185876139d7565b9050613a5e6020830184612e6b565b949350505050565b6000606082019050613a7b6000830186613022565b613a886020830185612ec2565b613a956040830184612ec2565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613af9602583612c9a565b9150613b0482613a9d565b604082019050919050565b60006020820190508181036000830152613b2881613aec565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b8b602383612c9a565b9150613b9682613b2f565b604082019050919050565b60006020820190508181036000830152613bba81613b7e565b9050919050565b7f4279652020426f74000000000000000000000000000000000000000000000000600082015250565b6000613bf7600883612c9a565b9150613c0282613bc1565b602082019050919050565b60006020820190508181036000830152613c2681613bea565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000613c63601283612c9a565b9150613c6e82613c2d565b602082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000613ccf601f83612c9a565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000613d3b601e83612c9a565b9150613d4682613d05565b602082019050919050565b60006020820190508181036000830152613d6a81613d2e565b9050919050565b6000613d7c82612d5e565b9150613d8783612d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dbc57613dbb61374d565b5b828201905092915050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000613dfd601b83612c9a565b9150613e0882613dc7565b602082019050919050565b60006020820190508181036000830152613e2c81613df0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e6d82612d5e565b9150613e7883612d5e565b925082613e8857613e87613e33565b5b828204905092915050565b6000613e9e82612d5e565b9150613ea983612d5e565b925082821015613ebc57613ebb61374d565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000613f23603883612c9a565b9150613f2e82613ec7565b604082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b600081519050613f6881612df3565b92915050565b600060208284031215613f8457613f83612d54565b5b6000613f9284828501613f59565b91505092915050565b6000819050919050565b6000613fc0613fbb613fb684613f9b565b613318565b612d5e565b9050919050565b613fd081613fa5565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b600061400982613fd6565b6140138185613971565b935061401e83613fe1565b8060005b8381101561404f578151614036888261399b565b975061404183613ff1565b925050600181019050614022565b5085935050505092915050565b600060a0820190506140716000830188612ec2565b61407e6020830187613fc7565b81810360408301526140908186613ffe565b905061409f6060830185613022565b6140ac6080830184612ec2565b969550505050505056fea2646970667358221220bb132e7ac873aabf5acfcbe0da2dd880a4f69e1e442d3add5c7bd5d885429ce864736f6c634300080f0033000000000000000000000000fb61826838ebf8159f6d7f5ea335b7b111db9357

Deployed Bytecode

0x6080604052600436106102765760003560e01c80638da5cb5b1161014f578063c0246668116100c1578063e01af92c1161007a578063e01af92c14610947578063e2f4560514610970578063f2fde38b1461099b578063f66895a3146109c4578063f887ea40146109ef578063f8b45b0514610a1a5761027d565b8063c02466681461083d578063c18bc19514610866578063c492f0461461088f578063c851cc32146108b8578063d2fcc001146108e1578063dd62ed3e1461090a5761027d565b8063a8aa1b3111610113578063a8aa1b3114610709578063a9059cbb14610734578063abb8105214610771578063afa4f3b2146107ae578063b62496f5146107d7578063b83b297f146108145761027d565b80638da5cb5b146106365780638ea5220f1461066157806395d89b411461068c5780639a7a23d6146106b7578063a3ca847d146106e05761027d565b8063342aa8b5116101e85780636ddd1713116101ac5780636ddd17131461053857806370a0823114610563578063715018a6146105a057806379b447bd146105b7578063864701a5146105e057806388e765ff1461060b5761027d565b8063342aa8b51461045157806346469afb1461047a5780634ada218b146104a55780634fbee193146104d057806366d602ae1461050d5761027d565b806312b77e8a1161023a57806312b77e8a1461035357806318160ddd1461036a5780631bff7898146103955780631f53ac02146103c057806323b872dd146103e9578063313ce567146104265761027d565b806306fdde03146102825780630940bbc7146102ad578063095ea7b3146102d65780630a78097d146103135780630bd05b691461033c5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a45565b6040516102a49190612d28565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612d94565b610ad7565b005b3480156102e257600080fd5b506102fd60048036038101906102f89190612e1f565b610b4b565b60405161030a9190612e7a565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190612e95565b610b6e565b005b34801561034857600080fd5b50610351610c78565b005b34801561035f57600080fd5b50610368610ced565b005b34801561037657600080fd5b5061037f610dc6565b60405161038c9190612ed1565b60405180910390f35b3480156103a157600080fd5b506103aa610dd0565b6040516103b79190612ed1565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612e95565b610dd6565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612eec565b610e22565b60405161041d9190612e7a565b60405180910390f35b34801561043257600080fd5b5061043b610e51565b6040516104489190612f5b565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190612fa2565b610e5a565b005b34801561048657600080fd5b5061048f610f19565b60405161049c9190612ed1565b60405180910390f35b3480156104b157600080fd5b506104ba610f1f565b6040516104c79190612e7a565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f29190612e95565b610f32565b6040516105049190612e7a565b60405180910390f35b34801561051957600080fd5b50610522610f88565b60405161052f9190612ed1565b60405180910390f35b34801561054457600080fd5b5061054d610f8e565b60405161055a9190612e7a565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612e95565b610fa1565b6040516105979190612ed1565b60405180910390f35b3480156105ac57600080fd5b506105b5610fe9565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612fe2565b610ffd565b005b3480156105ec57600080fd5b506105f56110c9565b6040516106029190612ed1565b60405180910390f35b34801561061757600080fd5b506106206110d5565b60405161062d9190612ed1565b60405180910390f35b34801561064257600080fd5b5061064b6110db565b6040516106589190613031565b60405180910390f35b34801561066d57600080fd5b50610676611105565b6040516106839190613031565b60405180910390f35b34801561069857600080fd5b506106a161112b565b6040516106ae9190612d28565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190612fa2565b6111bd565b005b3480156106ec57600080fd5b5061070760048036038101906107029190612d94565b6111d3565b005b34801561071557600080fd5b5061071e611247565b60405161072b9190613031565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190612e1f565b61126d565b6040516107689190612e7a565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190612e95565b611290565b6040516107a59190612e7a565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190612d94565b6112b0565b005b3480156107e357600080fd5b506107fe60048036038101906107f99190612e95565b6112d5565b60405161080b9190612e7a565b60405180910390f35b34801561082057600080fd5b5061083b60048036038101906108369190613194565b6112f5565b005b34801561084957600080fd5b50610864600480360381019061085f9190612fa2565b611392565b005b34801561087257600080fd5b5061088d60048036038101906108889190612d94565b6114d5565b005b34801561089b57600080fd5b506108b660048036038101906108b1919061324b565b611540565b005b3480156108c457600080fd5b506108df60048036038101906108da9190612e95565b611628565b005b3480156108ed57600080fd5b5061090860048036038101906109039190612fa2565b611674565b005b34801561091657600080fd5b50610931600480360381019061092c91906132ab565b6116d7565b60405161093e9190612ed1565b60405180910390f35b34801561095357600080fd5b5061096e600480360381019061096991906132eb565b61175e565b005b34801561097c57600080fd5b50610985611783565b6040516109929190612ed1565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd9190612e95565b611789565b005b3480156109d057600080fd5b506109d961180f565b6040516109e69190612ed1565b60405180910390f35b3480156109fb57600080fd5b50610a0461181b565b604051610a119190613377565b60405180910390f35b348015610a2657600080fd5b50610a2f611841565b604051610a3c9190612ed1565b60405180910390f35b606060038054610a54906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906133c1565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b610adf611847565b6014811115610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a9061343e565b60405180910390fd5b6040518060200160405280828152506013600082015181600001559050508060158190555050565b600080610b566118ce565b9050610b638185856118d6565b600191505092915050565b610b76611847565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610b9a6110db565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610bd39190613031565b602060405180830381865afa158015610bf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c149190613473565b6040518363ffffffff1660e01b8152600401610c319291906134a0565b6020604051808303816000875af1158015610c50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7491906134de565b5050565b610c80611847565b601160029054906101000a900460ff1615610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790613557565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b610cf5611847565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d3d906135a8565b60006040518083038185875af1925050503d8060008114610d7a576040519150601f19603f3d011682016040523d82523d6000602084013e610d7f565b606091505b5050905080610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061362f565b60405180910390fd5b50565b6000600254905090565b60155481565b610dde611847565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610e2d6118ce565b9050610e3a8582856118e8565b610e4585858561197c565b60019150509392505050565b60006012905090565b610e62611847565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610ebe57600080fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b601160029054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601160019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ff1611847565b610ffb600061226c565b565b611005611847565b620f424082101561104b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110429061369b565b60405180910390fd5b6207a120811015611091576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110889061372d565b60405180910390fd5b670de0b6b3a7640000826110a5919061377c565b600a81905550670de0b6b3a7640000816110bf919061377c565b600b819055505050565b60128060000154905081565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461113a906133c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611166906133c1565b80156111b35780601f10611188576101008083540402835291602001916111b3565b820191906000526020600020905b81548152906001019060200180831161119657829003601f168201915b5050505050905090565b6111c5611847565b6111cf8282612332565b5050565b6111db611847565b601481111561121f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112169061343e565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806112786118ce565b905061128581858561197c565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6112b8611847565b670de0b6b3a7640000816112cc919061377c565b60098190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b6112fd611847565b60005b825181101561138d5781600d6000858481518110611321576113206137d6565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061138590613805565b915050611300565b505050565b61139a611847565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361142c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611423906138bf565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516114c99190612e7a565b60405180910390a25050565b6114dd611847565b620f4240811015611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90613951565b60405180910390fd5b670de0b6b3a764000081611537919061377c565b600c8190555050565b611548611847565b60005b838390508110156115e75781600e600086868581811061156e5761156d6137d6565b5b90506020020160208101906115839190612e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806115df90613805565b91505061154b565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161161b93929190613a34565b60405180910390a1505050565b611630611847565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61167c611847565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611766611847565b80601160016101000a81548160ff02191690831515021790555050565b60095481565b611791611847565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118035760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016117fa9190613031565b60405180910390fd5b61180c8161226c565b50565b60138060000154905081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b61184f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1661186d6110db565b73ffffffffffffffffffffffffffffffffffffffff16146118cc576118906118ce565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016118c39190613031565b60405180910390fd5b565b600033905090565b6118e38383836001612465565b505050565b60006118f484846116d7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119765781811015611966578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161195d93929190613a66565b60405180910390fd5b61197584848484036000612465565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613b0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5190613ba1565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611afe5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3490613c0d565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611be15750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611bfa5750601160009054906101000a900460ff16155b15611e2e57601160029054906101000a900460ff16611c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4590613c79565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cea57600b54811115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613ce5565b60405180910390fd5b611d83565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d8257600a54811115611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613d51565b60405180910390fd5b5b5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e2d57600c54611de083610fa1565b82611deb9190613d71565b1115611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390613e13565b60405180910390fd5b5b5b60008103611e4757611e428383600061263c565b612267565b6000611e5230610fa1565b905060006009548210159050808015611e785750601160009054906101000a900460ff16155b8015611e905750601160019054906101000a900460ff165b8015611ee55750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015611f3b5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611f915750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611fe4576001601160006101000a81548160ff02191690831515021790555060006015541115611fc857611fc7600954612730565b5b6000601160006101000a81548160ff0219169083151502179055505b6000601160009054906101000a900460ff16159050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061209a5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120a457600090505b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156121485750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561215257600090505b8015612258576000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156121cd576064601554866121bc919061377c565b6121c69190613e62565b905061223d565b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561223c5760646014548661222f919061377c565b6122399190613e62565b90505b5b80856122499190613e93565b945061225687308361263c565b505b61226386868661263c565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb90613f39565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036124d75760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016124ce9190613031565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125495760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016125409190613031565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015612636578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161262d9190612ed1565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ae5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016126a59190613031565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127205760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016127179190613031565b60405180910390fd5b61272b838383612827565b505050565b600081905061273e81612a4c565b600047905060008190506000811115612821576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612799906135a8565b60006040518083038185875af1925050503d80600081146127d6576040519150601f19603f3d011682016040523d82523d6000602084013e6127db565b606091505b505090508061281f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128169061362f565b60405180910390fd5b505b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361287957806002600082825461286d9190613d71565b9250508190555061294c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612905578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016128fc93929190613a66565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361299557806002600082825403925050819055506129e2565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612a3f9190612ed1565b60405180910390a3505050565b6000600267ffffffffffffffff811115612a6957612a68613051565b5b604051908082528060200260200182016040528015612a975781602001602082028036833780820191505090505b5090503081600081518110612aaf57612aae6137d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7a9190613f6e565b81600181518110612b8e57612b8d6137d6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bf530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118d6565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c5995949392919061405c565b600060405180830381600087803b158015612c7357600080fd5b505af1158015612c87573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cc9578082015181840152602081019050612cae565b83811115612cd8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cfa82612c8f565b612d048185612c9a565b9350612d14818560208601612cab565b612d1d81612cde565b840191505092915050565b60006020820190508181036000830152612d428184612cef565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612d7181612d5e565b8114612d7c57600080fd5b50565b600081359050612d8e81612d68565b92915050565b600060208284031215612daa57612da9612d54565b5b6000612db884828501612d7f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dec82612dc1565b9050919050565b612dfc81612de1565b8114612e0757600080fd5b50565b600081359050612e1981612df3565b92915050565b60008060408385031215612e3657612e35612d54565b5b6000612e4485828601612e0a565b9250506020612e5585828601612d7f565b9150509250929050565b60008115159050919050565b612e7481612e5f565b82525050565b6000602082019050612e8f6000830184612e6b565b92915050565b600060208284031215612eab57612eaa612d54565b5b6000612eb984828501612e0a565b91505092915050565b612ecb81612d5e565b82525050565b6000602082019050612ee66000830184612ec2565b92915050565b600080600060608486031215612f0557612f04612d54565b5b6000612f1386828701612e0a565b9350506020612f2486828701612e0a565b9250506040612f3586828701612d7f565b9150509250925092565b600060ff82169050919050565b612f5581612f3f565b82525050565b6000602082019050612f706000830184612f4c565b92915050565b612f7f81612e5f565b8114612f8a57600080fd5b50565b600081359050612f9c81612f76565b92915050565b60008060408385031215612fb957612fb8612d54565b5b6000612fc785828601612e0a565b9250506020612fd885828601612f8d565b9150509250929050565b60008060408385031215612ff957612ff8612d54565b5b600061300785828601612d7f565b925050602061301885828601612d7f565b9150509250929050565b61302b81612de1565b82525050565b60006020820190506130466000830184613022565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61308982612cde565b810181811067ffffffffffffffff821117156130a8576130a7613051565b5b80604052505050565b60006130bb612d4a565b90506130c78282613080565b919050565b600067ffffffffffffffff8211156130e7576130e6613051565b5b602082029050602081019050919050565b600080fd5b600061311061310b846130cc565b6130b1565b90508083825260208201905060208402830185811115613133576131326130f8565b5b835b8181101561315c57806131488882612e0a565b845260208401935050602081019050613135565b5050509392505050565b600082601f83011261317b5761317a61304c565b5b813561318b8482602086016130fd565b91505092915050565b600080604083850312156131ab576131aa612d54565b5b600083013567ffffffffffffffff8111156131c9576131c8612d59565b5b6131d585828601613166565b92505060206131e685828601612f8d565b9150509250929050565b600080fd5b60008083601f84011261320b5761320a61304c565b5b8235905067ffffffffffffffff811115613228576132276131f0565b5b602083019150836020820283011115613244576132436130f8565b5b9250929050565b60008060006040848603121561326457613263612d54565b5b600084013567ffffffffffffffff81111561328257613281612d59565b5b61328e868287016131f5565b935093505060206132a186828701612f8d565b9150509250925092565b600080604083850312156132c2576132c1612d54565b5b60006132d085828601612e0a565b92505060206132e185828601612e0a565b9150509250929050565b60006020828403121561330157613300612d54565b5b600061330f84828501612f8d565b91505092915050565b6000819050919050565b600061333d61333861333384612dc1565b613318565b612dc1565b9050919050565b600061334f82613322565b9050919050565b600061336182613344565b9050919050565b61337181613356565b82525050565b600060208201905061338c6000830184613368565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133d957607f821691505b6020821081036133ec576133eb613392565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b6000613428601283612c9a565b9150613433826133f2565b602082019050919050565b600060208201905081810360008301526134578161341b565b9050919050565b60008151905061346d81612d68565b92915050565b60006020828403121561348957613488612d54565b5b60006134978482850161345e565b91505092915050565b60006040820190506134b56000830185613022565b6134c26020830184612ec2565b9392505050565b6000815190506134d881612f76565b92915050565b6000602082840312156134f4576134f3612d54565b5b6000613502848285016134c9565b91505092915050565b7f54726164696e6720656e61626c65640000000000000000000000000000000000600082015250565b6000613541600f83612c9a565b915061354c8261350b565b602082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b600081905092915050565b50565b6000613592600083613577565b915061359d82613582565b600082019050919050565b60006135b382613585565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613619602283612c9a565b9150613624826135bd565b604082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000613685602083612c9a565b91506136908261364f565b602082019050919050565b600060208201905081810360008301526136b481613678565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b6000613717602383612c9a565b9150613722826136bb565b604082019050919050565b600060208201905081810360008301526137468161370a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061378782612d5e565b915061379283612d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137cb576137ca61374d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061381082612d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036138425761384161374d565b5b600182019050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b60006138a9602b83612c9a565b91506138b48261384d565b604082019050919050565b600060208201905081810360008301526138d88161389c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600061393b602283612c9a565b9150613946826138df565b604082019050919050565b6000602082019050818103600083015261396a8161392e565b9050919050565b600082825260208201905092915050565b6000819050919050565b61399581612de1565b82525050565b60006139a7838361398c565b60208301905092915050565b60006139c26020840184612e0a565b905092915050565b6000602082019050919050565b60006139e38385613971565b93506139ee82613982565b8060005b85811015613a2757613a0482846139b3565b613a0e888261399b565b9750613a19836139ca565b9250506001810190506139f2565b5085925050509392505050565b60006040820190508181036000830152613a4f8185876139d7565b9050613a5e6020830184612e6b565b949350505050565b6000606082019050613a7b6000830186613022565b613a886020830185612ec2565b613a956040830184612ec2565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613af9602583612c9a565b9150613b0482613a9d565b604082019050919050565b60006020820190508181036000830152613b2881613aec565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b8b602383612c9a565b9150613b9682613b2f565b604082019050919050565b60006020820190508181036000830152613bba81613b7e565b9050919050565b7f4279652020426f74000000000000000000000000000000000000000000000000600082015250565b6000613bf7600883612c9a565b9150613c0282613bc1565b602082019050919050565b60006020820190508181036000830152613c2681613bea565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000613c63601283612c9a565b9150613c6e82613c2d565b602082019050919050565b60006020820190508181036000830152613c9281613c56565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b6000613ccf601f83612c9a565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b6000613d3b601e83612c9a565b9150613d4682613d05565b602082019050919050565b60006020820190508181036000830152613d6a81613d2e565b9050919050565b6000613d7c82612d5e565b9150613d8783612d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dbc57613dbb61374d565b5b828201905092915050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000613dfd601b83612c9a565b9150613e0882613dc7565b602082019050919050565b60006020820190508181036000830152613e2c81613df0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e6d82612d5e565b9150613e7883612d5e565b925082613e8857613e87613e33565b5b828204905092915050565b6000613e9e82612d5e565b9150613ea983612d5e565b925082821015613ebc57613ebb61374d565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000613f23603883612c9a565b9150613f2e82613ec7565b604082019050919050565b60006020820190508181036000830152613f5281613f16565b9050919050565b600081519050613f6881612df3565b92915050565b600060208284031215613f8457613f83612d54565b5b6000613f9284828501613f59565b91505092915050565b6000819050919050565b6000613fc0613fbb613fb684613f9b565b613318565b612d5e565b9050919050565b613fd081613fa5565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b600061400982613fd6565b6140138185613971565b935061401e83613fe1565b8060005b8381101561404f578151614036888261399b565b975061404183613ff1565b925050600181019050614022565b5085935050505092915050565b600060a0820190506140716000830188612ec2565b61407e6020830187613fc7565b81810360408301526140908186613ffe565b905061409f6060830185613022565b6140ac6080830184612ec2565b969550505050505056fea2646970667358221220bb132e7ac873aabf5acfcbe0da2dd880a4f69e1e442d3add5c7bd5d885429ce864736f6c634300080f0033

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

000000000000000000000000fb61826838ebf8159f6d7f5ea335b7b111db9357

-----Decoded View---------------
Arg [0] : _dev (address): 0xFB61826838ebF8159F6d7F5Ea335B7B111Db9357

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fb61826838ebf8159f6d7f5ea335b7b111db9357


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.