ETH Price: $3,046.95 (+2.23%)
Gas: 1 Gwei

Token

Artificial Intelligence Finance (Ai-Fi)
 

Overview

Max Total Supply

100,000,000,000,000 Ai-Fi

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
391,916,219,243.676951019686897411 Ai-Fi

Value
$0.00
0xb56953b52a848bcbe4d0b45d8f50b13598a2d239
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:
AiFi

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AiFi.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

/**
 * @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);
}

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

/**
 * @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;
    }
}

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /** @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");

        _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);
    }

    /**
     * @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");

        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);
    }

    /**
     * @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);
            }
        }
    }

    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");

        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);
    }
}

contract AiFi is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

    bool inSwapAndLiquify;
    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) public bots;

    // TOKENOMICS START
    string private _name = "Artificial Intelligence Finance";
    string private _symbol = "Ai-Fi";
    uint8 private _decimals = 18;
    uint256 private _supply = 100_000_000_000_000;
    uint256 public taxBuyForLiquidity = 1;
    uint256 public taxBuyForMarketing = 4;
    uint256 public taxSellForLiquidity = 1;
    uint256 public taxSellForMarketing = 4;
    uint256 public maxTxAmount = 3_000_000_000_000 * 10**_decimals;
    uint256 public maxWalletAmount = 3_000_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToLiquidity = 1_000_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1_000_000_000_000 * 10**_decimals;
    address public marketingWallet = 0x6fB6729012B376Fa0fD6bEB69D6BcB2DE8069119;
    // TOKENOMICS END

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

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!bots[from], "ERC20: bot");

        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }
                uint256 marketingShare;
                uint256 liquidityShare;
                
                if (to == uniswapV2Pair) {
                    marketingShare = (amount * taxSellForMarketing) / 100;
                    liquidityShare = (amount * taxSellForLiquidity) / 100;
                } else {
                    marketingShare = (amount * taxBuyForMarketing) / 100;
                    liquidityShare = (amount * taxBuyForLiquidity) / 100;
                }
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare + liquidityShare));
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function updateBots(address _addr, bool _flag)
        external
        onlyOwner
        returns (bool)
    {
        bots[_addr] = _flag;
        return true;
    }

    function clearStuckETH() external {
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function clearStuckToken() external {
        require(balanceOf(address(this)) > 0, "Insufficient Balance");
        super._transfer(address(this), marketingWallet, balanceOf(address(this)));
        _marketingReserves = 0;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            marketingWallet,
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxBuyForLiquidity, uint256 _taxBuyForMarketing, uint256 _taxSellForLiquidity, uint256 _taxSellForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxBuyForLiquidity+_taxBuyForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        require((_taxSellForLiquidity+_taxSellForMarketing) <= 100, "ERC20: total tax must not be greater than 100");
        taxBuyForLiquidity = _taxBuyForLiquidity;
        taxBuyForMarketing = _taxBuyForMarketing;
        taxSellForLiquidity = _taxSellForLiquidity;
        taxSellForMarketing = _taxSellForMarketing;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount * 10**_decimals;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount * 10**_decimals;

        return true;
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuyForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxBuyForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxSellForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxSellForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"updateBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260006006556040518060400160405280601f81526020017f4172746966696369616c20496e74656c6c6967656e63652046696e616e636500815250600990816200004f919062000b51565b506040518060400160405280600581526020017f41692d4669000000000000000000000000000000000000000000000000000000815250600a908162000096919062000b51565b506012600b60006101000a81548160ff021916908360ff160217905550655af3107a4000600c556001600d556004600e556001600f556004601055600b60009054906101000a900460ff16600a620000ef919062000dc8565b6502ba7def300062000102919062000e19565b601155600b60009054906101000a900460ff16600a62000123919062000dc8565b6502ba7def300062000136919062000e19565b601255600b60009054906101000a900460ff16600a62000157919062000dc8565b64e8d4a5100062000169919062000e19565b601355600b60009054906101000a900460ff16600a6200018a919062000dc8565b64e8d4a510006200019c919062000e19565b601455736fb6729012b376fa0fd6beb69d6bcb2de8069119601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200020157600080fd5b5060098054620002119062000940565b80601f01602080910402602001604051908101604052809291908181526020018280546200023f9062000940565b8015620002905780601f10620002645761010080835404028352916020019162000290565b820191906000526020600020905b8154815290600101906020018083116200027257829003601f168201915b5050505050600a8054620002a49062000940565b80601f0160208091040260200160405190810160405280929190818152602001828054620002d29062000940565b8015620003235780601f10620002f75761010080835404028352916020019162000323565b820191906000526020600020905b8154815290600101906020018083116200030557829003601f168201915b5050505050816003908162000339919062000b51565b5080600490816200034b919062000b51565b5050506200036e62000362620006c460201b60201c565b620006cc60201b60201c565b620003ac33600b60009054906101000a900460ff16600a62000391919062000dc8565b600c54620003a0919062000e19565b6200079260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000411573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000437919062000ee4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200049f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c5919062000ee4565b6040518363ffffffff1660e01b8152600401620004e492919062000f27565b6020604051808303816000875af115801562000504573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200052a919062000ee4565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001040565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000804576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fb9062000fb5565b60405180910390fd5b806002600082825462000818919062000fd7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008cb919062001023565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095957607f821691505b6020821081036200096f576200096e62000911565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200099a565b620009e586836200099a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a3262000a2c62000a2684620009fd565b62000a07565b620009fd565b9050919050565b6000819050919050565b62000a4e8362000a11565b62000a6662000a5d8262000a39565b848454620009a7565b825550505050565b600090565b62000a7d62000a6e565b62000a8a81848462000a43565b505050565b5b8181101562000ab25762000aa660008262000a73565b60018101905062000a90565b5050565b601f82111562000b015762000acb8162000975565b62000ad6846200098a565b8101602085101562000ae6578190505b62000afe62000af5856200098a565b83018262000a8f565b50505b505050565b600082821c905092915050565b600062000b266000198460080262000b06565b1980831691505092915050565b600062000b41838362000b13565b9150826002028217905092915050565b62000b5c82620008d7565b67ffffffffffffffff81111562000b785762000b77620008e2565b5b62000b84825462000940565b62000b9182828562000ab6565b600060209050601f83116001811462000bc9576000841562000bb4578287015190505b62000bc0858262000b33565b86555062000c30565b601f19841662000bd98662000975565b60005b8281101562000c035784890151825560018201915060208501945060208101905062000bdc565b8683101562000c23578489015162000c1f601f89168262000b13565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cc65780860481111562000c9e5762000c9d62000c38565b5b600185161562000cae5780820291505b808102905062000cbe8562000c67565b945062000c7e565b94509492505050565b60008262000ce1576001905062000db4565b8162000cf1576000905062000db4565b816001811462000d0a576002811462000d155762000d4b565b600191505062000db4565b60ff84111562000d2a5762000d2962000c38565b5b8360020a91508482111562000d445762000d4362000c38565b5b5062000db4565b5060208310610133831016604e8410600b841016171562000d855782820a90508381111562000d7f5762000d7e62000c38565b5b62000db4565b62000d94848484600162000c74565b9250905081840481111562000dae5762000dad62000c38565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dd582620009fd565b915062000de28362000dbb565b925062000e117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ccf565b905092915050565b600062000e2682620009fd565b915062000e3383620009fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e6f5762000e6e62000c38565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000eac8262000e7f565b9050919050565b62000ebe8162000e9f565b811462000eca57600080fd5b50565b60008151905062000ede8162000eb3565b92915050565b60006020828403121562000efd5762000efc62000e7a565b5b600062000f0d8482850162000ecd565b91505092915050565b62000f218162000e9f565b82525050565b600060408201905062000f3e600083018562000f16565b62000f4d602083018462000f16565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f9d601f8362000f54565b915062000faa8262000f65565b602082019050919050565b6000602082019050818103600083015262000fd08162000f8e565b9050919050565b600062000fe482620009fd565b915062000ff183620009fd565b92508282019050808211156200100c576200100b62000c38565b5b92915050565b6200101d81620009fd565b82525050565b60006020820190506200103a600083018462001012565b92915050565b60805160a051613330620010ac6000396000818161088001528181611d8a01528181611e6b01528181611e9201528181611f710152611f980152600081816109ed0152818161137e015281816113d30152818161144101528181611688015261173701526133306000f3fe6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063bfd7928411610095578063e5c83f2c11610064578063e5c83f2c14610733578063e66c19c11461075e578063f2fde38b14610789578063f88de0c3146107b2576101e3565b8063bfd7928414610677578063d0e1d262146106b4578063d85a2828146106df578063dd62ed3e146106f6576101e3565b8063aa4bde28116100d1578063aa4bde28146105a7578063b60c30f9146105d2578063bb85c6d1146105fd578063bc7d8e5b1461063a576101e3565b80638da5cb5b146104d757806395d89b4114610502578063a457c2d71461052d578063a9059cbb1461056a576101e3565b8063395093511161017a578063715018a611610149578063715018a61461042d57806375f0a8741461044457806381bfdcca1461046f5780638c0b5e22146104ac576101e3565b8063395093511461034b57806349bd5a5e14610388578063677daa57146103b357806370a08231146103f0576101e3565b806318160ddd116101b657806318160ddd1461027b57806323b872dd146102a6578063313ce567146102e35780633902fa051461030e576101e3565b806306fdde03146101e8578063095ea7b3146102135780631694505e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107c9565b60405161020a9190612112565b60405180910390f35b34801561021f57600080fd5b5061023a600480360381019061023591906121cd565b61085b565b6040516102479190612228565b60405180910390f35b34801561025c57600080fd5b5061026561087e565b60405161027291906122a2565b60405180910390f35b34801561028757600080fd5b506102906108a2565b60405161029d91906122cc565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c891906122e7565b6108ac565b6040516102da9190612228565b60405180910390f35b3480156102ef57600080fd5b506102f86108db565b6040516103059190612356565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612371565b6108e4565b6040516103429190612228565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906121cd565b6109b4565b60405161037f9190612228565b60405180910390f35b34801561039457600080fd5b5061039d6109eb565b6040516103aa91906123e7565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612402565b610a0f565b6040516103e79190612228565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061242f565b610a4f565b60405161042491906122cc565b60405180910390f35b34801561043957600080fd5b50610442610a97565b005b34801561045057600080fd5b50610459610aab565b60405161046691906123e7565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612402565b610ad1565b6040516104a39190612228565b60405180910390f35b3480156104b857600080fd5b506104c1610b11565b6040516104ce91906122cc565b60405180910390f35b3480156104e357600080fd5b506104ec610b17565b6040516104f991906123e7565b60405180910390f35b34801561050e57600080fd5b50610517610b41565b6040516105249190612112565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906121cd565b610bd3565b6040516105619190612228565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906121cd565b610c4a565b60405161059e9190612228565b60405180910390f35b3480156105b357600080fd5b506105bc610c6d565b6040516105c991906122cc565b60405180910390f35b3480156105de57600080fd5b506105e7610c73565b6040516105f491906122cc565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f919061242f565b610c79565b6040516106319190612228565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612488565b610ccd565b60405161066e9190612228565b60405180910390f35b34801561068357600080fd5b5061069e6004803603810190610699919061242f565b610d38565b6040516106ab9190612228565b60405180910390f35b3480156106c057600080fd5b506106c9610d58565b6040516106d691906122cc565b60405180910390f35b3480156106eb57600080fd5b506106f4610d5e565b005b34801561070257600080fd5b5061071d600480360381019061071891906124c8565b610de8565b60405161072a91906122cc565b60405180910390f35b34801561073f57600080fd5b50610748610e6f565b60405161075591906122cc565b60405180910390f35b34801561076a57600080fd5b50610773610e75565b60405161078091906122cc565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab919061242f565b610e7b565b005b3480156107be57600080fd5b506107c7610efe565b005b6060600380546107d890612537565b80601f016020809104026020016040519081016040528092919081815260200182805461080490612537565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600080610866610f69565b9050610873818585610f71565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108b7610f69565b90506108c485828561113a565b6108cf8585856111c6565b60019150509392505050565b60006012905090565b60006108ee61186b565b606484866108fc9190612597565b111561093d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109349061263d565b60405180910390fd5b6064828461094b9190612597565b111561098c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109839061263d565b60405180910390fd5b84600d8190555083600e8190555082600f819055508160108190555060019050949350505050565b6000806109bf610f69565b90506109e08185856109d18589610de8565b6109db9190612597565b610f71565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610a1961186b565b600b60009054906101000a900460ff16600a610a359190612790565b82610a4091906127db565b60118190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9f61186b565b610aa960006118e9565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610adb61186b565b600b60009054906101000a900460ff16600a610af79190612790565b82610b0291906127db565b60128190555060019050919050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5090612537565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c90612537565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b600080610bde610f69565b90506000610bec8286610de8565b905083811015610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c28906128a7565b60405180910390fd5b610c3e8286868403610f71565b60019250505092915050565b600080610c55610f69565b9050610c628185856111c6565b600191505092915050565b60125481565b600e5481565b6000610c8361186b565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610cd761186b565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60105481565b6000610d6930610a4f565b11610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090612913565b60405180910390fd5b610dde30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dd930610a4f565b6119af565b6000600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b600d5481565b610e8361186b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906129a5565b60405180910390fd5b610efb816118e9565b50565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f66573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690612ac9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161112d91906122cc565b60405180910390a3505050565b60006111468484610de8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c057818110156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612b35565b60405180910390fd5b6111bf8484848403610f71565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90612bc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90612c59565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612cc5565b60405180910390fd5b8061133b84610a4f565b101561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390612d57565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561143a5750600560149054906101000a900460ff16155b1561185a577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146115915760006006546114a030610a4f565b6114aa9190612d77565b905060135481106114c1576114c0601354611c0f565b5b6014546006541061158f576114d7601454611cd0565b601454600660008282546114eb9190612d77565b925050819055506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490612df7565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116345750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561164157819050611849565b601154821115611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90612e89565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611732576012546116e584610a4f565b836116f09190612597565b1115611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890612f1b565b60405180910390fd5b5b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117c55760646010548561179891906127db565b6117a29190612f6a565b91506064600f54856117b491906127db565b6117be9190612f6a565b90506117fe565b6064600e54856117d591906127db565b6117df9190612f6a565b91506064600d54856117f191906127db565b6117fb9190612f6a565b90505b808261180a9190612597565b846118159190612d77565b925081600660008282546118299190612597565b92505081905550611846863083856118419190612597565b6119af565b50505b6118548484836119af565b50611866565b6118658383836119af565b5b505050565b611873610f69565b73ffffffffffffffffffffffffffffffffffffffff16611891610b17565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90612fe7565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612bc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490612c59565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a90612d57565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0191906122cc565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c399190612f6a565b905060008183611c499190612d77565b90506000479050611c5983611cd0565b60008147611c679190612d77565b9050611c738382611f50565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611ca693929190613007565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0857611d0761303e565b5b604051908082528060200260200182016040528015611d365781602001602082028036833780820191505090505b5090503081600081518110611d4e57611d4d61306d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1791906130b1565b81600181518110611e2b57611e2a61306d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e90307f000000000000000000000000000000000000000000000000000000000000000084610f71565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611edf9190612597565b6040518663ffffffff1660e01b8152600401611eff9594939291906131d7565b600060405180830381600087803b158015611f1957600080fd5b505af1158015611f2d573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611f96307f000000000000000000000000000000000000000000000000000000000000000084610f71565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161201d96959493929190613231565b60606040518083038185885af115801561203b573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061206091906132a7565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120bc5780820151818401526020810190506120a1565b60008484015250505050565b6000601f19601f8301169050919050565b60006120e482612082565b6120ee818561208d565b93506120fe81856020860161209e565b612107816120c8565b840191505092915050565b6000602082019050818103600083015261212c81846120d9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216482612139565b9050919050565b61217481612159565b811461217f57600080fd5b50565b6000813590506121918161216b565b92915050565b6000819050919050565b6121aa81612197565b81146121b557600080fd5b50565b6000813590506121c7816121a1565b92915050565b600080604083850312156121e4576121e3612134565b5b60006121f285828601612182565b9250506020612203858286016121b8565b9150509250929050565b60008115159050919050565b6122228161220d565b82525050565b600060208201905061223d6000830184612219565b92915050565b6000819050919050565b600061226861226361225e84612139565b612243565b612139565b9050919050565b600061227a8261224d565b9050919050565b600061228c8261226f565b9050919050565b61229c81612281565b82525050565b60006020820190506122b76000830184612293565b92915050565b6122c681612197565b82525050565b60006020820190506122e160008301846122bd565b92915050565b600080600060608486031215612300576122ff612134565b5b600061230e86828701612182565b935050602061231f86828701612182565b9250506040612330868287016121b8565b9150509250925092565b600060ff82169050919050565b6123508161233a565b82525050565b600060208201905061236b6000830184612347565b92915050565b6000806000806080858703121561238b5761238a612134565b5b6000612399878288016121b8565b94505060206123aa878288016121b8565b93505060406123bb878288016121b8565b92505060606123cc878288016121b8565b91505092959194509250565b6123e181612159565b82525050565b60006020820190506123fc60008301846123d8565b92915050565b60006020828403121561241857612417612134565b5b6000612426848285016121b8565b91505092915050565b60006020828403121561244557612444612134565b5b600061245384828501612182565b91505092915050565b6124658161220d565b811461247057600080fd5b50565b6000813590506124828161245c565b92915050565b6000806040838503121561249f5761249e612134565b5b60006124ad85828601612182565b92505060206124be85828601612473565b9150509250929050565b600080604083850312156124df576124de612134565b5b60006124ed85828601612182565b92505060206124fe85828601612182565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254f57607f821691505b60208210810361256257612561612508565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125a282612197565b91506125ad83612197565b92508282019050808211156125c5576125c4612568565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612627602d8361208d565b9150612632826125cb565b604082019050919050565b600060208201905081810360008301526126568161261a565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126b4578086048111156126905761268f612568565b5b600185161561269f5780820291505b80810290506126ad8561265d565b9450612674565b94509492505050565b6000826126cd5760019050612789565b816126db5760009050612789565b81600181146126f157600281146126fb5761272a565b6001915050612789565b60ff84111561270d5761270c612568565b5b8360020a91508482111561272457612723612568565b5b50612789565b5060208310610133831016604e8410600b841016171561275f5782820a90508381111561275a57612759612568565b5b612789565b61276c848484600161266a565b9250905081840481111561278357612782612568565b5b81810290505b9392505050565b600061279b82612197565b91506127a68361233a565b92506127d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126bd565b905092915050565b60006127e682612197565b91506127f183612197565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282a57612829612568565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061289160258361208d565b915061289c82612835565b604082019050919050565b600060208201905081810360008301526128c081612884565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128fd60148361208d565b9150612908826128c7565b602082019050919050565b6000602082019050818103600083015261292c816128f0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061298f60268361208d565b915061299a82612933565b604082019050919050565b600060208201905081810360008301526129be81612982565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a2160248361208d565b9150612a2c826129c5565b604082019050919050565b60006020820190508181036000830152612a5081612a14565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ab360228361208d565b9150612abe82612a57565b604082019050919050565b60006020820190508181036000830152612ae281612aa6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b1f601d8361208d565b9150612b2a82612ae9565b602082019050919050565b60006020820190508181036000830152612b4e81612b12565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612bb160258361208d565b9150612bbc82612b55565b604082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c4360238361208d565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f45524332303a20626f7400000000000000000000000000000000000000000000600082015250565b6000612caf600a8361208d565b9150612cba82612c79565b602082019050919050565b60006020820190508181036000830152612cde81612ca2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d4160268361208d565b9150612d4c82612ce5565b604082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000612d8282612197565b9150612d8d83612197565b9250828203905081811115612da557612da4612568565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612de160128361208d565b9150612dec82612dab565b602082019050919050565b60006020820190508181036000830152612e1081612dd4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612e7360398361208d565b9150612e7e82612e17565b604082019050919050565b60006020820190508181036000830152612ea281612e66565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612f0560368361208d565b9150612f1082612ea9565b604082019050919050565b60006020820190508181036000830152612f3481612ef8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f7582612197565b9150612f8083612197565b925082612f9057612f8f612f3b565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fd160208361208d565b9150612fdc82612f9b565b602082019050919050565b6000602082019050818103600083015261300081612fc4565b9050919050565b600060608201905061301c60008301866122bd565b61302960208301856122bd565b61303660408301846122bd565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506130ab8161216b565b92915050565b6000602082840312156130c7576130c6612134565b5b60006130d58482850161309c565b91505092915050565b6000819050919050565b60006131036130fe6130f9846130de565b612243565b612197565b9050919050565b613113816130e8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314e81612159565b82525050565b60006131608383613145565b60208301905092915050565b6000602082019050919050565b600061318482613119565b61318e8185613124565b935061319983613135565b8060005b838110156131ca5781516131b18882613154565b97506131bc8361316c565b92505060018101905061319d565b5085935050505092915050565b600060a0820190506131ec60008301886122bd565b6131f9602083018761310a565b818103604083015261320b8186613179565b905061321a60608301856123d8565b61322760808301846122bd565b9695505050505050565b600060c08201905061324660008301896123d8565b61325360208301886122bd565b613260604083018761310a565b61326d606083018661310a565b61327a60808301856123d8565b61328760a08301846122bd565b979650505050505050565b6000815190506132a1816121a1565b92915050565b6000806000606084860312156132c0576132bf612134565b5b60006132ce86828701613292565b93505060206132df86828701613292565b92505060406132f086828701613292565b915050925092509256fea26469706673582212206d7b6b9dd0844b161da8962e00752f33daae69a9929208937a153506cadc884d64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063bfd7928411610095578063e5c83f2c11610064578063e5c83f2c14610733578063e66c19c11461075e578063f2fde38b14610789578063f88de0c3146107b2576101e3565b8063bfd7928414610677578063d0e1d262146106b4578063d85a2828146106df578063dd62ed3e146106f6576101e3565b8063aa4bde28116100d1578063aa4bde28146105a7578063b60c30f9146105d2578063bb85c6d1146105fd578063bc7d8e5b1461063a576101e3565b80638da5cb5b146104d757806395d89b4114610502578063a457c2d71461052d578063a9059cbb1461056a576101e3565b8063395093511161017a578063715018a611610149578063715018a61461042d57806375f0a8741461044457806381bfdcca1461046f5780638c0b5e22146104ac576101e3565b8063395093511461034b57806349bd5a5e14610388578063677daa57146103b357806370a08231146103f0576101e3565b806318160ddd116101b657806318160ddd1461027b57806323b872dd146102a6578063313ce567146102e35780633902fa051461030e576101e3565b806306fdde03146101e8578063095ea7b3146102135780631694505e14610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6107c9565b60405161020a9190612112565b60405180910390f35b34801561021f57600080fd5b5061023a600480360381019061023591906121cd565b61085b565b6040516102479190612228565b60405180910390f35b34801561025c57600080fd5b5061026561087e565b60405161027291906122a2565b60405180910390f35b34801561028757600080fd5b506102906108a2565b60405161029d91906122cc565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c891906122e7565b6108ac565b6040516102da9190612228565b60405180910390f35b3480156102ef57600080fd5b506102f86108db565b6040516103059190612356565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190612371565b6108e4565b6040516103429190612228565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d91906121cd565b6109b4565b60405161037f9190612228565b60405180910390f35b34801561039457600080fd5b5061039d6109eb565b6040516103aa91906123e7565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612402565b610a0f565b6040516103e79190612228565b60405180910390f35b3480156103fc57600080fd5b506104176004803603810190610412919061242f565b610a4f565b60405161042491906122cc565b60405180910390f35b34801561043957600080fd5b50610442610a97565b005b34801561045057600080fd5b50610459610aab565b60405161046691906123e7565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190612402565b610ad1565b6040516104a39190612228565b60405180910390f35b3480156104b857600080fd5b506104c1610b11565b6040516104ce91906122cc565b60405180910390f35b3480156104e357600080fd5b506104ec610b17565b6040516104f991906123e7565b60405180910390f35b34801561050e57600080fd5b50610517610b41565b6040516105249190612112565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906121cd565b610bd3565b6040516105619190612228565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c91906121cd565b610c4a565b60405161059e9190612228565b60405180910390f35b3480156105b357600080fd5b506105bc610c6d565b6040516105c991906122cc565b60405180910390f35b3480156105de57600080fd5b506105e7610c73565b6040516105f491906122cc565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f919061242f565b610c79565b6040516106319190612228565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612488565b610ccd565b60405161066e9190612228565b60405180910390f35b34801561068357600080fd5b5061069e6004803603810190610699919061242f565b610d38565b6040516106ab9190612228565b60405180910390f35b3480156106c057600080fd5b506106c9610d58565b6040516106d691906122cc565b60405180910390f35b3480156106eb57600080fd5b506106f4610d5e565b005b34801561070257600080fd5b5061071d600480360381019061071891906124c8565b610de8565b60405161072a91906122cc565b60405180910390f35b34801561073f57600080fd5b50610748610e6f565b60405161075591906122cc565b60405180910390f35b34801561076a57600080fd5b50610773610e75565b60405161078091906122cc565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab919061242f565b610e7b565b005b3480156107be57600080fd5b506107c7610efe565b005b6060600380546107d890612537565b80601f016020809104026020016040519081016040528092919081815260200182805461080490612537565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b600080610866610f69565b9050610873818585610f71565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806108b7610f69565b90506108c485828561113a565b6108cf8585856111c6565b60019150509392505050565b60006012905090565b60006108ee61186b565b606484866108fc9190612597565b111561093d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109349061263d565b60405180910390fd5b6064828461094b9190612597565b111561098c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109839061263d565b60405180910390fd5b84600d8190555083600e8190555082600f819055508160108190555060019050949350505050565b6000806109bf610f69565b90506109e08185856109d18589610de8565b6109db9190612597565b610f71565b600191505092915050565b7f000000000000000000000000e10e86dbec5933803aebfd195e95fd051a5657f181565b6000610a1961186b565b600b60009054906101000a900460ff16600a610a359190612790565b82610a4091906127db565b60118190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a9f61186b565b610aa960006118e9565b565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610adb61186b565b600b60009054906101000a900460ff16600a610af79190612790565b82610b0291906127db565b60128190555060019050919050565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5090612537565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7c90612537565b8015610bc95780601f10610b9e57610100808354040283529160200191610bc9565b820191906000526020600020905b815481529060010190602001808311610bac57829003601f168201915b5050505050905090565b600080610bde610f69565b90506000610bec8286610de8565b905083811015610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c28906128a7565b60405180910390fd5b610c3e8286868403610f71565b60019250505092915050565b600080610c55610f69565b9050610c628185856111c6565b600191505092915050565b60125481565b600e5481565b6000610c8361186b565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610cd761186b565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60105481565b6000610d6930610a4f565b11610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090612913565b60405180910390fd5b610dde30601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610dd930610a4f565b6119af565b6000600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b600d5481565b610e8361186b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee9906129a5565b60405180910390fd5b610efb816118e9565b50565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f66573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612a37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690612ac9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161112d91906122cc565b60405180910390a3505050565b60006111468484610de8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111c057818110156111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612b35565b60405180910390fd5b6111bf8484848403610f71565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90612bc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b90612c59565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612cc5565b60405180910390fd5b8061133b84610a4f565b101561137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390612d57565b60405180910390fd5b7f000000000000000000000000e10e86dbec5933803aebfd195e95fd051a5657f173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061142157507f000000000000000000000000e10e86dbec5933803aebfd195e95fd051a5657f173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561143a5750600560149054906101000a900460ff16155b1561185a577f000000000000000000000000e10e86dbec5933803aebfd195e95fd051a5657f173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146115915760006006546114a030610a4f565b6114aa9190612d77565b905060135481106114c1576114c0601354611c0f565b5b6014546006541061158f576114d7601454611cd0565b601454600660008282546114eb9190612d77565b925050819055506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505090508061158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490612df7565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116345750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561164157819050611849565b601154821115611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90612e89565b60405180910390fd5b7f000000000000000000000000e10e86dbec5933803aebfd195e95fd051a5657f173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611732576012546116e584610a4f565b836116f09190612597565b1115611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890612f1b565b60405180910390fd5b5b6000807f000000000000000000000000e10e86dbec5933803aebfd195e95fd051a5657f173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036117c55760646010548561179891906127db565b6117a29190612f6a565b91506064600f54856117b491906127db565b6117be9190612f6a565b90506117fe565b6064600e54856117d591906127db565b6117df9190612f6a565b91506064600d54856117f191906127db565b6117fb9190612f6a565b90505b808261180a9190612597565b846118159190612d77565b925081600660008282546118299190612597565b92505081905550611846863083856118419190612597565b6119af565b50505b6118548484836119af565b50611866565b6118658383836119af565b5b505050565b611873610f69565b73ffffffffffffffffffffffffffffffffffffffff16611891610b17565b73ffffffffffffffffffffffffffffffffffffffff16146118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90612fe7565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612bc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490612c59565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a90612d57565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0191906122cc565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611c399190612f6a565b905060008183611c499190612d77565b90506000479050611c5983611cd0565b60008147611c679190612d77565b9050611c738382611f50565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611ca693929190613007565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611d0857611d0761303e565b5b604051908082528060200260200182016040528015611d365781602001602082028036833780820191505090505b5090503081600081518110611d4e57611d4d61306d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611df3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1791906130b1565b81600181518110611e2b57611e2a61306d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f71565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611edf9190612597565b6040518663ffffffff1660e01b8152600401611eff9594939291906131d7565b600060405180830381600087803b158015611f1957600080fd5b505af1158015611f2d573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611f96307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f71565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161201d96959493929190613231565b60606040518083038185885af115801561203b573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061206091906132a7565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120bc5780820151818401526020810190506120a1565b60008484015250505050565b6000601f19601f8301169050919050565b60006120e482612082565b6120ee818561208d565b93506120fe81856020860161209e565b612107816120c8565b840191505092915050565b6000602082019050818103600083015261212c81846120d9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061216482612139565b9050919050565b61217481612159565b811461217f57600080fd5b50565b6000813590506121918161216b565b92915050565b6000819050919050565b6121aa81612197565b81146121b557600080fd5b50565b6000813590506121c7816121a1565b92915050565b600080604083850312156121e4576121e3612134565b5b60006121f285828601612182565b9250506020612203858286016121b8565b9150509250929050565b60008115159050919050565b6122228161220d565b82525050565b600060208201905061223d6000830184612219565b92915050565b6000819050919050565b600061226861226361225e84612139565b612243565b612139565b9050919050565b600061227a8261224d565b9050919050565b600061228c8261226f565b9050919050565b61229c81612281565b82525050565b60006020820190506122b76000830184612293565b92915050565b6122c681612197565b82525050565b60006020820190506122e160008301846122bd565b92915050565b600080600060608486031215612300576122ff612134565b5b600061230e86828701612182565b935050602061231f86828701612182565b9250506040612330868287016121b8565b9150509250925092565b600060ff82169050919050565b6123508161233a565b82525050565b600060208201905061236b6000830184612347565b92915050565b6000806000806080858703121561238b5761238a612134565b5b6000612399878288016121b8565b94505060206123aa878288016121b8565b93505060406123bb878288016121b8565b92505060606123cc878288016121b8565b91505092959194509250565b6123e181612159565b82525050565b60006020820190506123fc60008301846123d8565b92915050565b60006020828403121561241857612417612134565b5b6000612426848285016121b8565b91505092915050565b60006020828403121561244557612444612134565b5b600061245384828501612182565b91505092915050565b6124658161220d565b811461247057600080fd5b50565b6000813590506124828161245c565b92915050565b6000806040838503121561249f5761249e612134565b5b60006124ad85828601612182565b92505060206124be85828601612473565b9150509250929050565b600080604083850312156124df576124de612134565b5b60006124ed85828601612182565b92505060206124fe85828601612182565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061254f57607f821691505b60208210810361256257612561612508565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006125a282612197565b91506125ad83612197565b92508282019050808211156125c5576125c4612568565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000612627602d8361208d565b9150612632826125cb565b604082019050919050565b600060208201905081810360008301526126568161261a565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156126b4578086048111156126905761268f612568565b5b600185161561269f5780820291505b80810290506126ad8561265d565b9450612674565b94509492505050565b6000826126cd5760019050612789565b816126db5760009050612789565b81600181146126f157600281146126fb5761272a565b6001915050612789565b60ff84111561270d5761270c612568565b5b8360020a91508482111561272457612723612568565b5b50612789565b5060208310610133831016604e8410600b841016171561275f5782820a90508381111561275a57612759612568565b5b612789565b61276c848484600161266a565b9250905081840481111561278357612782612568565b5b81810290505b9392505050565b600061279b82612197565b91506127a68361233a565b92506127d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126bd565b905092915050565b60006127e682612197565b91506127f183612197565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561282a57612829612568565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061289160258361208d565b915061289c82612835565b604082019050919050565b600060208201905081810360008301526128c081612884565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006128fd60148361208d565b9150612908826128c7565b602082019050919050565b6000602082019050818103600083015261292c816128f0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061298f60268361208d565b915061299a82612933565b604082019050919050565b600060208201905081810360008301526129be81612982565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a2160248361208d565b9150612a2c826129c5565b604082019050919050565b60006020820190508181036000830152612a5081612a14565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ab360228361208d565b9150612abe82612a57565b604082019050919050565b60006020820190508181036000830152612ae281612aa6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b1f601d8361208d565b9150612b2a82612ae9565b602082019050919050565b60006020820190508181036000830152612b4e81612b12565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612bb160258361208d565b9150612bbc82612b55565b604082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c4360238361208d565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f45524332303a20626f7400000000000000000000000000000000000000000000600082015250565b6000612caf600a8361208d565b9150612cba82612c79565b602082019050919050565b60006020820190508181036000830152612cde81612ca2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d4160268361208d565b9150612d4c82612ce5565b604082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000612d8282612197565b9150612d8d83612197565b9250828203905081811115612da557612da4612568565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612de160128361208d565b9150612dec82612dab565b602082019050919050565b60006020820190508181036000830152612e1081612dd4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612e7360398361208d565b9150612e7e82612e17565b604082019050919050565b60006020820190508181036000830152612ea281612e66565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612f0560368361208d565b9150612f1082612ea9565b604082019050919050565b60006020820190508181036000830152612f3481612ef8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f7582612197565b9150612f8083612197565b925082612f9057612f8f612f3b565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fd160208361208d565b9150612fdc82612f9b565b602082019050919050565b6000602082019050818103600083015261300081612fc4565b9050919050565b600060608201905061301c60008301866122bd565b61302960208301856122bd565b61303660408301846122bd565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506130ab8161216b565b92915050565b6000602082840312156130c7576130c6612134565b5b60006130d58482850161309c565b91505092915050565b6000819050919050565b60006131036130fe6130f9846130de565b612243565b612197565b9050919050565b613113816130e8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61314e81612159565b82525050565b60006131608383613145565b60208301905092915050565b6000602082019050919050565b600061318482613119565b61318e8185613124565b935061319983613135565b8060005b838110156131ca5781516131b18882613154565b97506131bc8361316c565b92505060018101905061319d565b5085935050505092915050565b600060a0820190506131ec60008301886122bd565b6131f9602083018761310a565b818103604083015261320b8186613179565b905061321a60608301856123d8565b61322760808301846122bd565b9695505050505050565b600060c08201905061324660008301896123d8565b61325360208301886122bd565b613260604083018761310a565b61326d606083018661310a565b61327a60808301856123d8565b61328760a08301846122bd565b979650505050505050565b6000815190506132a1816121a1565b92915050565b6000806000606084860312156132c0576132bf612134565b5b60006132ce86828701613292565b93505060206132df86828701613292565b92505060406132f086828701613292565b915050925092509256fea26469706673582212206d7b6b9dd0844b161da8962e00752f33daae69a9929208937a153506cadc884d64736f6c63430008100033

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.