ETH Price: $3,330.18 (-4.39%)
Gas: 3 Gwei

Token

Crypto 2.0 (2.0)
 

Overview

Max Total Supply

100,000,000 2.0

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,799,999.100000000368817375 2.0

Value
$0.00
0x67135c953f377a9792c2482dd110fa9b4de5a570
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:
Crypto20

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

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

//http://www.crypto20.tech/

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 Crypto20 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(0);
    Taxes public sellTaxes = Taxes(0);
    uint256 public totalBuyTax = 10;
    uint256 public totalSellTax = 10;

    constructor(address _dev)
        ERC20("Crypto 2.0", "2.0")
    {
    
        setSwapTokensAtAmount(300000);
        updateMaxWalletAmount(2000000);
        setMaxBuyAndSell(2000000, 2000000);
        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(), 100000000 * (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 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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"},{"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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"}]

60806040526001601160016101000a81548160ff021916908315150217905550604051806020016040528060008152506012600082015181600001555050604051806020016040528060008152506013600082015181600001555050600a601455600a6015553480156200007257600080fd5b5060405162005a5b38038062005a5b833981810160405281019062000098919062000c86565b6040518060400160405280600a81526020017f43727970746f20322e30000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f322e300000000000000000000000000000000000000000000000000000000000815250816003908162000115919062000f32565b50806004908162000127919062000f32565b5050506200014a6200013e6200045260201b60201c565b6200045a60201b60201c565b6200015e620493e06200052060201b60201c565b62000172621e84806200054f60201b60201c565b62000187621e848080620005c760201b60201c565b6200019881620006a560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000225919062000c86565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b3919062000c86565b6040518363ffffffff1660e01b8152600401620002d29291906200102a565b6020604051808303816000875af1158015620002f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000318919062000c86565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003be620003b0620006f960201b60201c565b60016200072360201b60201c565b620003d13060016200072360201b60201c565b620003e48160016200087360201b60201c565b620003f73060016200087360201b60201c565b6200040a8260016200087360201b60201c565b6200041d816001620008de60201b60201c565b6200044962000431620006f960201b60201c565b6a52b7d2dcc80cd2e400000062000a1460201b60201c565b50505062001573565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200053062000b8160201b60201c565b670de0b6b3a76400008162000546919062001086565b60098190555050565b6200055f62000b8160201b60201c565b620f4240811015620005a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059f906200116e565b60405180910390fd5b670de0b6b3a764000081620005be919062001086565b600c8190555050565b620005d762000b8160201b60201c565b620f424082101562000620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061790620011e0565b60405180910390fd5b6207a12081101562000669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006609062001278565b60405180910390fd5b670de0b6b3a7640000826200067f919062001086565b600a81905550670de0b6b3a7640000816200069b919062001086565b600b819055505050565b620006b562000b8160201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200073362000b8160201b60201c565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620007c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007bf9062001310565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200086791906200134f565b60405180910390a25050565b6200088362000b8160201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000973576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096a90620013e2565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a7d9062001454565b60405180910390fd5b62000a9a6000838362000c1260201b60201c565b806002600082825462000aae919062001476565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b619190620014e4565b60405180910390a362000b7d6000838362000c1760201b60201c565b5050565b62000b916200045260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000bb7620006f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c079062001551565b60405180910390fd5b565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c4e8262000c21565b9050919050565b62000c608162000c41565b811462000c6c57600080fd5b50565b60008151905062000c808162000c55565b92915050565b60006020828403121562000c9f5762000c9e62000c1c565b5b600062000caf8482850162000c6f565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d3a57607f821691505b60208210810362000d505762000d4f62000cf2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d7b565b62000dc6868362000d7b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e1362000e0d62000e078462000dde565b62000de8565b62000dde565b9050919050565b6000819050919050565b62000e2f8362000df2565b62000e4762000e3e8262000e1a565b84845462000d88565b825550505050565b600090565b62000e5e62000e4f565b62000e6b81848462000e24565b505050565b5b8181101562000e935762000e8760008262000e54565b60018101905062000e71565b5050565b601f82111562000ee25762000eac8162000d56565b62000eb78462000d6b565b8101602085101562000ec7578190505b62000edf62000ed68562000d6b565b83018262000e70565b50505b505050565b600082821c905092915050565b600062000f076000198460080262000ee7565b1980831691505092915050565b600062000f22838362000ef4565b9150826002028217905092915050565b62000f3d8262000cb8565b67ffffffffffffffff81111562000f595762000f5862000cc3565b5b62000f65825462000d21565b62000f7282828562000e97565b600060209050601f83116001811462000faa576000841562000f95578287015190505b62000fa1858262000f14565b86555062001011565b601f19841662000fba8662000d56565b60005b8281101562000fe45784890151825560018201915060208501945060208101905062000fbd565b8683101562001004578489015162001000601f89168262000ef4565b8355505b6001600288020188555050505b505050505050565b620010248162000c41565b82525050565b600060408201905062001041600083018562001019565b62001050602083018462001019565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010938262000dde565b9150620010a08362000dde565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620010dc57620010db62001057565b5b828202905092915050565b600082825260208201905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b600062001156602283620010e7565b91506200116382620010f8565b604082019050919050565b60006020820190508181036000830152620011898162001147565b9050919050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b6000620011c8602083620010e7565b9150620011d58262001190565b602082019050919050565b60006020820190508181036000830152620011fb81620011b9565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600062001260602383620010e7565b91506200126d8262001202565b604082019050919050565b60006020820190508181036000830152620012938162001251565b9050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000620012f8602b83620010e7565b915062001305826200129a565b604082019050919050565b600060208201905081810360008301526200132b81620012e9565b9050919050565b60008115159050919050565b620013498162001332565b82525050565b60006020820190506200136660008301846200133e565b92915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b6000620013ca603883620010e7565b9150620013d7826200136c565b604082019050919050565b60006020820190508181036000830152620013fd81620013bb565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200143c601f83620010e7565b9150620014498262001404565b602082019050919050565b600060208201905081810360008301526200146f816200142d565b9050919050565b6000620014838262000dde565b9150620014908362000dde565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620014c857620014c762001057565b5b828201905092915050565b620014de8162000dde565b82525050565b6000602082019050620014fb6000830184620014d3565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001539602083620010e7565b9150620015468262001501565b602082019050919050565b600060208201905081810360008301526200156c816200152a565b9050919050565b6144d880620015836000396000f3fe60806040526004361061028c5760003560e01c80638da5cb5b1161015a578063c0246668116100c1578063e01af92c1161007a578063e01af92c146109d7578063e2f4560514610a00578063f2fde38b14610a2b578063f66895a314610a54578063f887ea4014610a7f578063f8b45b0514610aaa57610293565b8063c0246668146108cd578063c18bc195146108f6578063c492f0461461091f578063c851cc3214610948578063d2fcc00114610971578063dd62ed3e1461099a57610293565b8063a8aa1b3111610113578063a8aa1b3114610799578063a9059cbb146107c4578063abb8105214610801578063afa4f3b21461083e578063b62496f514610867578063b83b297f146108a457610293565b80638da5cb5b146106895780638ea5220f146106b457806395d89b41146106df5780639a7a23d61461070a578063a3ca847d14610733578063a457c2d71461075c57610293565b8063342aa8b5116101fe5780636ddd1713116101b75780636ddd17131461058b57806370a08231146105b6578063715018a6146105f357806379b447bd1461060a578063864701a51461063357806388e765ff1461065e57610293565b8063342aa8b514610467578063395093511461049057806346469afb146104cd5780634ada218b146104f85780634fbee1931461052357806366d602ae1461056057610293565b806312b77e8a1161025057806312b77e8a1461036957806318160ddd146103805780631bff7898146103ab5780631f53ac02146103d657806323b872dd146103ff578063313ce5671461043c57610293565b806306fdde03146102985780630940bbc7146102c3578063095ea7b3146102ec5780630a78097d146103295780630bd05b691461035257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad5565b6040516102ba9190612d99565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612e05565b610b67565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612e90565b610bdb565b6040516103209190612eeb565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612f06565b610bfe565b005b34801561035e57600080fd5b50610367610d08565b005b34801561037557600080fd5b5061037e610d7d565b005b34801561038c57600080fd5b50610395610e56565b6040516103a29190612f42565b60405180910390f35b3480156103b757600080fd5b506103c0610e60565b6040516103cd9190612f42565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612f06565b610e66565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f5d565b610eb2565b6040516104339190612eeb565b60405180910390f35b34801561044857600080fd5b50610451610ee1565b60405161045e9190612fcc565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613013565b610eea565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612e90565b610fa9565b6040516104c49190612eeb565b60405180910390f35b3480156104d957600080fd5b506104e2610fe0565b6040516104ef9190612f42565b60405180910390f35b34801561050457600080fd5b5061050d610fe6565b60405161051a9190612eeb565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612f06565b610ff9565b6040516105579190612eeb565b60405180910390f35b34801561056c57600080fd5b5061057561104f565b6040516105829190612f42565b60405180910390f35b34801561059757600080fd5b506105a0611055565b6040516105ad9190612eeb565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612f06565b611068565b6040516105ea9190612f42565b60405180910390f35b3480156105ff57600080fd5b506106086110b0565b005b34801561061657600080fd5b50610631600480360381019061062c9190613053565b6110c4565b005b34801561063f57600080fd5b50610648611190565b6040516106559190612f42565b60405180910390f35b34801561066a57600080fd5b5061067361119c565b6040516106809190612f42565b60405180910390f35b34801561069557600080fd5b5061069e6111a2565b6040516106ab91906130a2565b60405180910390f35b3480156106c057600080fd5b506106c96111cc565b6040516106d691906130a2565b60405180910390f35b3480156106eb57600080fd5b506106f46111f2565b6040516107019190612d99565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190613013565b611284565b005b34801561073f57600080fd5b5061075a60048036038101906107559190612e05565b61129a565b005b34801561076857600080fd5b50610783600480360381019061077e9190612e90565b61130e565b6040516107909190612eeb565b60405180910390f35b3480156107a557600080fd5b506107ae611385565b6040516107bb91906130a2565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190612e90565b6113ab565b6040516107f89190612eeb565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612f06565b6113ce565b6040516108359190612eeb565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190612e05565b6113ee565b005b34801561087357600080fd5b5061088e60048036038101906108899190612f06565b611413565b60405161089b9190612eeb565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190613205565b611433565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190613013565b6114d0565b005b34801561090257600080fd5b5061091d60048036038101906109189190612e05565b611613565b005b34801561092b57600080fd5b50610946600480360381019061094191906132bc565b61167e565b005b34801561095457600080fd5b5061096f600480360381019061096a9190612f06565b611766565b005b34801561097d57600080fd5b5061099860048036038101906109939190613013565b6117b2565b005b3480156109a657600080fd5b506109c160048036038101906109bc919061331c565b611815565b6040516109ce9190612f42565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f9919061335c565b61189c565b005b348015610a0c57600080fd5b50610a156118c1565b604051610a229190612f42565b60405180910390f35b348015610a3757600080fd5b50610a526004803603810190610a4d9190612f06565b6118c7565b005b348015610a6057600080fd5b50610a6961194a565b604051610a769190612f42565b60405180910390f35b348015610a8b57600080fd5b50610a94611956565b604051610aa191906133e8565b60405180910390f35b348015610ab657600080fd5b50610abf61197c565b604051610acc9190612f42565b60405180910390f35b606060038054610ae490613432565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1090613432565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b5050505050905090565b610b6f611982565b6014811115610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa906134af565b60405180910390fd5b6040518060200160405280828152506013600082015181600001559050508060158190555050565b600080610be6611a00565b9050610bf3818585611a08565b600191505092915050565b610c06611982565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610c2a6111a2565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c6391906130a2565b602060405180830381865afa158015610c80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca491906134e4565b6040518363ffffffff1660e01b8152600401610cc1929190613511565b6020604051808303816000875af1158015610ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d04919061354f565b5050565b610d10611982565b601160029054906101000a900460ff1615610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906135c8565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b610d85611982565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610dcd90613619565b60006040518083038185875af1925050503d8060008114610e0a576040519150601f19603f3d011682016040523d82523d6000602084013e610e0f565b606091505b5050905080610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906136a0565b60405180910390fd5b50565b6000600254905090565b60155481565b610e6e611982565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ebd611a00565b9050610eca858285611bd1565b610ed5858585611c5d565b60019150509392505050565b60006012905090565b610ef2611982565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610f4e57600080fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610fb4611a00565b9050610fd5818585610fc68589611815565b610fd091906136ef565b611a08565b600191505092915050565b60145481565b601160029054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601160019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b8611982565b6110c2600061254d565b565b6110cc611982565b620f4240821015611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613791565b60405180910390fd5b6207a120811015611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90613823565b60405180910390fd5b670de0b6b3a76400008261116c9190613843565b600a81905550670de0b6b3a7640000816111869190613843565b600b819055505050565b60128060000154905081565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461120190613432565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90613432565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050905090565b61128c611982565b6112968282612613565b5050565b6112a2611982565b60148111156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906134af565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b600080611319611a00565b905060006113278286611815565b90508381101561136c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113639061390f565b60405180910390fd5b6113798286868403611a08565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806113b6611a00565b90506113c3818585611c5d565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6113f6611982565b670de0b6b3a76400008161140a9190613843565b60098190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b61143b611982565b60005b82518110156114cb5781600d600085848151811061145f5761145e61392f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114c39061395e565b91505061143e565b505050565b6114d8611982565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613a18565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116079190612eeb565b60405180910390a25050565b61161b611982565b620f4240811015611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613aaa565b60405180910390fd5b670de0b6b3a7640000816116759190613843565b600c8190555050565b611686611982565b60005b838390508110156117255781600e60008686858181106116ac576116ab61392f565b5b90506020020160208101906116c19190612f06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061171d9061395e565b915050611689565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161175993929190613b8d565b60405180910390a1505050565b61176e611982565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117ba611982565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118a4611982565b80601160016101000a81548160ff02191690831515021790555050565b60095481565b6118cf611982565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613c31565b60405180910390fd5b6119478161254d565b50565b60138060000154905081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b61198a611a00565b73ffffffffffffffffffffffffffffffffffffffff166119a86111a2565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613c9d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90613d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613dc1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bc49190612f42565b60405180910390a3505050565b6000611bdd8484611815565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c575781811015611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613e2d565b60405180910390fd5b611c568484848403611a08565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613f51565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ddf5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613fbd565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ec25750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611edb5750601160009054906101000a900460ff16155b1561210f57601160029054906101000a900460ff16611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690614029565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fcb57600b54811115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614095565b60405180910390fd5b612064565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561206357600a54811115612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614101565b60405180910390fd5b5b5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661210e57600c546120c183611068565b826120cc91906136ef565b111561210d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121049061416d565b60405180910390fd5b5b5b600081036121285761212383836000612746565b612548565b600061213330611068565b9050600060095482101590508080156121595750601160009054906101000a900460ff16155b80156121715750601160019054906101000a900460ff165b80156121c65750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561221c5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122725750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122c5576001601160006101000a81548160ff021916908315150217905550600060155411156122a9576122a86009546129bc565b5b6000601160006101000a81548160ff0219169083151502179055505b6000601160009054906101000a900460ff16159050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061237b5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561238557600090505b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156124295750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561243357600090505b8015612539576000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156124ae5760646015548661249d9190613843565b6124a791906141bc565b905061251e565b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561251d576064601454866125109190613843565b61251a91906141bc565b90505b5b808561252a91906141ed565b9450612537873083612746565b505b612544868686612746565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c90614293565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac90613ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90613f51565b60405180910390fd5b61282f838383612ab3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614325565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129a39190612f42565b60405180910390a36129b6848484612ab8565b50505050565b60008190506129ca81612abd565b600047905060008190506000811115612aad576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612a2590613619565b60006040518083038185875af1925050503d8060008114612a62576040519150601f19603f3d011682016040523d82523d6000602084013e612a67565b606091505b5050905080612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906136a0565b60405180910390fd5b505b50505050565b505050565b505050565b6000600267ffffffffffffffff811115612ada57612ad96130c2565b5b604051908082528060200260200182016040528015612b085781602001602082028036833780820191505090505b5090503081600081518110612b2057612b1f61392f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612beb919061435a565b81600181518110612bff57612bfe61392f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c6630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a08565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612cca959493929190614448565b600060405180830381600087803b158015612ce457600080fd5b505af1158015612cf8573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d3a578082015181840152602081019050612d1f565b83811115612d49576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d6b82612d00565b612d758185612d0b565b9350612d85818560208601612d1c565b612d8e81612d4f565b840191505092915050565b60006020820190508181036000830152612db38184612d60565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612de281612dcf565b8114612ded57600080fd5b50565b600081359050612dff81612dd9565b92915050565b600060208284031215612e1b57612e1a612dc5565b5b6000612e2984828501612df0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5d82612e32565b9050919050565b612e6d81612e52565b8114612e7857600080fd5b50565b600081359050612e8a81612e64565b92915050565b60008060408385031215612ea757612ea6612dc5565b5b6000612eb585828601612e7b565b9250506020612ec685828601612df0565b9150509250929050565b60008115159050919050565b612ee581612ed0565b82525050565b6000602082019050612f006000830184612edc565b92915050565b600060208284031215612f1c57612f1b612dc5565b5b6000612f2a84828501612e7b565b91505092915050565b612f3c81612dcf565b82525050565b6000602082019050612f576000830184612f33565b92915050565b600080600060608486031215612f7657612f75612dc5565b5b6000612f8486828701612e7b565b9350506020612f9586828701612e7b565b9250506040612fa686828701612df0565b9150509250925092565b600060ff82169050919050565b612fc681612fb0565b82525050565b6000602082019050612fe16000830184612fbd565b92915050565b612ff081612ed0565b8114612ffb57600080fd5b50565b60008135905061300d81612fe7565b92915050565b6000806040838503121561302a57613029612dc5565b5b600061303885828601612e7b565b925050602061304985828601612ffe565b9150509250929050565b6000806040838503121561306a57613069612dc5565b5b600061307885828601612df0565b925050602061308985828601612df0565b9150509250929050565b61309c81612e52565b82525050565b60006020820190506130b76000830184613093565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130fa82612d4f565b810181811067ffffffffffffffff82111715613119576131186130c2565b5b80604052505050565b600061312c612dbb565b905061313882826130f1565b919050565b600067ffffffffffffffff821115613158576131576130c2565b5b602082029050602081019050919050565b600080fd5b600061318161317c8461313d565b613122565b905080838252602082019050602084028301858111156131a4576131a3613169565b5b835b818110156131cd57806131b98882612e7b565b8452602084019350506020810190506131a6565b5050509392505050565b600082601f8301126131ec576131eb6130bd565b5b81356131fc84826020860161316e565b91505092915050565b6000806040838503121561321c5761321b612dc5565b5b600083013567ffffffffffffffff81111561323a57613239612dca565b5b613246858286016131d7565b925050602061325785828601612ffe565b9150509250929050565b600080fd5b60008083601f84011261327c5761327b6130bd565b5b8235905067ffffffffffffffff81111561329957613298613261565b5b6020830191508360208202830111156132b5576132b4613169565b5b9250929050565b6000806000604084860312156132d5576132d4612dc5565b5b600084013567ffffffffffffffff8111156132f3576132f2612dca565b5b6132ff86828701613266565b9350935050602061331286828701612ffe565b9150509250925092565b6000806040838503121561333357613332612dc5565b5b600061334185828601612e7b565b925050602061335285828601612e7b565b9150509250929050565b60006020828403121561337257613371612dc5565b5b600061338084828501612ffe565b91505092915050565b6000819050919050565b60006133ae6133a96133a484612e32565b613389565b612e32565b9050919050565b60006133c082613393565b9050919050565b60006133d2826133b5565b9050919050565b6133e2816133c7565b82525050565b60006020820190506133fd60008301846133d9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061344a57607f821691505b60208210810361345d5761345c613403565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b6000613499601283612d0b565b91506134a482613463565b602082019050919050565b600060208201905081810360008301526134c88161348c565b9050919050565b6000815190506134de81612dd9565b92915050565b6000602082840312156134fa576134f9612dc5565b5b6000613508848285016134cf565b91505092915050565b60006040820190506135266000830185613093565b6135336020830184612f33565b9392505050565b60008151905061354981612fe7565b92915050565b60006020828403121561356557613564612dc5565b5b60006135738482850161353a565b91505092915050565b7f54726164696e6720656e61626c65640000000000000000000000000000000000600082015250565b60006135b2600f83612d0b565b91506135bd8261357c565b602082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b600081905092915050565b50565b60006136036000836135e8565b915061360e826135f3565b600082019050919050565b6000613624826135f6565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b600061368a602283612d0b565b91506136958261362e565b604082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136fa82612dcf565b915061370583612dcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373a576137396136c0565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b600061377b602083612d0b565b915061378682613745565b602082019050919050565b600060208201905081810360008301526137aa8161376e565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600061380d602383612d0b565b9150613818826137b1565b604082019050919050565b6000602082019050818103600083015261383c81613800565b9050919050565b600061384e82612dcf565b915061385983612dcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613892576138916136c0565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006138f9602583612d0b565b91506139048261389d565b604082019050919050565b60006020820190508181036000830152613928816138ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061396982612dcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361399b5761399a6136c0565b5b600182019050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000613a02602b83612d0b565b9150613a0d826139a6565b604082019050919050565b60006020820190508181036000830152613a31816139f5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a94602283612d0b565b9150613a9f82613a38565b604082019050919050565b60006020820190508181036000830152613ac381613a87565b9050919050565b600082825260208201905092915050565b6000819050919050565b613aee81612e52565b82525050565b6000613b008383613ae5565b60208301905092915050565b6000613b1b6020840184612e7b565b905092915050565b6000602082019050919050565b6000613b3c8385613aca565b9350613b4782613adb565b8060005b85811015613b8057613b5d8284613b0c565b613b678882613af4565b9750613b7283613b23565b925050600181019050613b4b565b5085925050509392505050565b60006040820190508181036000830152613ba8818587613b30565b9050613bb76020830184612edc565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c1b602683612d0b565b9150613c2682613bbf565b604082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c87602083612d0b565b9150613c9282613c51565b602082019050919050565b60006020820190508181036000830152613cb681613c7a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d19602483612d0b565b9150613d2482613cbd565b604082019050919050565b60006020820190508181036000830152613d4881613d0c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dab602283612d0b565b9150613db682613d4f565b604082019050919050565b60006020820190508181036000830152613dda81613d9e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613e17601d83612d0b565b9150613e2282613de1565b602082019050919050565b60006020820190508181036000830152613e4681613e0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ea9602583612d0b565b9150613eb482613e4d565b604082019050919050565b60006020820190508181036000830152613ed881613e9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f3b602383612d0b565b9150613f4682613edf565b604082019050919050565b60006020820190508181036000830152613f6a81613f2e565b9050919050565b7f4279652020426f74000000000000000000000000000000000000000000000000600082015250565b6000613fa7600883612d0b565b9150613fb282613f71565b602082019050919050565b60006020820190508181036000830152613fd681613f9a565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000614013601283612d0b565b915061401e82613fdd565b602082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b600061407f601f83612d0b565b915061408a82614049565b602082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b60006140eb601e83612d0b565b91506140f6826140b5565b602082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614157601b83612d0b565b915061416282614121565b602082019050919050565b600060208201905081810360008301526141868161414a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141c782612dcf565b91506141d283612dcf565b9250826141e2576141e161418d565b5b828204905092915050565b60006141f882612dcf565b915061420383612dcf565b925082821015614216576142156136c0565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b600061427d603883612d0b565b915061428882614221565b604082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061430f602683612d0b565b915061431a826142b3565b604082019050919050565b6000602082019050818103600083015261433e81614302565b9050919050565b60008151905061435481612e64565b92915050565b6000602082840312156143705761436f612dc5565b5b600061437e84828501614345565b91505092915050565b6000819050919050565b60006143ac6143a76143a284614387565b613389565b612dcf565b9050919050565b6143bc81614391565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006143f5826143c2565b6143ff8185613aca565b935061440a836143cd565b8060005b8381101561443b5781516144228882613af4565b975061442d836143dd565b92505060018101905061440e565b5085935050505092915050565b600060a08201905061445d6000830188612f33565b61446a60208301876143b3565b818103604083015261447c81866143ea565b905061448b6060830185613093565b6144986080830184612f33565b969550505050505056fea2646970667358221220bdb3b2ed2f51059df87fef86374217788e259df6c51e49c9f137d4d4b08251be64736f6c634300080f00330000000000000000000000002652ed8595fa2c2b10d8368fe59dce6192d3c92d

Deployed Bytecode

0x60806040526004361061028c5760003560e01c80638da5cb5b1161015a578063c0246668116100c1578063e01af92c1161007a578063e01af92c146109d7578063e2f4560514610a00578063f2fde38b14610a2b578063f66895a314610a54578063f887ea4014610a7f578063f8b45b0514610aaa57610293565b8063c0246668146108cd578063c18bc195146108f6578063c492f0461461091f578063c851cc3214610948578063d2fcc00114610971578063dd62ed3e1461099a57610293565b8063a8aa1b3111610113578063a8aa1b3114610799578063a9059cbb146107c4578063abb8105214610801578063afa4f3b21461083e578063b62496f514610867578063b83b297f146108a457610293565b80638da5cb5b146106895780638ea5220f146106b457806395d89b41146106df5780639a7a23d61461070a578063a3ca847d14610733578063a457c2d71461075c57610293565b8063342aa8b5116101fe5780636ddd1713116101b75780636ddd17131461058b57806370a08231146105b6578063715018a6146105f357806379b447bd1461060a578063864701a51461063357806388e765ff1461065e57610293565b8063342aa8b514610467578063395093511461049057806346469afb146104cd5780634ada218b146104f85780634fbee1931461052357806366d602ae1461056057610293565b806312b77e8a1161025057806312b77e8a1461036957806318160ddd146103805780631bff7898146103ab5780631f53ac02146103d657806323b872dd146103ff578063313ce5671461043c57610293565b806306fdde03146102985780630940bbc7146102c3578063095ea7b3146102ec5780630a78097d146103295780630bd05b691461035257610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610ad5565b6040516102ba9190612d99565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612e05565b610b67565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612e90565b610bdb565b6040516103209190612eeb565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612f06565b610bfe565b005b34801561035e57600080fd5b50610367610d08565b005b34801561037557600080fd5b5061037e610d7d565b005b34801561038c57600080fd5b50610395610e56565b6040516103a29190612f42565b60405180910390f35b3480156103b757600080fd5b506103c0610e60565b6040516103cd9190612f42565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612f06565b610e66565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f5d565b610eb2565b6040516104339190612eeb565b60405180910390f35b34801561044857600080fd5b50610451610ee1565b60405161045e9190612fcc565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613013565b610eea565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612e90565b610fa9565b6040516104c49190612eeb565b60405180910390f35b3480156104d957600080fd5b506104e2610fe0565b6040516104ef9190612f42565b60405180910390f35b34801561050457600080fd5b5061050d610fe6565b60405161051a9190612eeb565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612f06565b610ff9565b6040516105579190612eeb565b60405180910390f35b34801561056c57600080fd5b5061057561104f565b6040516105829190612f42565b60405180910390f35b34801561059757600080fd5b506105a0611055565b6040516105ad9190612eeb565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d89190612f06565b611068565b6040516105ea9190612f42565b60405180910390f35b3480156105ff57600080fd5b506106086110b0565b005b34801561061657600080fd5b50610631600480360381019061062c9190613053565b6110c4565b005b34801561063f57600080fd5b50610648611190565b6040516106559190612f42565b60405180910390f35b34801561066a57600080fd5b5061067361119c565b6040516106809190612f42565b60405180910390f35b34801561069557600080fd5b5061069e6111a2565b6040516106ab91906130a2565b60405180910390f35b3480156106c057600080fd5b506106c96111cc565b6040516106d691906130a2565b60405180910390f35b3480156106eb57600080fd5b506106f46111f2565b6040516107019190612d99565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190613013565b611284565b005b34801561073f57600080fd5b5061075a60048036038101906107559190612e05565b61129a565b005b34801561076857600080fd5b50610783600480360381019061077e9190612e90565b61130e565b6040516107909190612eeb565b60405180910390f35b3480156107a557600080fd5b506107ae611385565b6040516107bb91906130a2565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190612e90565b6113ab565b6040516107f89190612eeb565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612f06565b6113ce565b6040516108359190612eeb565b60405180910390f35b34801561084a57600080fd5b5061086560048036038101906108609190612e05565b6113ee565b005b34801561087357600080fd5b5061088e60048036038101906108899190612f06565b611413565b60405161089b9190612eeb565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190613205565b611433565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190613013565b6114d0565b005b34801561090257600080fd5b5061091d60048036038101906109189190612e05565b611613565b005b34801561092b57600080fd5b50610946600480360381019061094191906132bc565b61167e565b005b34801561095457600080fd5b5061096f600480360381019061096a9190612f06565b611766565b005b34801561097d57600080fd5b5061099860048036038101906109939190613013565b6117b2565b005b3480156109a657600080fd5b506109c160048036038101906109bc919061331c565b611815565b6040516109ce9190612f42565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f9919061335c565b61189c565b005b348015610a0c57600080fd5b50610a156118c1565b604051610a229190612f42565b60405180910390f35b348015610a3757600080fd5b50610a526004803603810190610a4d9190612f06565b6118c7565b005b348015610a6057600080fd5b50610a6961194a565b604051610a769190612f42565b60405180910390f35b348015610a8b57600080fd5b50610a94611956565b604051610aa191906133e8565b60405180910390f35b348015610ab657600080fd5b50610abf61197c565b604051610acc9190612f42565b60405180910390f35b606060038054610ae490613432565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1090613432565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b5050505050905090565b610b6f611982565b6014811115610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa906134af565b60405180910390fd5b6040518060200160405280828152506013600082015181600001559050508060158190555050565b600080610be6611a00565b9050610bf3818585611a08565b600191505092915050565b610c06611982565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610c2a6111a2565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c6391906130a2565b602060405180830381865afa158015610c80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca491906134e4565b6040518363ffffffff1660e01b8152600401610cc1929190613511565b6020604051808303816000875af1158015610ce0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d04919061354f565b5050565b610d10611982565b601160029054906101000a900460ff1615610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906135c8565b60405180910390fd5b6001601160026101000a81548160ff021916908315150217905550565b610d85611982565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610dcd90613619565b60006040518083038185875af1925050503d8060008114610e0a576040519150601f19603f3d011682016040523d82523d6000602084013e610e0f565b606091505b5050905080610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906136a0565b60405180910390fd5b50565b6000600254905090565b60155481565b610e6e611982565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ebd611a00565b9050610eca858285611bd1565b610ed5858585611c5d565b60019150509392505050565b60006012905090565b610ef2611982565b801515600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503610f4e57600080fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610fb4611a00565b9050610fd5818585610fc68589611815565b610fd091906136ef565b611a08565b600191505092915050565b60145481565b601160029054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b601160019054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110b8611982565b6110c2600061254d565b565b6110cc611982565b620f4240821015611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613791565b60405180910390fd5b6207a120811015611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f90613823565b60405180910390fd5b670de0b6b3a76400008261116c9190613843565b600a81905550670de0b6b3a7640000816111869190613843565b600b819055505050565b60128060000154905081565b600a5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461120190613432565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90613432565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050905090565b61128c611982565b6112968282612613565b5050565b6112a2611982565b60148111156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906134af565b60405180910390fd5b6040518060200160405280828152506012600082015181600001559050508060148190555050565b600080611319611a00565b905060006113278286611815565b90508381101561136c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113639061390f565b60405180910390fd5b6113798286868403611a08565b60019250505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806113b6611a00565b90506113c3818585611c5d565b600191505092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b6113f6611982565b670de0b6b3a76400008161140a9190613843565b60098190555050565b60106020528060005260406000206000915054906101000a900460ff1681565b61143b611982565b60005b82518110156114cb5781600d600085848151811061145f5761145e61392f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806114c39061395e565b91505061143e565b505050565b6114d8611982565b801515600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150361156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613a18565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116079190612eeb565b60405180910390a25050565b61161b611982565b620f4240811015611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613aaa565b60405180910390fd5b670de0b6b3a7640000816116759190613843565b600c8190555050565b611686611982565b60005b838390508110156117255781600e60008686858181106116ac576116ab61392f565b5b90506020020160208101906116c19190612f06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061171d9061395e565b915050611689565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b3583838360405161175993929190613b8d565b60405180910390a1505050565b61176e611982565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117ba611982565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118a4611982565b80601160016101000a81548160ff02191690831515021790555050565b60095481565b6118cf611982565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590613c31565b60405180910390fd5b6119478161254d565b50565b60138060000154905081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b61198a611a00565b73ffffffffffffffffffffffffffffffffffffffff166119a86111a2565b73ffffffffffffffffffffffffffffffffffffffff16146119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590613c9d565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90613d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90613dc1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611bc49190612f42565b60405180910390a3505050565b6000611bdd8484611815565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c575781811015611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613e2d565b60405180910390fd5b611c568484848403611a08565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613f51565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ddf5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613fbd565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611ec25750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611edb5750601160009054906101000a900460ff16155b1561210f57601160029054906101000a900460ff16611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690614029565b60405180910390fd5b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fcb57600b54811115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90614095565b60405180910390fd5b612064565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561206357600a54811115612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990614101565b60405180910390fd5b5b5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661210e57600c546120c183611068565b826120cc91906136ef565b111561210d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121049061416d565b60405180910390fd5b5b5b600081036121285761212383836000612746565b612548565b600061213330611068565b9050600060095482101590508080156121595750601160009054906101000a900460ff16155b80156121715750601160019054906101000a900460ff165b80156121c65750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561221c5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122725750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156122c5576001601160006101000a81548160ff021916908315150217905550600060155411156122a9576122a86009546129bc565b5b6000601160006101000a81548160ff0219169083151502179055505b6000601160009054906101000a900460ff16159050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061237b5750600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561238557600090505b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156124295750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561243357600090505b8015612539576000601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156124ae5760646015548661249d9190613843565b6124a791906141bc565b905061251e565b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561251d576064601454866125109190613843565b61251a91906141bc565b90505b5b808561252a91906141ed565b9450612537873083612746565b505b612544868686612746565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c90614293565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac90613ebf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281b90613f51565b60405180910390fd5b61282f838383612ab3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614325565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129a39190612f42565b60405180910390a36129b6848484612ab8565b50505050565b60008190506129ca81612abd565b600047905060008190506000811115612aad576000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612a2590613619565b60006040518083038185875af1925050503d8060008114612a62576040519150601f19603f3d011682016040523d82523d6000602084013e612a67565b606091505b5050905080612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906136a0565b60405180910390fd5b505b50505050565b505050565b505050565b6000600267ffffffffffffffff811115612ada57612ad96130c2565b5b604051908082528060200260200182016040528015612b085781602001602082028036833780820191505090505b5090503081600081518110612b2057612b1f61392f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bc7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612beb919061435a565b81600181518110612bff57612bfe61392f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c6630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a08565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612cca959493929190614448565b600060405180830381600087803b158015612ce457600080fd5b505af1158015612cf8573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d3a578082015181840152602081019050612d1f565b83811115612d49576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d6b82612d00565b612d758185612d0b565b9350612d85818560208601612d1c565b612d8e81612d4f565b840191505092915050565b60006020820190508181036000830152612db38184612d60565b905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612de281612dcf565b8114612ded57600080fd5b50565b600081359050612dff81612dd9565b92915050565b600060208284031215612e1b57612e1a612dc5565b5b6000612e2984828501612df0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5d82612e32565b9050919050565b612e6d81612e52565b8114612e7857600080fd5b50565b600081359050612e8a81612e64565b92915050565b60008060408385031215612ea757612ea6612dc5565b5b6000612eb585828601612e7b565b9250506020612ec685828601612df0565b9150509250929050565b60008115159050919050565b612ee581612ed0565b82525050565b6000602082019050612f006000830184612edc565b92915050565b600060208284031215612f1c57612f1b612dc5565b5b6000612f2a84828501612e7b565b91505092915050565b612f3c81612dcf565b82525050565b6000602082019050612f576000830184612f33565b92915050565b600080600060608486031215612f7657612f75612dc5565b5b6000612f8486828701612e7b565b9350506020612f9586828701612e7b565b9250506040612fa686828701612df0565b9150509250925092565b600060ff82169050919050565b612fc681612fb0565b82525050565b6000602082019050612fe16000830184612fbd565b92915050565b612ff081612ed0565b8114612ffb57600080fd5b50565b60008135905061300d81612fe7565b92915050565b6000806040838503121561302a57613029612dc5565b5b600061303885828601612e7b565b925050602061304985828601612ffe565b9150509250929050565b6000806040838503121561306a57613069612dc5565b5b600061307885828601612df0565b925050602061308985828601612df0565b9150509250929050565b61309c81612e52565b82525050565b60006020820190506130b76000830184613093565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130fa82612d4f565b810181811067ffffffffffffffff82111715613119576131186130c2565b5b80604052505050565b600061312c612dbb565b905061313882826130f1565b919050565b600067ffffffffffffffff821115613158576131576130c2565b5b602082029050602081019050919050565b600080fd5b600061318161317c8461313d565b613122565b905080838252602082019050602084028301858111156131a4576131a3613169565b5b835b818110156131cd57806131b98882612e7b565b8452602084019350506020810190506131a6565b5050509392505050565b600082601f8301126131ec576131eb6130bd565b5b81356131fc84826020860161316e565b91505092915050565b6000806040838503121561321c5761321b612dc5565b5b600083013567ffffffffffffffff81111561323a57613239612dca565b5b613246858286016131d7565b925050602061325785828601612ffe565b9150509250929050565b600080fd5b60008083601f84011261327c5761327b6130bd565b5b8235905067ffffffffffffffff81111561329957613298613261565b5b6020830191508360208202830111156132b5576132b4613169565b5b9250929050565b6000806000604084860312156132d5576132d4612dc5565b5b600084013567ffffffffffffffff8111156132f3576132f2612dca565b5b6132ff86828701613266565b9350935050602061331286828701612ffe565b9150509250925092565b6000806040838503121561333357613332612dc5565b5b600061334185828601612e7b565b925050602061335285828601612e7b565b9150509250929050565b60006020828403121561337257613371612dc5565b5b600061338084828501612ffe565b91505092915050565b6000819050919050565b60006133ae6133a96133a484612e32565b613389565b612e32565b9050919050565b60006133c082613393565b9050919050565b60006133d2826133b5565b9050919050565b6133e2816133c7565b82525050565b60006020820190506133fd60008301846133d9565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061344a57607f821691505b60208210810361345d5761345c613403565b5b50919050565b7f466565206d757374206265203c3d203230250000000000000000000000000000600082015250565b6000613499601283612d0b565b91506134a482613463565b602082019050919050565b600060208201905081810360008301526134c88161348c565b9050919050565b6000815190506134de81612dd9565b92915050565b6000602082840312156134fa576134f9612dc5565b5b6000613508848285016134cf565b91505092915050565b60006040820190506135266000830185613093565b6135336020830184612f33565b9392505050565b60008151905061354981612fe7565b92915050565b60006020828403121561356557613564612dc5565b5b60006135738482850161353a565b91505092915050565b7f54726164696e6720656e61626c65640000000000000000000000000000000000600082015250565b60006135b2600f83612d0b565b91506135bd8261357c565b602082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b600081905092915050565b50565b60006136036000836135e8565b915061360e826135f3565b600082019050919050565b6000613624826135f6565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206465762077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b600061368a602283612d0b565b91506136958261362e565b604082019050919050565b600060208201905081810360008301526136b98161367d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136fa82612dcf565b915061370583612dcf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373a576137396136c0565b5b828201905092915050565b7f43616e6e6f7420736574206d6178627579206c6f776572207468616e20312520600082015250565b600061377b602083612d0b565b915061378682613745565b602082019050919050565b600060208201905081810360008301526137aa8161376e565b9050919050565b7f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60008201527f3525200000000000000000000000000000000000000000000000000000000000602082015250565b600061380d602383612d0b565b9150613818826137b1565b604082019050919050565b6000602082019050818103600083015261383c81613800565b9050919050565b600061384e82612dcf565b915061385983612dcf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613892576138916136c0565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006138f9602583612d0b565b91506139048261389d565b604082019050919050565b60006020820190508181036000830152613928816138ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061396982612dcf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361399b5761399a6136c0565b5b600182019050919050565b7f204163636f756e7420697320616c7265616479207468652076616c7565206f6660008201527f20276578636c7564656427000000000000000000000000000000000000000000602082015250565b6000613a02602b83612d0b565b9150613a0d826139a6565b604082019050919050565b60006020820190508181036000830152613a31816139f5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f3125000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a94602283612d0b565b9150613a9f82613a38565b604082019050919050565b60006020820190508181036000830152613ac381613a87565b9050919050565b600082825260208201905092915050565b6000819050919050565b613aee81612e52565b82525050565b6000613b008383613ae5565b60208301905092915050565b6000613b1b6020840184612e7b565b905092915050565b6000602082019050919050565b6000613b3c8385613aca565b9350613b4782613adb565b8060005b85811015613b8057613b5d8284613b0c565b613b678882613af4565b9750613b7283613b23565b925050600181019050613b4b565b5085925050509392505050565b60006040820190508181036000830152613ba8818587613b30565b9050613bb76020830184612edc565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c1b602683612d0b565b9150613c2682613bbf565b604082019050919050565b60006020820190508181036000830152613c4a81613c0e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c87602083612d0b565b9150613c9282613c51565b602082019050919050565b60006020820190508181036000830152613cb681613c7a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d19602483612d0b565b9150613d2482613cbd565b604082019050919050565b60006020820190508181036000830152613d4881613d0c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dab602283612d0b565b9150613db682613d4f565b604082019050919050565b60006020820190508181036000830152613dda81613d9e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613e17601d83612d0b565b9150613e2282613de1565b602082019050919050565b60006020820190508181036000830152613e4681613e0a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613ea9602583612d0b565b9150613eb482613e4d565b604082019050919050565b60006020820190508181036000830152613ed881613e9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613f3b602383612d0b565b9150613f4682613edf565b604082019050919050565b60006020820190508181036000830152613f6a81613f2e565b9050919050565b7f4279652020426f74000000000000000000000000000000000000000000000000600082015250565b6000613fa7600883612d0b565b9150613fb282613f71565b602082019050919050565b60006020820190508181036000830152613fd681613f9a565b9050919050565b7f54726164696e67206e6f74206163746976650000000000000000000000000000600082015250565b6000614013601283612d0b565b915061401e82613fdd565b602082019050919050565b6000602082019050818103600083015261404281614006565b9050919050565b7f596f752061726520657863656564696e67206d617853656c6c416d6f756e7400600082015250565b600061407f601f83612d0b565b915061408a82614049565b602082019050919050565b600060208201905081810360008301526140ae81614072565b9050919050565b7f596f752061726520657863656564696e67206d6178427579416d6f756e740000600082015250565b60006140eb601e83612d0b565b91506140f6826140b5565b602082019050919050565b6000602082019050818103600083015261411a816140de565b9050919050565b7f556e61626c6520746f20657863656564204d61782057616c6c65740000000000600082015250565b6000614157601b83612d0b565b915061416282614121565b602082019050919050565b600060208201905081810360008301526141868161414a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141c782612dcf565b91506141d283612dcf565b9250826141e2576141e161418d565b5b828204905092915050565b60006141f882612dcf565b915061420383612dcf565b925082821015614216576142156136c0565b5b828203905092915050565b7f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160008201527f6c72656164792073657420746f20746861742076616c75650000000000000000602082015250565b600061427d603883612d0b565b915061428882614221565b604082019050919050565b600060208201905081810360008301526142ac81614270565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061430f602683612d0b565b915061431a826142b3565b604082019050919050565b6000602082019050818103600083015261433e81614302565b9050919050565b60008151905061435481612e64565b92915050565b6000602082840312156143705761436f612dc5565b5b600061437e84828501614345565b91505092915050565b6000819050919050565b60006143ac6143a76143a284614387565b613389565b612dcf565b9050919050565b6143bc81614391565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b60006143f5826143c2565b6143ff8185613aca565b935061440a836143cd565b8060005b8381101561443b5781516144228882613af4565b975061442d836143dd565b92505060018101905061440e565b5085935050505092915050565b600060a08201905061445d6000830188612f33565b61446a60208301876143b3565b818103604083015261447c81866143ea565b905061448b6060830185613093565b6144986080830184612f33565b969550505050505056fea2646970667358221220bdb3b2ed2f51059df87fef86374217788e259df6c51e49c9f137d4d4b08251be64736f6c634300080f0033

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

0000000000000000000000002652ed8595fa2c2b10d8368fe59dce6192d3c92d

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002652ed8595fa2c2b10d8368fe59dce6192d3c92d


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.