ETH Price: $3,018.20 (+4.54%)
Gas: 2 Gwei

Token

Astrofolio (ASTRF)
 

Overview

Max Total Supply

100,000,000,000 ASTRF

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
792,001,089.60390533964615503 ASTRF

Value
$0.00
0xe764ac4edd8d3cefdb55bc925a2b1926ca583780
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:
Astrofolio

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

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

/**
 * Imagine a world where you receive a valuable token such as ETH just by holding an ERC20 token
 * 
 * Astrofolio does exactly that! 🚀👨🏽‍🚀
 * 
 * $ASTRF is an ERC20 token that will reward you with ETH just by holding it in your wallet. 
 * Based on the percentage of the total supply that you hold, you will receive a proportional amount of ETH.
 * 
 * But, how does Astrofolio do that? 🤔
 * 
 * Astrofolio taxes every buy and sell transaction with a 4% fee. With this fee, Astrofolio will be able to invest in a variety of markets, such as real estate, art, collectibles and luxury items!
 * 
 * Astrofolio partners with third-party experts on each field to ensure the best possible investment decisions.
 * 
 * What are you waiting for? 
 * 
 * Invest in your future with Astrofolio! 🏛️💎
 * 
 * Website:     https://astrofolio.finance/
 * Telegram:    https://t.me/astrofolio_finance
 * X:           https://x.com/astrf_finance
 */

pragma solidity ^0.8.21;

import './Context.sol';
import './IERC20.sol';
import './IUniswapV2Router02.sol';
import './IUniswapV2Factory.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Astrofolio is ERC20, Ownable {
    string private _name = "Astrofolio";
    string private _symbol = "ASTRF";

    uint256 private _supply = 100_000_000_000 ether;

    uint256 public maxTxAmount = _supply * 2 / 100; // 2% of the total supply
    uint256 public maxWalletAmount = _supply * 2 / 100; // 2% of the total supply

    address public investmentAddress = 0xE21559FEc5cc30aCc20F9c67847269b52CFa2a9C;

    mapping(address => bool) public excludedFromFees;
    mapping(address => bool) public excludedFromWalletLimit;

    bool swapping = false;

    // Will be 4/4 when the anti-sniping mode is removed
    uint256 public buyTax = 20;
    uint256 public sellTax = 40;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair = address(0);

    uint256 public investmentFunds;

    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
    
        // All wallets will be excluded from the wallet limit when removeWalletLimit() is called. This is to avoid any problems with the liquidity pool in the initial stage
        excludedFromWalletLimit[_msgSender()] = true;
        excludedFromWalletLimit[investmentAddress] = true;
        excludedFromWalletLimit[address(this)] = true;
        excludedFromWalletLimit[address(uniswapV2Router)] = true;

        excludedFromFees[_msgSender()] = true;
        excludedFromFees[investmentAddress] = true;
        excludedFromFees[address(this)] = true;
        excludedFromFees[address(uniswapV2Router)] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!excludedFromWalletLimit[from] && !excludedFromWalletLimit[to] ) { // Check whether the amount that the user wants to transfer is within the limit
            if (to != uniswapV2Pair) { // Only normal transfers (not buy nor sell) will go to this if statement
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef");
                require(
                    (amount + balanceOf(to)) <= maxWalletAmount,
                    "ERC20: balance amount exceeded max wallet amount limit"
                );
            }
        }

        uint256 transferAmount = amount;

        if (!excludedFromFees[from] && !excludedFromFees[to]) { // Only calculate if the wallet has a fee to pay. Either from or to
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) { // Only buys and sells have fees. Normal transfers between wallets do not
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
 
                if (
                    buyTax > 0 && 
                    uniswapV2Pair == from &&
                    !excludedFromWalletLimit[to] // Receiver is not excluded from the wallet limit
                ) {
                    uint256 feeTokens = (amount * buyTax) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                if (
                    sellTax > 0 &&
                    uniswapV2Pair == to &&
                    !excludedFromWalletLimit[from] &&
                    !swapping
                ) {
                    swapping = true;
                    swapAndConvertToETH();
                    swapping = false;

                    uint256 feeTokens = (amount * sellTax) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }

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

    function swapAndConvertToETH() internal { // Swaps the $ASTRF got from the sell tax to ETH and stores it inside the smart contract
        if (balanceOf(address(this)) == 0) {
            return;
        }

        uint256 receivedETH;

        {
            uint256 contractASTRFBalance = balanceOf(address(this));
            uint256 beforeBalance = address(this).balance;

            if (contractASTRFBalance > 0) {
                beforeBalance = address(this).balance;
                _swapASTRFForEth(contractASTRFBalance, 0);
                receivedETH = address(this).balance - beforeBalance;
                investmentFunds += receivedETH; // Investment funds are used to separate the ETH from the fees and the one that is directly transfered to the contract
            }
        }
    }

    function _swapASTRFForEth(
        uint256 tokenAmount,
        uint256 tokenAmountOut
    ) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        IERC20(address(this)).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( // Will be stored inside the smart contract
            tokenAmount,
            tokenAmountOut,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeAntiSnipingMode() external onlyOwner returns (bool) { // This function allows us to remove the anti-sniping mode and set the tax to 4/4
        buyTax = 4;
        sellTax = 4;

        return true;
    }

    function removeWalletLimit() external onlyOwner returns (bool) { // This function allows us to remove the wallet limit
        maxTxAmount = _supply;
        maxWalletAmount = _supply;

        return true;
    }

    function removeRestrictionsWallet(address addy, bool changer) external onlyOwner { // This function allows us to add or remove wallets from the tx limit and the fees list
        // Once the contract is renounced, this function cannot be called anymore
        excludedFromWalletLimit[addy] = changer;
        excludedFromFees[addy] = changer;
    }

    function getInvestmentsTax() external returns (bool) { // Get the tax for investments. This is used to diversify the funds and pay back users with dividends in form of ETH
        payable(investmentAddress).transfer(investmentFunds);
        investmentFunds = 0; // Reset the investment funds
        return true;
    }

    function withdrawERC20Tokens(address token) external { // Withdraw any stuck ERC20 tokens
        IERC20(token).transfer(
            investmentAddress,
            IERC20(token).balanceOf(address(this))
        );
    }

    function withdrawETH() external { // If somehow the smart contract receives ETH, it will not be taken into account for the investments tax. This function allows us to withdraw it.
        (bool success, ) = payable(investmentAddress).call{value: address(this).balance}("");

        require(success, "ETH withdraw failed");
    }

    receive() external payable {}
    fallback() external payable {}
}

File 2 of 5 : Context.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

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

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

File 3 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

interface IERC20 {

    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 5 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

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

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

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

File 5 of 5 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;

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

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

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

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

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
}

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":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"},{"stateMutability":"payable","type":"fallback"},{"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":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInvestmentsTax","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":"investmentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"investmentFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAntiSnipingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"removeRestrictionsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawERC20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600a81526020017f417374726f666f6c696f00000000000000000000000000000000000000000000815250600690816200004a919062000d0a565b506040518060400160405280600581526020017f41535452460000000000000000000000000000000000000000000000000000008152506007908162000091919062000d0a565b506c01431e0fae6d7217caa000000060085560646002600854620000b6919062000e1b565b620000c2919062000e92565b60095560646002600854620000d8919062000e1b565b620000e4919062000e92565b600a5573e21559fec5cc30acc20f9c67847269b52cfa2a9c600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600e5f6101000a81548160ff0219169083151502179055506014600f5560286010555f60125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001aa575f80fd5b5060068054620001ba9062000b0a565b80601f0160208091040260200160405190810160405280929190818152602001828054620001e89062000b0a565b8015620002375780601f106200020d5761010080835404028352916020019162000237565b820191905f5260205f20905b8154815290600101906020018083116200021957829003601f168201915b5050505050600780546200024b9062000b0a565b80601f0160208091040260200160405190810160405280929190818152602001828054620002799062000b0a565b8015620002c85780601f106200029e57610100808354040283529160200191620002c8565b820191905f5260205f20905b815481529060010190602001808311620002aa57829003601f168201915b50505050508160039081620002de919062000d0a565b508060049081620002f0919062000d0a565b50505062000313620003076200086d60201b60201c565b6200087460201b60201c565b62000327336008546200093760201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003c9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003ef919062000f2e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000455573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200047b919062000f2e565b6040518363ffffffff1660e01b81526004016200049a92919062000f6f565b6020604051808303815f875af1158015620004b7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004dd919062000f2e565b60125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d5f620005316200086d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f620006d66200086d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550506200107e565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099f9062000ff8565b60405180910390fd5b620009bb5f838362000a9c60201b60201c565b8060025f828254620009ce919062001018565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a7d919062001063565b60405180910390a362000a985f838362000aa160201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b2257607f821691505b60208210810362000b385762000b3762000add565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b9c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b5f565b62000ba8868362000b5f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000bf262000bec62000be68462000bc0565b62000bc9565b62000bc0565b9050919050565b5f819050919050565b62000c0d8362000bd2565b62000c2562000c1c8262000bf9565b84845462000b6b565b825550505050565b5f90565b62000c3b62000c2d565b62000c4881848462000c02565b505050565b5b8181101562000c6f5762000c635f8262000c31565b60018101905062000c4e565b5050565b601f82111562000cbe5762000c888162000b3e565b62000c938462000b50565b8101602085101562000ca3578190505b62000cbb62000cb28562000b50565b83018262000c4d565b50505b505050565b5f82821c905092915050565b5f62000ce05f198460080262000cc3565b1980831691505092915050565b5f62000cfa838362000ccf565b9150826002028217905092915050565b62000d158262000aa6565b67ffffffffffffffff81111562000d315762000d3062000ab0565b5b62000d3d825462000b0a565b62000d4a82828562000c73565b5f60209050601f83116001811462000d80575f841562000d6b578287015190505b62000d77858262000ced565b86555062000de6565b601f19841662000d908662000b3e565b5f5b8281101562000db95784890151825560018201915060208501945060208101905062000d92565b8683101562000dd9578489015162000dd5601f89168262000ccf565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000e278262000bc0565b915062000e348362000bc0565b925082820262000e448162000bc0565b9150828204841483151762000e5e5762000e5d62000dee565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e9e8262000bc0565b915062000eab8362000bc0565b92508262000ebe5762000ebd62000e65565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ef88262000ecd565b9050919050565b62000f0a8162000eec565b811462000f15575f80fd5b50565b5f8151905062000f288162000eff565b92915050565b5f6020828403121562000f465762000f4562000ec9565b5b5f62000f558482850162000f18565b91505092915050565b62000f698162000eec565b82525050565b5f60408201905062000f845f83018562000f5e565b62000f93602083018462000f5e565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000fe0601f8362000f9a565b915062000fed8262000faa565b602082019050919050565b5f6020820190508181035f830152620010118162000fd2565b9050919050565b5f620010248262000bc0565b9150620010318362000bc0565b92508282019050808211156200104c576200104b62000dee565b5b92915050565b6200105d8162000bc0565b82525050565b5f602082019050620010785f83018462001052565b92915050565b612ca1806200108c5f395ff3fe6080604052600436106101d0575f3560e01c80637c395c60116100f6578063a9059cbb11610094578063dbe66ca011610063578063dbe66ca014610683578063dd62ed3e146106bf578063e086e5ec146106fb578063f2fde38b14610711576101d7565b8063a9059cbb146105c9578063aa4bde2814610605578063b144896f1461062f578063cc1776d314610659576101d7565b80638c0b5e22116100d05780638c0b5e221461050f5780638da5cb5b1461053957806395d89b4114610563578063a457c2d71461058d576101d7565b80637c395c6014610481578063835951b6146104ab5780638588004f146104e7576101d7565b806349bd5a5e1161016e57806353030d911161013d57806353030d91146103db578063557790a61461040557806370a082311461042f578063715018a61461046b576101d7565b806349bd5a5e146103355780634f7041a51461035f5780634ff7ff321461038957806350197df5146103b1576101d7565b806318160ddd116101aa57806318160ddd1461026957806323b872dd14610293578063313ce567146102cf57806339509351146102f9576101d7565b806306fdde03146101d9578063095ea7b3146102035780631694505e1461023f576101d7565b366101d757005b005b3480156101e4575f80fd5b506101ed610739565b6040516101fa9190611e50565b60405180910390f35b34801561020e575f80fd5b5061022960048036038101906102249190611f01565b6107c9565b6040516102369190611f59565b60405180910390f35b34801561024a575f80fd5b506102536107eb565b6040516102609190611fcd565b60405180910390f35b348015610274575f80fd5b5061027d610810565b60405161028a9190611ff5565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b4919061200e565b610819565b6040516102c69190611f59565b60405180910390f35b3480156102da575f80fd5b506102e3610847565b6040516102f09190612079565b60405180910390f35b348015610304575f80fd5b5061031f600480360381019061031a9190611f01565b61084f565b60405161032c9190611f59565b60405180910390f35b348015610340575f80fd5b50610349610885565b60405161035691906120a1565b60405180910390f35b34801561036a575f80fd5b506103736108aa565b6040516103809190611ff5565b60405180910390f35b348015610394575f80fd5b506103af60048036038101906103aa91906120ba565b6108b0565b005b3480156103bc575f80fd5b506103c56109c7565b6040516103d29190611f59565b60405180910390f35b3480156103e6575f80fd5b506103ef6109e7565b6040516103fc91906120a1565b60405180910390f35b348015610410575f80fd5b50610419610a0c565b6040516104269190611ff5565b60405180910390f35b34801561043a575f80fd5b50610455600480360381019061045091906120ba565b610a12565b6040516104629190611ff5565b60405180910390f35b348015610476575f80fd5b5061047f610a57565b005b34801561048c575f80fd5b50610495610a6a565b6040516104a29190611f59565b60405180910390f35b3480156104b6575f80fd5b506104d160048036038101906104cc91906120ba565b610ae0565b6040516104de9190611f59565b60405180910390f35b3480156104f2575f80fd5b5061050d6004803603810190610508919061210f565b610afd565b005b34801561051a575f80fd5b50610523610bb1565b6040516105309190611ff5565b60405180910390f35b348015610544575f80fd5b5061054d610bb7565b60405161055a91906120a1565b60405180910390f35b34801561056e575f80fd5b50610577610bdf565b6040516105849190611e50565b60405180910390f35b348015610598575f80fd5b506105b360048036038101906105ae9190611f01565b610c6f565b6040516105c09190611f59565b60405180910390f35b3480156105d4575f80fd5b506105ef60048036038101906105ea9190611f01565b610ce4565b6040516105fc9190611f59565b60405180910390f35b348015610610575f80fd5b50610619610d06565b6040516106269190611ff5565b60405180910390f35b34801561063a575f80fd5b50610643610d0c565b6040516106509190611f59565b60405180910390f35b348015610664575f80fd5b5061066d610d2e565b60405161067a9190611ff5565b60405180910390f35b34801561068e575f80fd5b506106a960048036038101906106a491906120ba565b610d34565b6040516106b69190611f59565b60405180910390f35b3480156106ca575f80fd5b506106e560048036038101906106e0919061214d565b610d51565b6040516106f29190611ff5565b60405180910390f35b348015610706575f80fd5b5061070f610dd3565b005b34801561071c575f80fd5b50610737600480360381019061073291906120ba565b610e9f565b005b606060038054610748906121b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610774906121b8565b80156107bf5780601f10610796576101008083540402835291602001916107bf565b820191905f5260205f20905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b5f806107d3610f21565b90506107e0818585610f28565b600191505092915050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b5f80610823610f21565b90506108308582856110eb565b61083b858585611176565b60019150509392505050565b5f6012905090565b5f80610859610f21565b905061087a81858561086b8589610d51565b6108759190612215565b610f28565b600191505092915050565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161092791906120a1565b602060405180830381865afa158015610942573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610966919061225c565b6040518363ffffffff1660e01b8152600401610983929190612287565b6020604051808303815f875af115801561099f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c391906122c2565b5050565b5f6109d06116e4565b6004600f8190555060046010819055506001905090565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a5f6116e4565b610a685f611762565b565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60135490811502906040515f60405180830381858888f19350505050158015610ad1573d5f803e3d5ffd5b505f6013819055506001905090565b600d602052805f5260405f205f915054906101000a900460ff1681565b610b056116e4565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bee906121b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a906121b8565b8015610c655780601f10610c3c57610100808354040283529160200191610c65565b820191905f5260205f20905b815481529060010190602001808311610c4857829003601f168201915b5050505050905090565b5f80610c79610f21565b90505f610c868286610d51565b905083811015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061235d565b60405180910390fd5b610cd88286868403610f28565b60019250505092915050565b5f80610cee610f21565b9050610cfb818585611176565b600191505092915050565b600a5481565b5f610d156116e4565b600854600981905550600854600a819055506001905090565b60105481565b600c602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e19906123a8565b5f6040518083038185875af1925050503d805f8114610e53576040519150601f19603f3d011682016040523d82523d5f602084013e610e58565b606091505b5050905080610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390612406565b60405180910390fd5b50565b610ea76116e4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612494565b60405180910390fd5b610f1e81611762565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612522565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb906125b0565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110de9190611ff5565b60405180910390a3505050565b5f6110f68484610d51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111705781811015611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612618565b60405180910390fd5b61116f8484848403610f28565b5b50505050565b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156112145750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561130c5760125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461130b576009548111156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a9906126a6565b60405180910390fd5b600a546112be83610a12565b826112c99190612215565b111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190612734565b60405180910390fd5b5b5b5f819050600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156113ae5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156116d35760125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061145a575060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116d2576009548211156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906127c2565b60405180910390fd5b5f600f5411801561150157508373ffffffffffffffffffffffffffffffffffffffff1660125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156115545750600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611591575f6064600f548461156a91906127e0565b611574919061284e565b9050611581853083611825565b808361158d919061287e565b9150505b5f6010541180156115ee57508273ffffffffffffffffffffffffffffffffffffffff1660125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156116415750600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156116595750600e5f9054906101000a900460ff16155b156116d1576001600e5f6101000a81548160ff021916908315150217905550611680611a91565b5f600e5f6101000a81548160ff0219169083151502179055505f6064601054846116aa91906127e0565b6116b4919061284e565b90506116c1853083611825565b80836116cd919061287e565b9150505b5b5b6116de848483611825565b50505050565b6116ec610f21565b73ffffffffffffffffffffffffffffffffffffffff1661170a610bb7565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611757906128fb565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90612989565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890612a17565b60405180910390fd5b61190c838383611af4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690612aa5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a789190611ff5565b60405180910390a3611a8b848484611af9565b50505050565b5f611a9b30610a12565b0315611af2575f80611aac30610a12565b90505f4790505f821115611aee57479050611ac7825f611afe565b8047611ad3919061287e565b92508260135f828254611ae69190612215565b925050819055505b5050505b565b505050565b505050565b5f600267ffffffffffffffff811115611b1a57611b19612ac3565b5b604051908082528060200260200182016040528015611b485781602001602082028036833780820191505090505b50905030815f81518110611b5f57611b5e612af0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c279190612b31565b81600181518110611c3b57611c3a612af0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b360115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611cf1929190612287565b6020604051808303815f875af1158015611d0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d3191906122c2565b5060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b8152600401611d94959493929190612c13565b5f604051808303815f87803b158015611dab575f80fd5b505af1158015611dbd573d5f803e3d5ffd5b50505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611dfd578082015181840152602081019050611de2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e2282611dc6565b611e2c8185611dd0565b9350611e3c818560208601611de0565b611e4581611e08565b840191505092915050565b5f6020820190508181035f830152611e688184611e18565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e9d82611e74565b9050919050565b611ead81611e93565b8114611eb7575f80fd5b50565b5f81359050611ec881611ea4565b92915050565b5f819050919050565b611ee081611ece565b8114611eea575f80fd5b50565b5f81359050611efb81611ed7565b92915050565b5f8060408385031215611f1757611f16611e70565b5b5f611f2485828601611eba565b9250506020611f3585828601611eed565b9150509250929050565b5f8115159050919050565b611f5381611f3f565b82525050565b5f602082019050611f6c5f830184611f4a565b92915050565b5f819050919050565b5f611f95611f90611f8b84611e74565b611f72565b611e74565b9050919050565b5f611fa682611f7b565b9050919050565b5f611fb782611f9c565b9050919050565b611fc781611fad565b82525050565b5f602082019050611fe05f830184611fbe565b92915050565b611fef81611ece565b82525050565b5f6020820190506120085f830184611fe6565b92915050565b5f805f6060848603121561202557612024611e70565b5b5f61203286828701611eba565b935050602061204386828701611eba565b925050604061205486828701611eed565b9150509250925092565b5f60ff82169050919050565b6120738161205e565b82525050565b5f60208201905061208c5f83018461206a565b92915050565b61209b81611e93565b82525050565b5f6020820190506120b45f830184612092565b92915050565b5f602082840312156120cf576120ce611e70565b5b5f6120dc84828501611eba565b91505092915050565b6120ee81611f3f565b81146120f8575f80fd5b50565b5f81359050612109816120e5565b92915050565b5f806040838503121561212557612124611e70565b5b5f61213285828601611eba565b9250506020612143858286016120fb565b9150509250929050565b5f806040838503121561216357612162611e70565b5b5f61217085828601611eba565b925050602061218185828601611eba565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121cf57607f821691505b6020821081036121e2576121e161218b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61221f82611ece565b915061222a83611ece565b9250828201905080821115612242576122416121e8565b5b92915050565b5f8151905061225681611ed7565b92915050565b5f6020828403121561227157612270611e70565b5b5f61227e84828501612248565b91505092915050565b5f60408201905061229a5f830185612092565b6122a76020830184611fe6565b9392505050565b5f815190506122bc816120e5565b92915050565b5f602082840312156122d7576122d6611e70565b5b5f6122e4848285016122ae565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612347602583611dd0565b9150612352826122ed565b604082019050919050565b5f6020820190508181035f8301526123748161233b565b9050919050565b5f81905092915050565b50565b5f6123935f8361237b565b915061239e82612385565b5f82019050919050565b5f6123b282612388565b9150819050919050565b7f455448207769746864726177206661696c6564000000000000000000000000005f82015250565b5f6123f0601383611dd0565b91506123fb826123bc565b602082019050919050565b5f6020820190508181035f83015261241d816123e4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61247e602683611dd0565b915061248982612424565b604082019050919050565b5f6020820190508181035f8301526124ab81612472565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61250c602483611dd0565b9150612517826124b2565b604082019050919050565b5f6020820190508181035f83015261253981612500565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61259a602283611dd0565b91506125a582612540565b604082019050919050565b5f6020820190508181035f8301526125c78161258e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612602601d83611dd0565b915061260d826125ce565b602082019050919050565b5f6020820190508181035f83015261262f816125f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7420626566000000602082015250565b5f612690603d83611dd0565b915061269b82612636565b604082019050919050565b5f6020820190508181035f8301526126bd81612684565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f61271e603683611dd0565b9150612729826126c4565b604082019050919050565b5f6020820190508181035f83015261274b81612712565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f6127ac603983611dd0565b91506127b782612752565b604082019050919050565b5f6020820190508181035f8301526127d9816127a0565b9050919050565b5f6127ea82611ece565b91506127f583611ece565b925082820261280381611ece565b9150828204841483151761281a576128196121e8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61285882611ece565b915061286383611ece565b92508261287357612872612821565b5b828204905092915050565b5f61288882611ece565b915061289383611ece565b92508282039050818111156128ab576128aa6121e8565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6128e5602083611dd0565b91506128f0826128b1565b602082019050919050565b5f6020820190508181035f830152612912816128d9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612973602583611dd0565b915061297e82612919565b604082019050919050565b5f6020820190508181035f8301526129a081612967565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612a01602383611dd0565b9150612a0c826129a7565b604082019050919050565b5f6020820190508181035f830152612a2e816129f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612a8f602683611dd0565b9150612a9a82612a35565b604082019050919050565b5f6020820190508181035f830152612abc81612a83565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612b2b81611ea4565b92915050565b5f60208284031215612b4657612b45611e70565b5b5f612b5384828501612b1d565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612b8e81611e93565b82525050565b5f612b9f8383612b85565b60208301905092915050565b5f602082019050919050565b5f612bc182612b5c565b612bcb8185612b66565b9350612bd683612b76565b805f5b83811015612c06578151612bed8882612b94565b9750612bf883612bab565b925050600181019050612bd9565b5085935050505092915050565b5f60a082019050612c265f830188611fe6565b612c336020830187611fe6565b8181036040830152612c458186612bb7565b9050612c546060830185612092565b612c616080830184611fe6565b969550505050505056fea2646970667358221220f2838a1e8d689e22f1fd044cb0c01baa9edd0bd23aa864417a7c3b6894c588cf64736f6c63430008150033

Deployed Bytecode

0x6080604052600436106101d0575f3560e01c80637c395c60116100f6578063a9059cbb11610094578063dbe66ca011610063578063dbe66ca014610683578063dd62ed3e146106bf578063e086e5ec146106fb578063f2fde38b14610711576101d7565b8063a9059cbb146105c9578063aa4bde2814610605578063b144896f1461062f578063cc1776d314610659576101d7565b80638c0b5e22116100d05780638c0b5e221461050f5780638da5cb5b1461053957806395d89b4114610563578063a457c2d71461058d576101d7565b80637c395c6014610481578063835951b6146104ab5780638588004f146104e7576101d7565b806349bd5a5e1161016e57806353030d911161013d57806353030d91146103db578063557790a61461040557806370a082311461042f578063715018a61461046b576101d7565b806349bd5a5e146103355780634f7041a51461035f5780634ff7ff321461038957806350197df5146103b1576101d7565b806318160ddd116101aa57806318160ddd1461026957806323b872dd14610293578063313ce567146102cf57806339509351146102f9576101d7565b806306fdde03146101d9578063095ea7b3146102035780631694505e1461023f576101d7565b366101d757005b005b3480156101e4575f80fd5b506101ed610739565b6040516101fa9190611e50565b60405180910390f35b34801561020e575f80fd5b5061022960048036038101906102249190611f01565b6107c9565b6040516102369190611f59565b60405180910390f35b34801561024a575f80fd5b506102536107eb565b6040516102609190611fcd565b60405180910390f35b348015610274575f80fd5b5061027d610810565b60405161028a9190611ff5565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b4919061200e565b610819565b6040516102c69190611f59565b60405180910390f35b3480156102da575f80fd5b506102e3610847565b6040516102f09190612079565b60405180910390f35b348015610304575f80fd5b5061031f600480360381019061031a9190611f01565b61084f565b60405161032c9190611f59565b60405180910390f35b348015610340575f80fd5b50610349610885565b60405161035691906120a1565b60405180910390f35b34801561036a575f80fd5b506103736108aa565b6040516103809190611ff5565b60405180910390f35b348015610394575f80fd5b506103af60048036038101906103aa91906120ba565b6108b0565b005b3480156103bc575f80fd5b506103c56109c7565b6040516103d29190611f59565b60405180910390f35b3480156103e6575f80fd5b506103ef6109e7565b6040516103fc91906120a1565b60405180910390f35b348015610410575f80fd5b50610419610a0c565b6040516104269190611ff5565b60405180910390f35b34801561043a575f80fd5b50610455600480360381019061045091906120ba565b610a12565b6040516104629190611ff5565b60405180910390f35b348015610476575f80fd5b5061047f610a57565b005b34801561048c575f80fd5b50610495610a6a565b6040516104a29190611f59565b60405180910390f35b3480156104b6575f80fd5b506104d160048036038101906104cc91906120ba565b610ae0565b6040516104de9190611f59565b60405180910390f35b3480156104f2575f80fd5b5061050d6004803603810190610508919061210f565b610afd565b005b34801561051a575f80fd5b50610523610bb1565b6040516105309190611ff5565b60405180910390f35b348015610544575f80fd5b5061054d610bb7565b60405161055a91906120a1565b60405180910390f35b34801561056e575f80fd5b50610577610bdf565b6040516105849190611e50565b60405180910390f35b348015610598575f80fd5b506105b360048036038101906105ae9190611f01565b610c6f565b6040516105c09190611f59565b60405180910390f35b3480156105d4575f80fd5b506105ef60048036038101906105ea9190611f01565b610ce4565b6040516105fc9190611f59565b60405180910390f35b348015610610575f80fd5b50610619610d06565b6040516106269190611ff5565b60405180910390f35b34801561063a575f80fd5b50610643610d0c565b6040516106509190611f59565b60405180910390f35b348015610664575f80fd5b5061066d610d2e565b60405161067a9190611ff5565b60405180910390f35b34801561068e575f80fd5b506106a960048036038101906106a491906120ba565b610d34565b6040516106b69190611f59565b60405180910390f35b3480156106ca575f80fd5b506106e560048036038101906106e0919061214d565b610d51565b6040516106f29190611ff5565b60405180910390f35b348015610706575f80fd5b5061070f610dd3565b005b34801561071c575f80fd5b50610737600480360381019061073291906120ba565b610e9f565b005b606060038054610748906121b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610774906121b8565b80156107bf5780601f10610796576101008083540402835291602001916107bf565b820191905f5260205f20905b8154815290600101906020018083116107a257829003601f168201915b5050505050905090565b5f806107d3610f21565b90506107e0818585610f28565b600191505092915050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b5f80610823610f21565b90506108308582856110eb565b61083b858585611176565b60019150509392505050565b5f6012905090565b5f80610859610f21565b905061087a81858561086b8589610d51565b6108759190612215565b610f28565b600191505092915050565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161092791906120a1565b602060405180830381865afa158015610942573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610966919061225c565b6040518363ffffffff1660e01b8152600401610983929190612287565b6020604051808303815f875af115801561099f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c391906122c2565b5050565b5f6109d06116e4565b6004600f8190555060046010819055506001905090565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a5f6116e4565b610a685f611762565b565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60135490811502906040515f60405180830381858888f19350505050158015610ad1573d5f803e3d5ffd5b505f6013819055506001905090565b600d602052805f5260405f205f915054906101000a900460ff1681565b610b056116e4565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bee906121b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a906121b8565b8015610c655780601f10610c3c57610100808354040283529160200191610c65565b820191905f5260205f20905b815481529060010190602001808311610c4857829003601f168201915b5050505050905090565b5f80610c79610f21565b90505f610c868286610d51565b905083811015610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc29061235d565b60405180910390fd5b610cd88286868403610f28565b60019250505092915050565b5f80610cee610f21565b9050610cfb818585611176565b600191505092915050565b600a5481565b5f610d156116e4565b600854600981905550600854600a819055506001905090565b60105481565b600c602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610e19906123a8565b5f6040518083038185875af1925050503d805f8114610e53576040519150601f19603f3d011682016040523d82523d5f602084013e610e58565b606091505b5050905080610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390612406565b60405180910390fd5b50565b610ea76116e4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90612494565b60405180910390fd5b610f1e81611762565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612522565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb906125b0565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110de9190611ff5565b60405180910390a3505050565b5f6110f68484610d51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111705781811015611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612618565b60405180910390fd5b61116f8484848403610f28565b5b50505050565b600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156112145750600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561130c5760125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461130b576009548111156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a9906126a6565b60405180910390fd5b600a546112be83610a12565b826112c99190612215565b111561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190612734565b60405180910390fd5b5b5b5f819050600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156113ae5750600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156116d35760125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061145a575060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156116d2576009548211156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906127c2565b60405180910390fd5b5f600f5411801561150157508373ffffffffffffffffffffffffffffffffffffffff1660125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156115545750600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611591575f6064600f548461156a91906127e0565b611574919061284e565b9050611581853083611825565b808361158d919061287e565b9150505b5f6010541180156115ee57508273ffffffffffffffffffffffffffffffffffffffff1660125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156116415750600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156116595750600e5f9054906101000a900460ff16155b156116d1576001600e5f6101000a81548160ff021916908315150217905550611680611a91565b5f600e5f6101000a81548160ff0219169083151502179055505f6064601054846116aa91906127e0565b6116b4919061284e565b90506116c1853083611825565b80836116cd919061287e565b9150505b5b5b6116de848483611825565b50505050565b6116ec610f21565b73ffffffffffffffffffffffffffffffffffffffff1661170a610bb7565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611757906128fb565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90612989565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890612a17565b60405180910390fd5b61190c838383611af4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690612aa5565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a789190611ff5565b60405180910390a3611a8b848484611af9565b50505050565b5f611a9b30610a12565b0315611af2575f80611aac30610a12565b90505f4790505f821115611aee57479050611ac7825f611afe565b8047611ad3919061287e565b92508260135f828254611ae69190612215565b925050819055505b5050505b565b505050565b505050565b5f600267ffffffffffffffff811115611b1a57611b19612ac3565b5b604051908082528060200260200182016040528015611b485781602001602082028036833780820191505090505b50905030815f81518110611b5f57611b5e612af0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c279190612b31565b81600181518110611c3b57611c3a612af0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b360115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611cf1929190612287565b6020604051808303815f875af1158015611d0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d3191906122c2565b5060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b8152600401611d94959493929190612c13565b5f604051808303815f87803b158015611dab575f80fd5b505af1158015611dbd573d5f803e3d5ffd5b50505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611dfd578082015181840152602081019050611de2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e2282611dc6565b611e2c8185611dd0565b9350611e3c818560208601611de0565b611e4581611e08565b840191505092915050565b5f6020820190508181035f830152611e688184611e18565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e9d82611e74565b9050919050565b611ead81611e93565b8114611eb7575f80fd5b50565b5f81359050611ec881611ea4565b92915050565b5f819050919050565b611ee081611ece565b8114611eea575f80fd5b50565b5f81359050611efb81611ed7565b92915050565b5f8060408385031215611f1757611f16611e70565b5b5f611f2485828601611eba565b9250506020611f3585828601611eed565b9150509250929050565b5f8115159050919050565b611f5381611f3f565b82525050565b5f602082019050611f6c5f830184611f4a565b92915050565b5f819050919050565b5f611f95611f90611f8b84611e74565b611f72565b611e74565b9050919050565b5f611fa682611f7b565b9050919050565b5f611fb782611f9c565b9050919050565b611fc781611fad565b82525050565b5f602082019050611fe05f830184611fbe565b92915050565b611fef81611ece565b82525050565b5f6020820190506120085f830184611fe6565b92915050565b5f805f6060848603121561202557612024611e70565b5b5f61203286828701611eba565b935050602061204386828701611eba565b925050604061205486828701611eed565b9150509250925092565b5f60ff82169050919050565b6120738161205e565b82525050565b5f60208201905061208c5f83018461206a565b92915050565b61209b81611e93565b82525050565b5f6020820190506120b45f830184612092565b92915050565b5f602082840312156120cf576120ce611e70565b5b5f6120dc84828501611eba565b91505092915050565b6120ee81611f3f565b81146120f8575f80fd5b50565b5f81359050612109816120e5565b92915050565b5f806040838503121561212557612124611e70565b5b5f61213285828601611eba565b9250506020612143858286016120fb565b9150509250929050565b5f806040838503121561216357612162611e70565b5b5f61217085828601611eba565b925050602061218185828601611eba565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806121cf57607f821691505b6020821081036121e2576121e161218b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61221f82611ece565b915061222a83611ece565b9250828201905080821115612242576122416121e8565b5b92915050565b5f8151905061225681611ed7565b92915050565b5f6020828403121561227157612270611e70565b5b5f61227e84828501612248565b91505092915050565b5f60408201905061229a5f830185612092565b6122a76020830184611fe6565b9392505050565b5f815190506122bc816120e5565b92915050565b5f602082840312156122d7576122d6611e70565b5b5f6122e4848285016122ae565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612347602583611dd0565b9150612352826122ed565b604082019050919050565b5f6020820190508181035f8301526123748161233b565b9050919050565b5f81905092915050565b50565b5f6123935f8361237b565b915061239e82612385565b5f82019050919050565b5f6123b282612388565b9150819050919050565b7f455448207769746864726177206661696c6564000000000000000000000000005f82015250565b5f6123f0601383611dd0565b91506123fb826123bc565b602082019050919050565b5f6020820190508181035f83015261241d816123e4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61247e602683611dd0565b915061248982612424565b604082019050919050565b5f6020820190508181035f8301526124ab81612472565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61250c602483611dd0565b9150612517826124b2565b604082019050919050565b5f6020820190508181035f83015261253981612500565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61259a602283611dd0565b91506125a582612540565b604082019050919050565b5f6020820190508181035f8301526125c78161258e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612602601d83611dd0565b915061260d826125ce565b602082019050919050565b5f6020820190508181035f83015261262f816125f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7420626566000000602082015250565b5f612690603d83611dd0565b915061269b82612636565b604082019050919050565b5f6020820190508181035f8301526126bd81612684565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f61271e603683611dd0565b9150612729826126c4565b604082019050919050565b5f6020820190508181035f83015261274b81612712565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f6127ac603983611dd0565b91506127b782612752565b604082019050919050565b5f6020820190508181035f8301526127d9816127a0565b9050919050565b5f6127ea82611ece565b91506127f583611ece565b925082820261280381611ece565b9150828204841483151761281a576128196121e8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61285882611ece565b915061286383611ece565b92508261287357612872612821565b5b828204905092915050565b5f61288882611ece565b915061289383611ece565b92508282039050818111156128ab576128aa6121e8565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6128e5602083611dd0565b91506128f0826128b1565b602082019050919050565b5f6020820190508181035f830152612912816128d9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612973602583611dd0565b915061297e82612919565b604082019050919050565b5f6020820190508181035f8301526129a081612967565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612a01602383611dd0565b9150612a0c826129a7565b604082019050919050565b5f6020820190508181035f830152612a2e816129f5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612a8f602683611dd0565b9150612a9a82612a35565b604082019050919050565b5f6020820190508181035f830152612abc81612a83565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612b2b81611ea4565b92915050565b5f60208284031215612b4657612b45611e70565b5b5f612b5384828501612b1d565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612b8e81611e93565b82525050565b5f612b9f8383612b85565b60208301905092915050565b5f602082019050919050565b5f612bc182612b5c565b612bcb8185612b66565b9350612bd683612b76565b805f5b83811015612c06578151612bed8882612b94565b9750612bf883612bab565b925050600181019050612bd9565b5085935050505092915050565b5f60a082019050612c265f830188611fe6565b612c336020830187611fe6565b8181036040830152612c458186612bb7565b9050612c546060830185612092565b612c616080830184611fe6565b969550505050505056fea2646970667358221220f2838a1e8d689e22f1fd044cb0c01baa9edd0bd23aa864417a7c3b6894c588cf64736f6c63430008150033

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.