ETH Price: $3,385.60 (-1.51%)
Gas: 2 Gwei

Token

Elon Vs Mark Bet (BET)
 

Overview

Max Total Supply

1,000,000,000 BET

Holders

278

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
7 BET

Value
$0.00
0x4377A23bE09866D6DE448A48a934b551b9eac239
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:
ElonVsMarkBet

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ElonVsMarkBet.sol
/**
Welcome to the Elon Vs Mark Bet.

Website: https://elonvsmark-bet.com
Telegram: https://t.me/ElonvsMark_Bet
Twitter: https://twitter.com/ElonvsMark_Bet


*/

// 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 9;
    }

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

/**
 * @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 ElonVsMarkBet is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Elon Vs Mark Bet";
    string private _symbol = "BET";
    uint8 private _decimals = 9;
    uint256 private _supply = 1_000_000_000;
    uint256 public taxForLiquidity = 0;
    uint256 public taxForMarketing = 5;
    uint256 public maxTxAmount = 20_000_000 * 10 ** _decimals;
    uint256 public maxWalletAmount = 20_000_000 * 10 ** _decimals;
    address public marketingWallet = 0x2bb61783686F9F516DE68fcb59754265a147EC53;
    bool public tradingOpen = false;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private _numTokensSellToAddToLiquidity =
        2_000_000 * 10 ** _decimals;
    uint256 private _numTokensSellToAddToETH = 2_000_000 * 10 ** _decimals;
    bool inSwapAndLiquify;

    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(
            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"
                );
                require(tradingOpen, "Trading is not available");
                if (from == uniswapV2Pair) {
                    require(
                        (amount + balanceOf(to)) <= maxWalletAmount,
                        "ERC20: balance amount exceeded max wallet amount limit"
                    );
                }

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                uint256 liquidityShare = ((amount * taxForLiquidity) / 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 _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,
            owner(),
            block.timestamp
        );
    }

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

    function changeTaxForLiquidityAndMarketing(
        uint256 _taxForLiquidity,
        uint256 _taxForMarketing
    ) public onlyOwner returns (bool) {
        require(
            (_taxForLiquidity + _taxForMarketing) <= 100,
            "ERC20: total tax must not be greater than 100"
        );
        taxForLiquidity = _taxForLiquidity;
        taxForMarketing = _taxForMarketing;

        return true;
    }

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

        return true;
    }

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

        return true;
    }

    function openTrading() public onlyOwner {
        tradingOpen = 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":"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":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280601081526020017f456c6f6e205673204d61726b2042657400000000000000000000000000000000815250600690816200004a919062000b17565b506040518060400160405280600381526020017f42455400000000000000000000000000000000000000000000000000000000008152506007908162000091919062000b17565b50600960085f6101000a81548160ff021916908360ff160217905550633b9aca006009555f600a556005600b5560085f9054906101000a900460ff16600a620000db919062000d84565b6301312d00620000ec919062000dd4565b600c5560085f9054906101000a900460ff16600a6200010c919062000d84565b6301312d006200011d919062000dd4565b600d55732bb61783686f9f516de68fcb59754265a147ec53600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600e60146101000a81548160ff0219169083151502179055505f600f5560085f9054906101000a900460ff16600a620001af919062000d84565b621e8480620001bf919062000dd4565b60115560085f9054906101000a900460ff16600a620001df919062000d84565b621e8480620001ef919062000dd4565b601255348015620001fe575f80fd5b50600680546200020e9062000917565b80601f01602080910402602001604051908101604052809291908181526020018280546200023c9062000917565b80156200028b5780601f1062000261576101008083540402835291602001916200028b565b820191905f5260205f20905b8154815290600101906020018083116200026d57829003601f168201915b5050505050600780546200029f9062000917565b80601f0160208091040260200160405190810160405280929190818152602001828054620002cd9062000917565b80156200031c5780601f10620002f2576101008083540402835291602001916200031c565b820191905f5260205f20905b815481529060010190602001808311620002fe57829003601f168201915b5050505050816003908162000332919062000b17565b50806004908162000344919062000b17565b505050620003676200035b620006aa60201b60201c565b620006b160201b60201c565b620003a43360085f9054906101000a900460ff16600a62000389919062000d84565b60095462000398919062000dd4565b6200077460201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000406573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200042c919062000e83565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000492573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004b8919062000e83565b6040518363ffffffff1660e01b8152600401620004d792919062000ec4565b6020604051808303815f875af1158015620004f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200051a919062000e83565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600160105f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505062000fd3565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007dc9062000f4d565b60405180910390fd5b8060025f828254620007f8919062000f6d565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008a7919062000fb8565b60405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200092f57607f821691505b602082108103620009455762000944620008ea565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200096c565b620009b586836200096c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620009ff620009f9620009f384620009cd565b620009d6565b620009cd565b9050919050565b5f819050919050565b62000a1a83620009df565b62000a3262000a298262000a06565b84845462000978565b825550505050565b5f90565b62000a4862000a3a565b62000a5581848462000a0f565b505050565b5b8181101562000a7c5762000a705f8262000a3e565b60018101905062000a5b565b5050565b601f82111562000acb5762000a95816200094b565b62000aa0846200095d565b8101602085101562000ab0578190505b62000ac862000abf856200095d565b83018262000a5a565b50505b505050565b5f82821c905092915050565b5f62000aed5f198460080262000ad0565b1980831691505092915050565b5f62000b07838362000adc565b9150826002028217905092915050565b62000b2282620008b3565b67ffffffffffffffff81111562000b3e5762000b3d620008bd565b5b62000b4a825462000917565b62000b5782828562000a80565b5f60209050601f83116001811462000b8d575f841562000b78578287015190505b62000b84858262000afa565b86555062000bf3565b601f19841662000b9d866200094b565b5f5b8281101562000bc65784890151825560018201915060208501945060208101905062000b9f565b8683101562000be6578489015162000be2601f89168262000adc565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000c855780860481111562000c5d5762000c5c62000bfb565b5b600185161562000c6d5780820291505b808102905062000c7d8562000c28565b945062000c3d565b94509492505050565b5f8262000c9f576001905062000d71565b8162000cae575f905062000d71565b816001811462000cc7576002811462000cd25762000d08565b600191505062000d71565b60ff84111562000ce75762000ce662000bfb565b5b8360020a91508482111562000d015762000d0062000bfb565b5b5062000d71565b5060208310610133831016604e8410600b841016171562000d425782820a90508381111562000d3c5762000d3b62000bfb565b5b62000d71565b62000d51848484600162000c34565b9250905081840481111562000d6b5762000d6a62000bfb565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000d9082620009cd565b915062000d9d8362000d78565b925062000dcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c8e565b905092915050565b5f62000de082620009cd565b915062000ded83620009cd565b925082820262000dfd81620009cd565b9150828204841483151762000e175762000e1662000bfb565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e4d8262000e22565b9050919050565b62000e5f8162000e41565b811462000e6a575f80fd5b50565b5f8151905062000e7d8162000e54565b92915050565b5f6020828403121562000e9b5762000e9a62000e1e565b5b5f62000eaa8482850162000e6d565b91505092915050565b62000ebe8162000e41565b82525050565b5f60408201905062000ed95f83018562000eb3565b62000ee8602083018462000eb3565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f35601f8362000eef565b915062000f428262000eff565b602082019050919050565b5f6020820190508181035f83015262000f668162000f27565b9050919050565b5f62000f7982620009cd565b915062000f8683620009cd565b925082820190508082111562000fa15762000fa062000bfb565b5b92915050565b62000fb281620009cd565b82525050565b5f60208201905062000fcd5f83018462000fa7565b92915050565b60805160a051612bb5620010345f395f818161080101528181610fb50152818161100a01528181611077015261130101525f818161076801528181611703015281816117e20152818161180901528181611b350152611b5c0152612bb55ff3fe60806040526004361061019f575f3560e01c806381bfdcca116100eb578063af8af69011610089578063dd62ed3e11610063578063dd62ed3e146105fc578063f2fde38b14610638578063f345bd8514610660578063ffb54a991461068a576101a6565b8063af8af6901461056e578063bb85c6d1146105aa578063c9567bf9146105e6576101a6565b806395d89b41116100c557806395d89b41146104a2578063a457c2d7146104cc578063a9059cbb14610508578063aa4bde2814610544576101a6565b806381bfdcca146104125780638c0b5e221461044e5780638da5cb5b14610478576101a6565b80633950935111610158578063677daa5711610132578063677daa571461035a57806370a0823114610396578063715018a6146103d257806375f0a874146103e8576101a6565b806339509351146102ca57806349bd5a5e14610306578063527ffabd14610330576101a6565b806306fdde03146101aa578063095ea7b3146101d45780631694505e1461021057806318160ddd1461023a57806323b872dd14610264578063313ce567146102a0576101a6565b366101a657005b5f80fd5b3480156101b5575f80fd5b506101be6106b4565b6040516101cb9190611cb0565b60405180910390f35b3480156101df575f80fd5b506101fa60048036038101906101f59190611d61565b610744565b6040516102079190611db9565b60405180910390f35b34801561021b575f80fd5b50610224610766565b6040516102319190611e2d565b60405180910390f35b348015610245575f80fd5b5061024e61078a565b60405161025b9190611e55565b60405180910390f35b34801561026f575f80fd5b5061028a60048036038101906102859190611e6e565b610793565b6040516102979190611db9565b60405180910390f35b3480156102ab575f80fd5b506102b46107c1565b6040516102c19190611ed9565b60405180910390f35b3480156102d5575f80fd5b506102f060048036038101906102eb9190611d61565b6107c9565b6040516102fd9190611db9565b60405180910390f35b348015610311575f80fd5b5061031a6107ff565b6040516103279190611f01565b60405180910390f35b34801561033b575f80fd5b50610344610823565b6040516103519190611e55565b60405180910390f35b348015610365575f80fd5b50610380600480360381019061037b9190611f1a565b610829565b60405161038d9190611db9565b60405180910390f35b3480156103a1575f80fd5b506103bc60048036038101906103b79190611f45565b610842565b6040516103c99190611e55565b60405180910390f35b3480156103dd575f80fd5b506103e6610887565b005b3480156103f3575f80fd5b506103fc61089a565b6040516104099190611f01565b60405180910390f35b34801561041d575f80fd5b5061043860048036038101906104339190611f1a565b6108bf565b6040516104459190611db9565b60405180910390f35b348015610459575f80fd5b506104626108d8565b60405161046f9190611e55565b60405180910390f35b348015610483575f80fd5b5061048c6108de565b6040516104999190611f01565b60405180910390f35b3480156104ad575f80fd5b506104b6610906565b6040516104c39190611cb0565b60405180910390f35b3480156104d7575f80fd5b506104f260048036038101906104ed9190611d61565b610996565b6040516104ff9190611db9565b60405180910390f35b348015610513575f80fd5b5061052e60048036038101906105299190611d61565b610a0b565b60405161053b9190611db9565b60405180910390f35b34801561054f575f80fd5b50610558610a2d565b6040516105659190611e55565b60405180910390f35b348015610579575f80fd5b50610594600480360381019061058f9190611f70565b610a33565b6040516105a19190611db9565b60405180910390f35b3480156105b5575f80fd5b506105d060048036038101906105cb9190611f45565b610aa3565b6040516105dd9190611db9565b60405180910390f35b3480156105f1575f80fd5b506105fa610af5565b005b348015610607575f80fd5b50610622600480360381019061061d9190611fae565b610b1a565b60405161062f9190611e55565b60405180910390f35b348015610643575f80fd5b5061065e60048036038101906106599190611f45565b610b9c565b005b34801561066b575f80fd5b50610674610c1e565b6040516106819190611e55565b60405180910390f35b348015610695575f80fd5b5061069e610c24565b6040516106ab9190611db9565b60405180910390f35b6060600380546106c390612019565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90612019565b801561073a5780601f106107115761010080835404028352916020019161073a565b820191905f5260205f20905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b5f8061074e610c37565b905061075b818585610c3e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f8061079d610c37565b90506107aa858285610e01565b6107b5858585610e8c565b60019150509392505050565b5f6009905090565b5f806107d3610c37565b90506107f48185856107e58589610b1a565b6107ef9190612076565b610c3e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b5f610832611451565b81600c8190555060019050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61088f611451565b6108985f6114cf565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6108c8611451565b81600d8190555060019050919050565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091590612019565b80601f016020809104026020016040519081016040528092919081815260200182805461094190612019565b801561098c5780601f106109635761010080835404028352916020019161098c565b820191905f5260205f20905b81548152906001019060200180831161096f57829003601f168201915b5050505050905090565b5f806109a0610c37565b90505f6109ad8286610b1a565b9050838110156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990612119565b60405180910390fd5b6109ff8286868403610c3e565b60019250505092915050565b5f80610a15610c37565b9050610a22818585610e8c565b600191505092915050565b600d5481565b5f610a3c611451565b60648284610a4a9190612076565b1115610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a82906121a7565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b5f610aac611451565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610afd611451565b6001600e60146101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ba4611451565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990612235565b60405180910390fd5b610c1b816114cf565b50565b600a5481565b600e60149054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906122c3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612351565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df49190611e55565b60405180910390a3505050565b5f610e0c8484610b1a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e865781811015610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906123b9565b60405180910390fd5b610e858484848403610c3e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190612447565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f906124d5565b60405180910390fd5b80610f7284610842565b1015610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612563565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061105857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611070575060135f9054906101000a900460ff16155b15611440577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111c2575f600f546110d530610842565b6110df9190612581565b905060115481106110f6576110f5601154611592565b5b601254600f54106111c05761110c60125461164c565b601254600f5f82825461111f9190612581565b925050819055505f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050509050806111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b5906125fe565b60405180910390fd5b505b505b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061125e575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561126b5781905061142f565b600c548211156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a79061268c565b60405180910390fd5b600e60149054906101000a900460ff166112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906126f4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113ab57600d5461135e84610842565b836113699190612076565b11156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612782565b60405180910390fd5b5b5f6064600b54846113bc91906127a0565b6113c6919061280e565b90505f6064600a54856113d991906127a0565b6113e3919061280e565b905080826113f19190612076565b846113fc9190612581565b925081600f5f82825461140f9190612076565b9250508190555061142c863083856114279190612076565b6118bf565b50505b61143a8484836118bf565b5061144c565b61144b8383836118bf565b5b505050565b611459610c37565b73ffffffffffffffffffffffffffffffffffffffff166114776108de565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612888565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160135f6101000a81548160ff0219169083151502179055505f6002826115ba919061280e565b90505f81836115c99190612581565b90505f4790506115d88361164c565b5f81476115e59190612581565b90506115f18382611b15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611624939291906128a6565b60405180910390a1505050505f60135f6101000a81548160ff02191690831515021790555050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115611682576116816128db565b5b6040519080825280602002602001820160405280156116b05781602001602082028036833780820191505090505b50905030815f815181106116c7576116c6612908565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561176a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061178e9190612949565b816001815181106117a2576117a1612908565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611807307f000000000000000000000000000000000000000000000000000000000000000084610c3e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c426118559190612076565b6040518663ffffffff1660e01b8152600401611875959493929190612a64565b5f604051808303815f87803b15801561188c575f80fd5b505af115801561189e573d5f803e3d5ffd5b50505050505f60135f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490612447565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611992906124d5565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612563565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b079190611e55565b60405180910390a350505050565b600160135f6101000a81548160ff021916908315150217905550611b5a307f000000000000000000000000000000000000000000000000000000000000000084610c3e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80611ba36108de565b426040518863ffffffff1660e01b8152600401611bc596959493929190612abc565b60606040518083038185885af1158015611be1573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c069190612b2f565b5050505f60135f6101000a81548160ff0219169083151502179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c5d578082015181840152602081019050611c42565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c8282611c26565b611c8c8185611c30565b9350611c9c818560208601611c40565b611ca581611c68565b840191505092915050565b5f6020820190508181035f830152611cc88184611c78565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cfd82611cd4565b9050919050565b611d0d81611cf3565b8114611d17575f80fd5b50565b5f81359050611d2881611d04565b92915050565b5f819050919050565b611d4081611d2e565b8114611d4a575f80fd5b50565b5f81359050611d5b81611d37565b92915050565b5f8060408385031215611d7757611d76611cd0565b5b5f611d8485828601611d1a565b9250506020611d9585828601611d4d565b9150509250929050565b5f8115159050919050565b611db381611d9f565b82525050565b5f602082019050611dcc5f830184611daa565b92915050565b5f819050919050565b5f611df5611df0611deb84611cd4565b611dd2565b611cd4565b9050919050565b5f611e0682611ddb565b9050919050565b5f611e1782611dfc565b9050919050565b611e2781611e0d565b82525050565b5f602082019050611e405f830184611e1e565b92915050565b611e4f81611d2e565b82525050565b5f602082019050611e685f830184611e46565b92915050565b5f805f60608486031215611e8557611e84611cd0565b5b5f611e9286828701611d1a565b9350506020611ea386828701611d1a565b9250506040611eb486828701611d4d565b9150509250925092565b5f60ff82169050919050565b611ed381611ebe565b82525050565b5f602082019050611eec5f830184611eca565b92915050565b611efb81611cf3565b82525050565b5f602082019050611f145f830184611ef2565b92915050565b5f60208284031215611f2f57611f2e611cd0565b5b5f611f3c84828501611d4d565b91505092915050565b5f60208284031215611f5a57611f59611cd0565b5b5f611f6784828501611d1a565b91505092915050565b5f8060408385031215611f8657611f85611cd0565b5b5f611f9385828601611d4d565b9250506020611fa485828601611d4d565b9150509250929050565b5f8060408385031215611fc457611fc3611cd0565b5b5f611fd185828601611d1a565b9250506020611fe285828601611d1a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061203057607f821691505b60208210810361204357612042611fec565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61208082611d2e565b915061208b83611d2e565b92508282019050808211156120a3576120a2612049565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612103602583611c30565b915061210e826120a9565b604082019050919050565b5f6020820190508181035f830152612130816120f7565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f612191602d83611c30565b915061219c82612137565b604082019050919050565b5f6020820190508181035f8301526121be81612185565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61221f602683611c30565b915061222a826121c5565b604082019050919050565b5f6020820190508181035f83015261224c81612213565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6122ad602483611c30565b91506122b882612253565b604082019050919050565b5f6020820190508181035f8301526122da816122a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61233b602283611c30565b9150612346826122e1565b604082019050919050565b5f6020820190508181035f8301526123688161232f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6123a3601d83611c30565b91506123ae8261236f565b602082019050919050565b5f6020820190508181035f8301526123d081612397565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612431602583611c30565b915061243c826123d7565b604082019050919050565b5f6020820190508181035f83015261245e81612425565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6124bf602383611c30565b91506124ca82612465565b604082019050919050565b5f6020820190508181035f8301526124ec816124b3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61254d602683611c30565b9150612558826124f3565b604082019050919050565b5f6020820190508181035f83015261257a81612541565b9050919050565b5f61258b82611d2e565b915061259683611d2e565b92508282039050818111156125ae576125ad612049565b5b92915050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f6125e8601283611c30565b91506125f3826125b4565b602082019050919050565b5f6020820190508181035f830152612615816125dc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f612676603983611c30565b91506126818261261c565b604082019050919050565b5f6020820190508181035f8301526126a38161266a565b9050919050565b7f54726164696e67206973206e6f7420617661696c61626c6500000000000000005f82015250565b5f6126de601883611c30565b91506126e9826126aa565b602082019050919050565b5f6020820190508181035f83015261270b816126d2565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f61276c603683611c30565b915061277782612712565b604082019050919050565b5f6020820190508181035f83015261279981612760565b9050919050565b5f6127aa82611d2e565b91506127b583611d2e565b92508282026127c381611d2e565b915082820484148315176127da576127d9612049565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61281882611d2e565b915061282383611d2e565b925082612833576128326127e1565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612872602083611c30565b915061287d8261283e565b602082019050919050565b5f6020820190508181035f83015261289f81612866565b9050919050565b5f6060820190506128b95f830186611e46565b6128c66020830185611e46565b6128d36040830184611e46565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061294381611d04565b92915050565b5f6020828403121561295e5761295d611cd0565b5b5f61296b84828501612935565b91505092915050565b5f819050919050565b5f61299761299261298d84612974565b611dd2565b611d2e565b9050919050565b6129a78161297d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6129df81611cf3565b82525050565b5f6129f083836129d6565b60208301905092915050565b5f602082019050919050565b5f612a12826129ad565b612a1c81856129b7565b9350612a27836129c7565b805f5b83811015612a57578151612a3e88826129e5565b9750612a49836129fc565b925050600181019050612a2a565b5085935050505092915050565b5f60a082019050612a775f830188611e46565b612a84602083018761299e565b8181036040830152612a968186612a08565b9050612aa56060830185611ef2565b612ab26080830184611e46565b9695505050505050565b5f60c082019050612acf5f830189611ef2565b612adc6020830188611e46565b612ae9604083018761299e565b612af6606083018661299e565b612b036080830185611ef2565b612b1060a0830184611e46565b979650505050505050565b5f81519050612b2981611d37565b92915050565b5f805f60608486031215612b4657612b45611cd0565b5b5f612b5386828701612b1b565b9350506020612b6486828701612b1b565b9250506040612b7586828701612b1b565b915050925092509256fea264697066735822122095cab90d37d8996ae8338f250ba9fea20f679cffb88e51c014e5f71b56bd260964736f6c63430008140033

Deployed Bytecode

0x60806040526004361061019f575f3560e01c806381bfdcca116100eb578063af8af69011610089578063dd62ed3e11610063578063dd62ed3e146105fc578063f2fde38b14610638578063f345bd8514610660578063ffb54a991461068a576101a6565b8063af8af6901461056e578063bb85c6d1146105aa578063c9567bf9146105e6576101a6565b806395d89b41116100c557806395d89b41146104a2578063a457c2d7146104cc578063a9059cbb14610508578063aa4bde2814610544576101a6565b806381bfdcca146104125780638c0b5e221461044e5780638da5cb5b14610478576101a6565b80633950935111610158578063677daa5711610132578063677daa571461035a57806370a0823114610396578063715018a6146103d257806375f0a874146103e8576101a6565b806339509351146102ca57806349bd5a5e14610306578063527ffabd14610330576101a6565b806306fdde03146101aa578063095ea7b3146101d45780631694505e1461021057806318160ddd1461023a57806323b872dd14610264578063313ce567146102a0576101a6565b366101a657005b5f80fd5b3480156101b5575f80fd5b506101be6106b4565b6040516101cb9190611cb0565b60405180910390f35b3480156101df575f80fd5b506101fa60048036038101906101f59190611d61565b610744565b6040516102079190611db9565b60405180910390f35b34801561021b575f80fd5b50610224610766565b6040516102319190611e2d565b60405180910390f35b348015610245575f80fd5b5061024e61078a565b60405161025b9190611e55565b60405180910390f35b34801561026f575f80fd5b5061028a60048036038101906102859190611e6e565b610793565b6040516102979190611db9565b60405180910390f35b3480156102ab575f80fd5b506102b46107c1565b6040516102c19190611ed9565b60405180910390f35b3480156102d5575f80fd5b506102f060048036038101906102eb9190611d61565b6107c9565b6040516102fd9190611db9565b60405180910390f35b348015610311575f80fd5b5061031a6107ff565b6040516103279190611f01565b60405180910390f35b34801561033b575f80fd5b50610344610823565b6040516103519190611e55565b60405180910390f35b348015610365575f80fd5b50610380600480360381019061037b9190611f1a565b610829565b60405161038d9190611db9565b60405180910390f35b3480156103a1575f80fd5b506103bc60048036038101906103b79190611f45565b610842565b6040516103c99190611e55565b60405180910390f35b3480156103dd575f80fd5b506103e6610887565b005b3480156103f3575f80fd5b506103fc61089a565b6040516104099190611f01565b60405180910390f35b34801561041d575f80fd5b5061043860048036038101906104339190611f1a565b6108bf565b6040516104459190611db9565b60405180910390f35b348015610459575f80fd5b506104626108d8565b60405161046f9190611e55565b60405180910390f35b348015610483575f80fd5b5061048c6108de565b6040516104999190611f01565b60405180910390f35b3480156104ad575f80fd5b506104b6610906565b6040516104c39190611cb0565b60405180910390f35b3480156104d7575f80fd5b506104f260048036038101906104ed9190611d61565b610996565b6040516104ff9190611db9565b60405180910390f35b348015610513575f80fd5b5061052e60048036038101906105299190611d61565b610a0b565b60405161053b9190611db9565b60405180910390f35b34801561054f575f80fd5b50610558610a2d565b6040516105659190611e55565b60405180910390f35b348015610579575f80fd5b50610594600480360381019061058f9190611f70565b610a33565b6040516105a19190611db9565b60405180910390f35b3480156105b5575f80fd5b506105d060048036038101906105cb9190611f45565b610aa3565b6040516105dd9190611db9565b60405180910390f35b3480156105f1575f80fd5b506105fa610af5565b005b348015610607575f80fd5b50610622600480360381019061061d9190611fae565b610b1a565b60405161062f9190611e55565b60405180910390f35b348015610643575f80fd5b5061065e60048036038101906106599190611f45565b610b9c565b005b34801561066b575f80fd5b50610674610c1e565b6040516106819190611e55565b60405180910390f35b348015610695575f80fd5b5061069e610c24565b6040516106ab9190611db9565b60405180910390f35b6060600380546106c390612019565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90612019565b801561073a5780601f106107115761010080835404028352916020019161073a565b820191905f5260205f20905b81548152906001019060200180831161071d57829003601f168201915b5050505050905090565b5f8061074e610c37565b905061075b818585610c3e565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f8061079d610c37565b90506107aa858285610e01565b6107b5858585610e8c565b60019150509392505050565b5f6009905090565b5f806107d3610c37565b90506107f48185856107e58589610b1a565b6107ef9190612076565b610c3e565b600191505092915050565b7f000000000000000000000000b0a3600030e05fe6db1f41671189d991fb460b4281565b600b5481565b5f610832611451565b81600c8190555060019050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61088f611451565b6108985f6114cf565b565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6108c8611451565b81600d8190555060019050919050565b600c5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091590612019565b80601f016020809104026020016040519081016040528092919081815260200182805461094190612019565b801561098c5780601f106109635761010080835404028352916020019161098c565b820191905f5260205f20905b81548152906001019060200180831161096f57829003601f168201915b5050505050905090565b5f806109a0610c37565b90505f6109ad8286610b1a565b9050838110156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990612119565b60405180910390fd5b6109ff8286868403610c3e565b60019250505092915050565b5f80610a15610c37565b9050610a22818585610e8c565b600191505092915050565b600d5481565b5f610a3c611451565b60648284610a4a9190612076565b1115610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a82906121a7565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b5f610aac611451565b81600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610afd611451565b6001600e60146101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ba4611451565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990612235565b60405180910390fd5b610c1b816114cf565b50565b600a5481565b600e60149054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906122c3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612351565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610df49190611e55565b60405180910390a3505050565b5f610e0c8484610b1a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e865781811015610e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6f906123b9565b60405180910390fd5b610e858484848403610c3e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190612447565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f906124d5565b60405180910390fd5b80610f7284610842565b1015610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90612563565b60405180910390fd5b7f000000000000000000000000b0a3600030e05fe6db1f41671189d991fb460b4273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061105857507f000000000000000000000000b0a3600030e05fe6db1f41671189d991fb460b4273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611070575060135f9054906101000a900460ff16155b15611440577f000000000000000000000000b0a3600030e05fe6db1f41671189d991fb460b4273ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146111c2575f600f546110d530610842565b6110df9190612581565b905060115481106110f6576110f5601154611592565b5b601254600f54106111c05761110c60125461164c565b601254600f5f82825461111f9190612581565b925050819055505f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050509050806111be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b5906125fe565b60405180910390fd5b505b505b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061125e575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561126b5781905061142f565b600c548211156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a79061268c565b60405180910390fd5b600e60149054906101000a900460ff166112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906126f4565b60405180910390fd5b7f000000000000000000000000b0a3600030e05fe6db1f41671189d991fb460b4273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113ab57600d5461135e84610842565b836113699190612076565b11156113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190612782565b60405180910390fd5b5b5f6064600b54846113bc91906127a0565b6113c6919061280e565b90505f6064600a54856113d991906127a0565b6113e3919061280e565b905080826113f19190612076565b846113fc9190612581565b925081600f5f82825461140f9190612076565b9250508190555061142c863083856114279190612076565b6118bf565b50505b61143a8484836118bf565b5061144c565b61144b8383836118bf565b5b505050565b611459610c37565b73ffffffffffffffffffffffffffffffffffffffff166114776108de565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612888565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160135f6101000a81548160ff0219169083151502179055505f6002826115ba919061280e565b90505f81836115c99190612581565b90505f4790506115d88361164c565b5f81476115e59190612581565b90506115f18382611b15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611624939291906128a6565b60405180910390a1505050505f60135f6101000a81548160ff02191690831515021790555050565b600160135f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115611682576116816128db565b5b6040519080825280602002602001820160405280156116b05781602001602082028036833780820191505090505b50905030815f815181106116c7576116c6612908565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561176a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061178e9190612949565b816001815181106117a2576117a1612908565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611807307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c3e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c426118559190612076565b6040518663ffffffff1660e01b8152600401611875959493929190612a64565b5f604051808303815f87803b15801561188c575f80fd5b505af115801561189e573d5f803e3d5ffd5b50505050505f60135f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490612447565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361199b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611992906124d5565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1590612563565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b079190611e55565b60405180910390a350505050565b600160135f6101000a81548160ff021916908315150217905550611b5a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c3e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f80611ba36108de565b426040518863ffffffff1660e01b8152600401611bc596959493929190612abc565b60606040518083038185885af1158015611be1573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611c069190612b2f565b5050505f60135f6101000a81548160ff0219169083151502179055505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611c5d578082015181840152602081019050611c42565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611c8282611c26565b611c8c8185611c30565b9350611c9c818560208601611c40565b611ca581611c68565b840191505092915050565b5f6020820190508181035f830152611cc88184611c78565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611cfd82611cd4565b9050919050565b611d0d81611cf3565b8114611d17575f80fd5b50565b5f81359050611d2881611d04565b92915050565b5f819050919050565b611d4081611d2e565b8114611d4a575f80fd5b50565b5f81359050611d5b81611d37565b92915050565b5f8060408385031215611d7757611d76611cd0565b5b5f611d8485828601611d1a565b9250506020611d9585828601611d4d565b9150509250929050565b5f8115159050919050565b611db381611d9f565b82525050565b5f602082019050611dcc5f830184611daa565b92915050565b5f819050919050565b5f611df5611df0611deb84611cd4565b611dd2565b611cd4565b9050919050565b5f611e0682611ddb565b9050919050565b5f611e1782611dfc565b9050919050565b611e2781611e0d565b82525050565b5f602082019050611e405f830184611e1e565b92915050565b611e4f81611d2e565b82525050565b5f602082019050611e685f830184611e46565b92915050565b5f805f60608486031215611e8557611e84611cd0565b5b5f611e9286828701611d1a565b9350506020611ea386828701611d1a565b9250506040611eb486828701611d4d565b9150509250925092565b5f60ff82169050919050565b611ed381611ebe565b82525050565b5f602082019050611eec5f830184611eca565b92915050565b611efb81611cf3565b82525050565b5f602082019050611f145f830184611ef2565b92915050565b5f60208284031215611f2f57611f2e611cd0565b5b5f611f3c84828501611d4d565b91505092915050565b5f60208284031215611f5a57611f59611cd0565b5b5f611f6784828501611d1a565b91505092915050565b5f8060408385031215611f8657611f85611cd0565b5b5f611f9385828601611d4d565b9250506020611fa485828601611d4d565b9150509250929050565b5f8060408385031215611fc457611fc3611cd0565b5b5f611fd185828601611d1a565b9250506020611fe285828601611d1a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061203057607f821691505b60208210810361204357612042611fec565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61208082611d2e565b915061208b83611d2e565b92508282019050808211156120a3576120a2612049565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612103602583611c30565b915061210e826120a9565b604082019050919050565b5f6020820190508181035f830152612130816120f7565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f612191602d83611c30565b915061219c82612137565b604082019050919050565b5f6020820190508181035f8301526121be81612185565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61221f602683611c30565b915061222a826121c5565b604082019050919050565b5f6020820190508181035f83015261224c81612213565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6122ad602483611c30565b91506122b882612253565b604082019050919050565b5f6020820190508181035f8301526122da816122a1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61233b602283611c30565b9150612346826122e1565b604082019050919050565b5f6020820190508181035f8301526123688161232f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6123a3601d83611c30565b91506123ae8261236f565b602082019050919050565b5f6020820190508181035f8301526123d081612397565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612431602583611c30565b915061243c826123d7565b604082019050919050565b5f6020820190508181035f83015261245e81612425565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6124bf602383611c30565b91506124ca82612465565b604082019050919050565b5f6020820190508181035f8301526124ec816124b3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61254d602683611c30565b9150612558826124f3565b604082019050919050565b5f6020820190508181035f83015261257a81612541565b9050919050565b5f61258b82611d2e565b915061259683611d2e565b92508282039050818111156125ae576125ad612049565b5b92915050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f6125e8601283611c30565b91506125f3826125b4565b602082019050919050565b5f6020820190508181035f830152612615816125dc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f612676603983611c30565b91506126818261261c565b604082019050919050565b5f6020820190508181035f8301526126a38161266a565b9050919050565b7f54726164696e67206973206e6f7420617661696c61626c6500000000000000005f82015250565b5f6126de601883611c30565b91506126e9826126aa565b602082019050919050565b5f6020820190508181035f83015261270b816126d2565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f61276c603683611c30565b915061277782612712565b604082019050919050565b5f6020820190508181035f83015261279981612760565b9050919050565b5f6127aa82611d2e565b91506127b583611d2e565b92508282026127c381611d2e565b915082820484148315176127da576127d9612049565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61281882611d2e565b915061282383611d2e565b925082612833576128326127e1565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612872602083611c30565b915061287d8261283e565b602082019050919050565b5f6020820190508181035f83015261289f81612866565b9050919050565b5f6060820190506128b95f830186611e46565b6128c66020830185611e46565b6128d36040830184611e46565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061294381611d04565b92915050565b5f6020828403121561295e5761295d611cd0565b5b5f61296b84828501612935565b91505092915050565b5f819050919050565b5f61299761299261298d84612974565b611dd2565b611d2e565b9050919050565b6129a78161297d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6129df81611cf3565b82525050565b5f6129f083836129d6565b60208301905092915050565b5f602082019050919050565b5f612a12826129ad565b612a1c81856129b7565b9350612a27836129c7565b805f5b83811015612a57578151612a3e88826129e5565b9750612a49836129fc565b925050600181019050612a2a565b5085935050505092915050565b5f60a082019050612a775f830188611e46565b612a84602083018761299e565b8181036040830152612a968186612a08565b9050612aa56060830185611ef2565b612ab26080830184611e46565b9695505050505050565b5f60c082019050612acf5f830189611ef2565b612adc6020830188611e46565b612ae9604083018761299e565b612af6606083018661299e565b612b036080830185611ef2565b612b1060a0830184611e46565b979650505050505050565b5f81519050612b2981611d37565b92915050565b5f805f60608486031215612b4657612b45611cd0565b5b5f612b5386828701612b1b565b9350506020612b6486828701612b1b565b9250506040612b7586828701612b1b565b915050925092509256fea264697066735822122095cab90d37d8996ae8338f250ba9fea20f679cffb88e51c014e5f71b56bd260964736f6c63430008140033

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.