ETH Price: $3,386.88 (-0.24%)
Gas: 4 Gwei

Token

PEIPEI (PEIPEI)
 

Overview

Max Total Supply

289,520,200,999,888 PEIPEI

Holders

1,633

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.77471718852240002 PEIPEI

Value
$0.00
0x27a628f9dba3612557c55ca929dc5a491d5d50cb
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:
PEIPEI

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.20;

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


library Address{
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

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

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}


contract PEIPEI is ERC20, Ownable{
    using Address for address payable;
        
    mapping (address user => bool status) public isExcludedFromFees;
    IRouter public router;
    address public pair;

    bool private swapping;
    bool public swapEnabled;
    bool public tradingEnabled;
    
    uint256 public maxSupply = 289_520_200_999_888 * 10**18; //TOTAL SUPPLY
    uint256 public maxWallet = maxSupply * 50/10000; //0.5%
    uint256 public maxTx = maxSupply * 50/10000; //0.5%
    uint256 private swapThreshold;
    address private UniswapRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //uniswapV2
    address private taxWallet = 0x9b09cCFb85FdF6f121ac1b40c362C6387A7B88c8;

    struct Taxes {
        uint256 buy; 
        uint256 sell;
        uint256 transfer;
    }

    Taxes public taxes = Taxes(0,2,0);

    modifier mutexLock() {
        if (!swapping) {
            swapping = true;
            _;
            swapping = false;
        }
    }
  
constructor() ERC20("PEIPEI", "PEIPEI") {
        _mint(msg.sender, maxSupply);
        router = IRouter(UniswapRouter);
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[msg.sender] = true;
        isExcludedFromFees[taxWallet] = true;
        swapThreshold = maxWallet;
        _approve(address(this), address(router), type(uint256).max);
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(amount >= 0, "Transfer amount must be greater or equal than zero");

        if (swapping || isExcludedFromFees[sender] || isExcludedFromFees[recipient]) {
            super._transfer(sender, recipient, amount);
            return;
        }

        else{
            require(tradingEnabled, "Trading not enabled");
            if(sender == pair){ 
                require(amount <= maxTx, "MaxTx limit exceeded");
            }

            if(recipient != pair){
                require(balanceOf(recipient) + amount <= maxWallet, "Wallet limit exceeded");
            }
        }
        uint256 fees;

        if(recipient == pair) fees = amount * taxes.sell / 100;
        else if(sender == pair) fees = amount * taxes.buy / 100;
        else if(sender != pair && recipient != pair) fees = amount * taxes.transfer / 100; 

        if (swapEnabled && recipient == pair && !swapping) swapFees();

        super._transfer(sender, recipient, amount - fees);
        if(fees > 0){
            super._transfer(sender, address(this), fees);
        }
    }

    function swapFees() private mutexLock {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= swapThreshold) {
            uint256 amountToSwap = swapThreshold;
            uint256 initialBalance = address(this).balance;
            swapTokensForEth(amountToSwap);
            uint256 deltaBalance = address(this).balance - initialBalance;
            payable(taxWallet).sendValue(deltaBalance);
        }
    }

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

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

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

    function setSwapTreshhold(uint256 amount) external onlyOwner {
        swapThreshold = amount;
    }
    
    function setTaxes(uint256 _buyTax, uint256 _sellTax, uint256 _transferTax) external onlyOwner {
        taxes = Taxes(_buyTax, _sellTax, _transferTax);
    }
    
    function setPair(address _pair) external onlyOwner{
        pair = _pair;
    }
    
    function enableTrading() external onlyOwner{
        require(!tradingEnabled, "Already enabled");
        tradingEnabled = true;
        swapEnabled = true;
        taxes.transfer = 0;
    }
 
    function removeLimits() external onlyOwner{
        maxTx = totalSupply(); 
        maxWallet = totalSupply();
        taxes.transfer = 0;
    }

    function setLimits(uint256 _maxTx, uint256 _maxWallet) external onlyOwner{
        maxTx = _maxTx; 
        maxWallet = _maxWallet;
    }
    
    function setIsExcludedFromFees(address _address, bool state) external onlyOwner {
        isExcludedFromFees[_address] = state;
        
    }

    function rescueETH(uint256 weiAmount) external  {
        require(msg.sender == taxWallet, "Require tax wallet.");
        payable(taxWallet).sendValue(weiAmount);
    }

    function rescueERC20(address tokenAdd, uint256 amount) external {
        require(msg.sender == taxWallet, "Require tax wallet.");
        uint256 ERC20amount = amount ;
        IERC20(tokenAdd).transfer(taxWallet, ERC20amount);
    }

    receive() external payable {}

}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setIsExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTreshhold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"},{"internalType":"uint256","name":"_transferTax","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"transfer","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526d0e46423935a5ec940923ad40000060095561271060326009546200002a919062000831565b620000369190620008a8565b600a5561271060326009546200004d919062000831565b620000599190620008a8565b600b55737a250d5630b4cf539739df2c5dacb4c659f2488d600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739b09ccfb85fdf6f121ac1b40c362c6387a7b88c8600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052805f8152602001600281526020015f815250600f5f820151815f0155602082015181600101556040820151816002015550503480156200014c575f80fd5b506040518060400160405280600681526020017f50454950454900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f50454950454900000000000000000000000000000000000000000000000000008152508160039081620001ca919062000b3a565b508060049081620001dc919062000b3a565b505050620001ff620001f3620003f760201b60201c565b620003fe60201b60201c565b6200021333600954620004c160201b60201c565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600a54600c81905550620003f13060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200062660201b60201c565b62000e2a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000532576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005299062000c7c565b60405180910390fd5b620005455f8383620007f160201b60201c565b8060025f82825462000558919062000c9c565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000607919062000ce7565b60405180910390a3620006225f8383620007f660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000697576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068e9062000d76565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000708576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ff9062000e0a565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620007e4919062000ce7565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200083d82620007fb565b91506200084a83620007fb565b92508282026200085a81620007fb565b9150828204841483151762000874576200087362000804565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620008b482620007fb565b9150620008c183620007fb565b925082620008d457620008d36200087b565b5b828204905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200095b57607f821691505b60208210810362000971576200097062000916565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000998565b620009e1868362000998565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000a2262000a1c62000a1684620007fb565b620009f9565b620007fb565b9050919050565b5f819050919050565b62000a3d8362000a02565b62000a5562000a4c8262000a29565b848454620009a4565b825550505050565b5f90565b62000a6b62000a5d565b62000a7881848462000a32565b505050565b5b8181101562000a9f5762000a935f8262000a61565b60018101905062000a7e565b5050565b601f82111562000aee5762000ab88162000977565b62000ac38462000989565b8101602085101562000ad3578190505b62000aeb62000ae28562000989565b83018262000a7d565b50505b505050565b5f82821c905092915050565b5f62000b105f198460080262000af3565b1980831691505092915050565b5f62000b2a838362000aff565b9150826002028217905092915050565b62000b4582620008df565b67ffffffffffffffff81111562000b615762000b60620008e9565b5b62000b6d825462000943565b62000b7a82828562000aa3565b5f60209050601f83116001811462000bb0575f841562000b9b578287015190505b62000ba7858262000b1d565b86555062000c16565b601f19841662000bc08662000977565b5f5b8281101562000be95784890151825560018201915060208501945060208101905062000bc2565b8683101562000c09578489015162000c05601f89168262000aff565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000c64601f8362000c1e565b915062000c718262000c2e565b602082019050919050565b5f6020820190508181035f83015262000c958162000c56565b9050919050565b5f62000ca882620007fb565b915062000cb583620007fb565b925082820190508082111562000cd05762000ccf62000804565b5b92915050565b62000ce181620007fb565b82525050565b5f60208201905062000cfc5f83018462000cd6565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000d5e60248362000c1e565b915062000d6b8262000d02565b604082019050919050565b5f6020820190508181035f83015262000d8f8162000d50565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000df260228362000c1e565b915062000dff8262000d96565b604082019050919050565b5f6020820190508181035f83015262000e238162000de4565b9050919050565b6130b38062000e385f395ff3fe6080604052600436106101f1575f3560e01c80638cd4426d1161010c578063b5d7ab9a1161009f578063e01af92c1161006e578063e01af92c146106de578063e9dae5ed14610706578063f2fde38b1461072e578063f887ea4014610756578063f8b45b0514610780576101f8565b8063b5d7ab9a14610628578063c4590d3f14610650578063d5abeb0114610678578063dd62ed3e146106a2576101f8565b8063a457c2d7116100db578063a457c2d71461055e578063a8aa1b311461059a578063a9059cbb146105c4578063adf1869314610600576101f8565b80638cd4426d146104ba5780638da5cb5b146104e257806395d89b411461050c5780639e252f0014610536576101f8565b80636ddd1713116101845780637437681e116101535780637437681e1461043c578063751039fc146104665780638187f5161461047c5780638a8c523c146104a4576101f8565b80636ddd17131461039457806370a08231146103be578063715018a6146103fa578063728f8eea14610410576101f8565b8063313ce567116101c0578063313ce567146102c857806339509351146102f25780634ada218b1461032e5780634fbee19314610358576101f8565b806306fdde03146101fc578063095ea7b31461022657806318160ddd1461026257806323b872dd1461028c576101f8565b366101f857005b5f80fd5b348015610207575f80fd5b506102106107aa565b60405161021d9190611fd5565b60405180910390f35b348015610231575f80fd5b5061024c60048036038101906102479190612086565b61083a565b60405161025991906120de565b60405180910390f35b34801561026d575f80fd5b5061027661085c565b6040516102839190612106565b60405180910390f35b348015610297575f80fd5b506102b260048036038101906102ad919061211f565b610865565b6040516102bf91906120de565b60405180910390f35b3480156102d3575f80fd5b506102dc610893565b6040516102e9919061218a565b60405180910390f35b3480156102fd575f80fd5b5061031860048036038101906103139190612086565b61089b565b60405161032591906120de565b60405180910390f35b348015610339575f80fd5b506103426108d1565b60405161034f91906120de565b60405180910390f35b348015610363575f80fd5b5061037e600480360381019061037991906121a3565b6108e4565b60405161038b91906120de565b60405180910390f35b34801561039f575f80fd5b506103a8610901565b6040516103b591906120de565b60405180910390f35b3480156103c9575f80fd5b506103e460048036038101906103df91906121a3565b610914565b6040516103f19190612106565b60405180910390f35b348015610405575f80fd5b5061040e610959565b005b34801561041b575f80fd5b5061042461096c565b604051610433939291906121ce565b60405180910390f35b348015610447575f80fd5b50610450610983565b60405161045d9190612106565b60405180910390f35b348015610471575f80fd5b5061047a610989565b005b348015610487575f80fd5b506104a2600480360381019061049d91906121a3565b6109b9565b005b3480156104af575f80fd5b506104b8610a04565b005b3480156104c5575f80fd5b506104e060048036038101906104db9190612086565b610a9e565b005b3480156104ed575f80fd5b506104f6610bd3565b6040516105039190612212565b60405180910390f35b348015610517575f80fd5b50610520610bfb565b60405161052d9190611fd5565b60405180910390f35b348015610541575f80fd5b5061055c6004803603810190610557919061222b565b610c8b565b005b348015610569575f80fd5b50610584600480360381019061057f9190612086565b610d67565b60405161059191906120de565b60405180910390f35b3480156105a5575f80fd5b506105ae610ddc565b6040516105bb9190612212565b60405180910390f35b3480156105cf575f80fd5b506105ea60048036038101906105e59190612086565b610e01565b6040516105f791906120de565b60405180910390f35b34801561060b575f80fd5b5061062660048036038101906106219190612280565b610e23565b005b348015610633575f80fd5b5061064e6004803603810190610649919061222b565b610e83565b005b34801561065b575f80fd5b50610676600480360381019061067191906122be565b610e95565b005b348015610683575f80fd5b5061068c610eaf565b6040516106999190612106565b60405180910390f35b3480156106ad575f80fd5b506106c860048036038101906106c391906122fc565b610eb5565b6040516106d59190612106565b60405180910390f35b3480156106e9575f80fd5b5061070460048036038101906106ff919061233a565b610f37565b005b348015610711575f80fd5b5061072c60048036038101906107279190612365565b610f5c565b005b348015610739575f80fd5b50610754600480360381019061074f91906121a3565b610fa5565b005b348015610761575f80fd5b5061076a611027565b6040516107779190612410565b60405180910390f35b34801561078b575f80fd5b5061079461104c565b6040516107a19190612106565b60405180910390f35b6060600380546107b990612456565b80601f01602080910402602001604051908101604052809291908181526020018280546107e590612456565b80156108305780601f1061080757610100808354040283529160200191610830565b820191905f5260205f20905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b5f80610844611052565b9050610851818585611059565b600191505092915050565b5f600254905090565b5f8061086f611052565b905061087c85828561121c565b6108878585856112a7565b60019150509392505050565b5f6012905090565b5f806108a5611052565b90506108c68185856108b78589610eb5565b6108c191906124b3565b611059565b600191505092915050565b600860169054906101000a900460ff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b600860159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109616117c8565b61096a5f611846565b565b600f805f0154908060010154908060020154905083565b600b5481565b6109916117c8565b61099961085c565b600b819055506109a761085c565b600a819055505f600f60020181905550565b6109c16117c8565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a0c6117c8565b600860169054906101000a900460ff1615610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612530565b60405180910390fd5b6001600860166101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055505f600f60020181905550565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490612598565b60405180910390fd5b5f8190508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610b8d9291906125b6565b6020604051808303815f875af1158015610ba9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcd91906125f1565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c0a90612456565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3690612456565b8015610c815780601f10610c5857610100808354040283529160200191610c81565b820191905f5260205f20905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612598565b60405180910390fd5b610d6481600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661190990919063ffffffff16565b50565b5f80610d71611052565b90505f610d7e8286610eb5565b905083811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061268c565b60405180910390fd5b610dd08286868403611059565b60019250505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610e0b611052565b9050610e188185856112a7565b600191505092915050565b610e2b6117c8565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610e8b6117c8565b80600c8190555050565b610e9d6117c8565b81600b8190555080600a819055505050565b60095481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610f3f6117c8565b80600860156101000a81548160ff02191690831515021790555050565b610f646117c8565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050505050565b610fad6117c8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110129061271a565b60405180910390fd5b61102481611846565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be906127a8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90612836565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161120f9190612106565b60405180910390a3505050565b5f6112278484610eb5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112a15781811015611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061289e565b60405180910390fd5b6112a08484848403611059565b5b50505050565b5f8110156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e19061292c565b60405180910390fd5b600860149054906101000a900460ff168061134b575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061139c575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156113b1576113ac8383836119f9565b6117c3565b600860169054906101000a900460ff16611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790612994565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149a57600b54811115611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906129fc565b60405180910390fd5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461154757600a54816114fb84610914565b61150591906124b3565b1115611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90612a64565b60405180910390fd5b5b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c0576064600f60010154836115af9190612a82565b6115b99190612af0565b9050611708565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611637576064600f5f0154836116269190612a82565b6116309190612af0565b9050611707565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156116e1575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611706576064600f60020154836116f99190612a82565b6117039190612af0565b90505b5b5b600860159054906101000a900460ff168015611770575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156117895750600860149054906101000a900460ff16155b1561179757611796611c65565b5b6117ad848483856117a89190612b20565b6119f9565b5f8111156117c1576117c08430836119f9565b5b505b505050565b6117d0611052565b73ffffffffffffffffffffffffffffffffffffffff166117ee610bd3565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90612b9d565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8047101561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390612c05565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161197190612c50565b5f6040518083038185875af1925050503d805f81146119ab576040519150601f19603f3d011682016040523d82523d5f602084013e6119b0565b606091505b50509050806119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612cd4565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612d62565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90612df0565b60405180910390fd5b611ae0838383611d37565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90612e7e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4c9190612106565b60405180910390a3611c5f848484611d3c565b50505050565b600860149054906101000a900460ff16611d35576001600860146101000a81548160ff0219169083151502179055505f611c9e30610914565b9050600c548110611d19575f600c5490505f479050611cbc82611d41565b5f8147611cc99190612b20565b9050611d1581600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661190990919063ffffffff16565b5050505b505f600860146101000a81548160ff0219169083151502179055505b565b505050565b505050565b5f600267ffffffffffffffff811115611d5d57611d5c612e9c565b5b604051908082528060200260200182016040528015611d8b5781602001602082028036833780820191505090505b50905030815f81518110611da257611da1612ec9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6a9190612f0a565b81600181518110611e7e57611e7d612ec9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611f1a959493929190613025565b5f604051808303815f87803b158015611f31575f80fd5b505af1158015611f43573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f82578082015181840152602081019050611f67565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611fa782611f4b565b611fb18185611f55565b9350611fc1818560208601611f65565b611fca81611f8d565b840191505092915050565b5f6020820190508181035f830152611fed8184611f9d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61202282611ff9565b9050919050565b61203281612018565b811461203c575f80fd5b50565b5f8135905061204d81612029565b92915050565b5f819050919050565b61206581612053565b811461206f575f80fd5b50565b5f813590506120808161205c565b92915050565b5f806040838503121561209c5761209b611ff5565b5b5f6120a98582860161203f565b92505060206120ba85828601612072565b9150509250929050565b5f8115159050919050565b6120d8816120c4565b82525050565b5f6020820190506120f15f8301846120cf565b92915050565b61210081612053565b82525050565b5f6020820190506121195f8301846120f7565b92915050565b5f805f6060848603121561213657612135611ff5565b5b5f6121438682870161203f565b93505060206121548682870161203f565b925050604061216586828701612072565b9150509250925092565b5f60ff82169050919050565b6121848161216f565b82525050565b5f60208201905061219d5f83018461217b565b92915050565b5f602082840312156121b8576121b7611ff5565b5b5f6121c58482850161203f565b91505092915050565b5f6060820190506121e15f8301866120f7565b6121ee60208301856120f7565b6121fb60408301846120f7565b949350505050565b61220c81612018565b82525050565b5f6020820190506122255f830184612203565b92915050565b5f602082840312156122405761223f611ff5565b5b5f61224d84828501612072565b91505092915050565b61225f816120c4565b8114612269575f80fd5b50565b5f8135905061227a81612256565b92915050565b5f806040838503121561229657612295611ff5565b5b5f6122a38582860161203f565b92505060206122b48582860161226c565b9150509250929050565b5f80604083850312156122d4576122d3611ff5565b5b5f6122e185828601612072565b92505060206122f285828601612072565b9150509250929050565b5f806040838503121561231257612311611ff5565b5b5f61231f8582860161203f565b92505060206123308582860161203f565b9150509250929050565b5f6020828403121561234f5761234e611ff5565b5b5f61235c8482850161226c565b91505092915050565b5f805f6060848603121561237c5761237b611ff5565b5b5f61238986828701612072565b935050602061239a86828701612072565b92505060406123ab86828701612072565b9150509250925092565b5f819050919050565b5f6123d86123d36123ce84611ff9565b6123b5565b611ff9565b9050919050565b5f6123e9826123be565b9050919050565b5f6123fa826123df565b9050919050565b61240a816123f0565b82525050565b5f6020820190506124235f830184612401565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061246d57607f821691505b6020821081036124805761247f612429565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124bd82612053565b91506124c883612053565b92508282019050808211156124e0576124df612486565b5b92915050565b7f416c726561647920656e61626c656400000000000000000000000000000000005f82015250565b5f61251a600f83611f55565b9150612525826124e6565b602082019050919050565b5f6020820190508181035f8301526125478161250e565b9050919050565b7f52657175697265207461782077616c6c65742e000000000000000000000000005f82015250565b5f612582601383611f55565b915061258d8261254e565b602082019050919050565b5f6020820190508181035f8301526125af81612576565b9050919050565b5f6040820190506125c95f830185612203565b6125d660208301846120f7565b9392505050565b5f815190506125eb81612256565b92915050565b5f6020828403121561260657612605611ff5565b5b5f612613848285016125dd565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612676602583611f55565b91506126818261261c565b604082019050919050565b5f6020820190508181035f8301526126a38161266a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612704602683611f55565b915061270f826126aa565b604082019050919050565b5f6020820190508181035f830152612731816126f8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612792602483611f55565b915061279d82612738565b604082019050919050565b5f6020820190508181035f8301526127bf81612786565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612820602283611f55565b915061282b826127c6565b604082019050919050565b5f6020820190508181035f83015261284d81612814565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612888601d83611f55565b915061289382612854565b602082019050919050565b5f6020820190508181035f8301526128b58161287c565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f6f7220657175616c207468616e207a65726f0000000000000000000000000000602082015250565b5f612916603283611f55565b9150612921826128bc565b604082019050919050565b5f6020820190508181035f8301526129438161290a565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f61297e601383611f55565b91506129898261294a565b602082019050919050565b5f6020820190508181035f8301526129ab81612972565b9050919050565b7f4d61785478206c696d69742065786365656465640000000000000000000000005f82015250565b5f6129e6601483611f55565b91506129f1826129b2565b602082019050919050565b5f6020820190508181035f830152612a13816129da565b9050919050565b7f57616c6c6574206c696d697420657863656564656400000000000000000000005f82015250565b5f612a4e601583611f55565b9150612a5982612a1a565b602082019050919050565b5f6020820190508181035f830152612a7b81612a42565b9050919050565b5f612a8c82612053565b9150612a9783612053565b9250828202612aa581612053565b91508282048414831517612abc57612abb612486565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612afa82612053565b9150612b0583612053565b925082612b1557612b14612ac3565b5b828204905092915050565b5f612b2a82612053565b9150612b3583612053565b9250828203905081811115612b4d57612b4c612486565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b87602083611f55565b9150612b9282612b53565b602082019050919050565b5f6020820190508181035f830152612bb481612b7b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f612bef601d83611f55565b9150612bfa82612bbb565b602082019050919050565b5f6020820190508181035f830152612c1c81612be3565b9050919050565b5f81905092915050565b50565b5f612c3b5f83612c23565b9150612c4682612c2d565b5f82019050919050565b5f612c5a82612c30565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f612cbe603a83611f55565b9150612cc982612c64565b604082019050919050565b5f6020820190508181035f830152612ceb81612cb2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612d4c602583611f55565b9150612d5782612cf2565b604082019050919050565b5f6020820190508181035f830152612d7981612d40565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612dda602383611f55565b9150612de582612d80565b604082019050919050565b5f6020820190508181035f830152612e0781612dce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612e68602683611f55565b9150612e7382612e0e565b604082019050919050565b5f6020820190508181035f830152612e9581612e5c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612f0481612029565b92915050565b5f60208284031215612f1f57612f1e611ff5565b5b5f612f2c84828501612ef6565b91505092915050565b5f819050919050565b5f612f58612f53612f4e84612f35565b6123b5565b612053565b9050919050565b612f6881612f3e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612fa081612018565b82525050565b5f612fb18383612f97565b60208301905092915050565b5f602082019050919050565b5f612fd382612f6e565b612fdd8185612f78565b9350612fe883612f88565b805f5b83811015613018578151612fff8882612fa6565b975061300a83612fbd565b925050600181019050612feb565b5085935050505092915050565b5f60a0820190506130385f8301886120f7565b6130456020830187612f5f565b81810360408301526130578186612fc9565b90506130666060830185612203565b61307360808301846120f7565b969550505050505056fea2646970667358221220f390b2767a97f9ae45834f8de6f059d66efb2696f95ef07a5de1927fc7d47d6564736f6c63430008160033

Deployed Bytecode

0x6080604052600436106101f1575f3560e01c80638cd4426d1161010c578063b5d7ab9a1161009f578063e01af92c1161006e578063e01af92c146106de578063e9dae5ed14610706578063f2fde38b1461072e578063f887ea4014610756578063f8b45b0514610780576101f8565b8063b5d7ab9a14610628578063c4590d3f14610650578063d5abeb0114610678578063dd62ed3e146106a2576101f8565b8063a457c2d7116100db578063a457c2d71461055e578063a8aa1b311461059a578063a9059cbb146105c4578063adf1869314610600576101f8565b80638cd4426d146104ba5780638da5cb5b146104e257806395d89b411461050c5780639e252f0014610536576101f8565b80636ddd1713116101845780637437681e116101535780637437681e1461043c578063751039fc146104665780638187f5161461047c5780638a8c523c146104a4576101f8565b80636ddd17131461039457806370a08231146103be578063715018a6146103fa578063728f8eea14610410576101f8565b8063313ce567116101c0578063313ce567146102c857806339509351146102f25780634ada218b1461032e5780634fbee19314610358576101f8565b806306fdde03146101fc578063095ea7b31461022657806318160ddd1461026257806323b872dd1461028c576101f8565b366101f857005b5f80fd5b348015610207575f80fd5b506102106107aa565b60405161021d9190611fd5565b60405180910390f35b348015610231575f80fd5b5061024c60048036038101906102479190612086565b61083a565b60405161025991906120de565b60405180910390f35b34801561026d575f80fd5b5061027661085c565b6040516102839190612106565b60405180910390f35b348015610297575f80fd5b506102b260048036038101906102ad919061211f565b610865565b6040516102bf91906120de565b60405180910390f35b3480156102d3575f80fd5b506102dc610893565b6040516102e9919061218a565b60405180910390f35b3480156102fd575f80fd5b5061031860048036038101906103139190612086565b61089b565b60405161032591906120de565b60405180910390f35b348015610339575f80fd5b506103426108d1565b60405161034f91906120de565b60405180910390f35b348015610363575f80fd5b5061037e600480360381019061037991906121a3565b6108e4565b60405161038b91906120de565b60405180910390f35b34801561039f575f80fd5b506103a8610901565b6040516103b591906120de565b60405180910390f35b3480156103c9575f80fd5b506103e460048036038101906103df91906121a3565b610914565b6040516103f19190612106565b60405180910390f35b348015610405575f80fd5b5061040e610959565b005b34801561041b575f80fd5b5061042461096c565b604051610433939291906121ce565b60405180910390f35b348015610447575f80fd5b50610450610983565b60405161045d9190612106565b60405180910390f35b348015610471575f80fd5b5061047a610989565b005b348015610487575f80fd5b506104a2600480360381019061049d91906121a3565b6109b9565b005b3480156104af575f80fd5b506104b8610a04565b005b3480156104c5575f80fd5b506104e060048036038101906104db9190612086565b610a9e565b005b3480156104ed575f80fd5b506104f6610bd3565b6040516105039190612212565b60405180910390f35b348015610517575f80fd5b50610520610bfb565b60405161052d9190611fd5565b60405180910390f35b348015610541575f80fd5b5061055c6004803603810190610557919061222b565b610c8b565b005b348015610569575f80fd5b50610584600480360381019061057f9190612086565b610d67565b60405161059191906120de565b60405180910390f35b3480156105a5575f80fd5b506105ae610ddc565b6040516105bb9190612212565b60405180910390f35b3480156105cf575f80fd5b506105ea60048036038101906105e59190612086565b610e01565b6040516105f791906120de565b60405180910390f35b34801561060b575f80fd5b5061062660048036038101906106219190612280565b610e23565b005b348015610633575f80fd5b5061064e6004803603810190610649919061222b565b610e83565b005b34801561065b575f80fd5b50610676600480360381019061067191906122be565b610e95565b005b348015610683575f80fd5b5061068c610eaf565b6040516106999190612106565b60405180910390f35b3480156106ad575f80fd5b506106c860048036038101906106c391906122fc565b610eb5565b6040516106d59190612106565b60405180910390f35b3480156106e9575f80fd5b5061070460048036038101906106ff919061233a565b610f37565b005b348015610711575f80fd5b5061072c60048036038101906107279190612365565b610f5c565b005b348015610739575f80fd5b50610754600480360381019061074f91906121a3565b610fa5565b005b348015610761575f80fd5b5061076a611027565b6040516107779190612410565b60405180910390f35b34801561078b575f80fd5b5061079461104c565b6040516107a19190612106565b60405180910390f35b6060600380546107b990612456565b80601f01602080910402602001604051908101604052809291908181526020018280546107e590612456565b80156108305780601f1061080757610100808354040283529160200191610830565b820191905f5260205f20905b81548152906001019060200180831161081357829003601f168201915b5050505050905090565b5f80610844611052565b9050610851818585611059565b600191505092915050565b5f600254905090565b5f8061086f611052565b905061087c85828561121c565b6108878585856112a7565b60019150509392505050565b5f6012905090565b5f806108a5611052565b90506108c68185856108b78589610eb5565b6108c191906124b3565b611059565b600191505092915050565b600860169054906101000a900460ff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b600860159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109616117c8565b61096a5f611846565b565b600f805f0154908060010154908060020154905083565b600b5481565b6109916117c8565b61099961085c565b600b819055506109a761085c565b600a819055505f600f60020181905550565b6109c16117c8565b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a0c6117c8565b600860169054906101000a900460ff1615610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390612530565b60405180910390fd5b6001600860166101000a81548160ff0219169083151502179055506001600860156101000a81548160ff0219169083151502179055505f600f60020181905550565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490612598565b60405180910390fd5b5f8190508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610b8d9291906125b6565b6020604051808303815f875af1158015610ba9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bcd91906125f1565b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610c0a90612456565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3690612456565b8015610c815780601f10610c5857610100808354040283529160200191610c81565b820191905f5260205f20905b815481529060010190602001808311610c6457829003601f168201915b5050505050905090565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612598565b60405180910390fd5b610d6481600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661190990919063ffffffff16565b50565b5f80610d71611052565b90505f610d7e8286610eb5565b905083811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba9061268c565b60405180910390fd5b610dd08286868403611059565b60019250505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80610e0b611052565b9050610e188185856112a7565b600191505092915050565b610e2b6117c8565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610e8b6117c8565b80600c8190555050565b610e9d6117c8565b81600b8190555080600a819055505050565b60095481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610f3f6117c8565b80600860156101000a81548160ff02191690831515021790555050565b610f646117c8565b604051806060016040528084815260200183815260200182815250600f5f820151815f01556020820151816001015560408201518160020155905050505050565b610fad6117c8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361101b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110129061271a565b60405180910390fd5b61102481611846565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be906127a8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112c90612836565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161120f9190612106565b60405180910390a3505050565b5f6112278484610eb5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112a15781811015611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a9061289e565b60405180910390fd5b6112a08484848403611059565b5b50505050565b5f8110156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e19061292c565b60405180910390fd5b600860149054906101000a900460ff168061134b575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b8061139c575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156113b1576113ac8383836119f9565b6117c3565b600860169054906101000a900460ff16611400576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f790612994565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149a57600b54811115611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906129fc565b60405180910390fd5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461154757600a54816114fb84610914565b61150591906124b3565b1115611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90612a64565b60405180910390fd5b5b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c0576064600f60010154836115af9190612a82565b6115b99190612af0565b9050611708565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611637576064600f5f0154836116269190612a82565b6116309190612af0565b9050611707565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156116e1575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611706576064600f60020154836116f99190612a82565b6117039190612af0565b90505b5b5b600860159054906101000a900460ff168015611770575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80156117895750600860149054906101000a900460ff16155b1561179757611796611c65565b5b6117ad848483856117a89190612b20565b6119f9565b5f8111156117c1576117c08430836119f9565b5b505b505050565b6117d0611052565b73ffffffffffffffffffffffffffffffffffffffff166117ee610bd3565b73ffffffffffffffffffffffffffffffffffffffff1614611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90612b9d565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8047101561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390612c05565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161197190612c50565b5f6040518083038185875af1925050503d805f81146119ab576040519150601f19603f3d011682016040523d82523d5f602084013e6119b0565b606091505b50509050806119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612cd4565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612d62565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc90612df0565b60405180910390fd5b611ae0838383611d37565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90612e7e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c4c9190612106565b60405180910390a3611c5f848484611d3c565b50505050565b600860149054906101000a900460ff16611d35576001600860146101000a81548160ff0219169083151502179055505f611c9e30610914565b9050600c548110611d19575f600c5490505f479050611cbc82611d41565b5f8147611cc99190612b20565b9050611d1581600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661190990919063ffffffff16565b5050505b505f600860146101000a81548160ff0219169083151502179055505b565b505050565b505050565b5f600267ffffffffffffffff811115611d5d57611d5c612e9c565b5b604051908082528060200260200182016040528015611d8b5781602001602082028036833780820191505090505b50905030815f81518110611da257611da1612ec9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6a9190612f0a565b81600181518110611e7e57611e7d612ec9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401611f1a959493929190613025565b5f604051808303815f87803b158015611f31575f80fd5b505af1158015611f43573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611f82578082015181840152602081019050611f67565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611fa782611f4b565b611fb18185611f55565b9350611fc1818560208601611f65565b611fca81611f8d565b840191505092915050565b5f6020820190508181035f830152611fed8184611f9d565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61202282611ff9565b9050919050565b61203281612018565b811461203c575f80fd5b50565b5f8135905061204d81612029565b92915050565b5f819050919050565b61206581612053565b811461206f575f80fd5b50565b5f813590506120808161205c565b92915050565b5f806040838503121561209c5761209b611ff5565b5b5f6120a98582860161203f565b92505060206120ba85828601612072565b9150509250929050565b5f8115159050919050565b6120d8816120c4565b82525050565b5f6020820190506120f15f8301846120cf565b92915050565b61210081612053565b82525050565b5f6020820190506121195f8301846120f7565b92915050565b5f805f6060848603121561213657612135611ff5565b5b5f6121438682870161203f565b93505060206121548682870161203f565b925050604061216586828701612072565b9150509250925092565b5f60ff82169050919050565b6121848161216f565b82525050565b5f60208201905061219d5f83018461217b565b92915050565b5f602082840312156121b8576121b7611ff5565b5b5f6121c58482850161203f565b91505092915050565b5f6060820190506121e15f8301866120f7565b6121ee60208301856120f7565b6121fb60408301846120f7565b949350505050565b61220c81612018565b82525050565b5f6020820190506122255f830184612203565b92915050565b5f602082840312156122405761223f611ff5565b5b5f61224d84828501612072565b91505092915050565b61225f816120c4565b8114612269575f80fd5b50565b5f8135905061227a81612256565b92915050565b5f806040838503121561229657612295611ff5565b5b5f6122a38582860161203f565b92505060206122b48582860161226c565b9150509250929050565b5f80604083850312156122d4576122d3611ff5565b5b5f6122e185828601612072565b92505060206122f285828601612072565b9150509250929050565b5f806040838503121561231257612311611ff5565b5b5f61231f8582860161203f565b92505060206123308582860161203f565b9150509250929050565b5f6020828403121561234f5761234e611ff5565b5b5f61235c8482850161226c565b91505092915050565b5f805f6060848603121561237c5761237b611ff5565b5b5f61238986828701612072565b935050602061239a86828701612072565b92505060406123ab86828701612072565b9150509250925092565b5f819050919050565b5f6123d86123d36123ce84611ff9565b6123b5565b611ff9565b9050919050565b5f6123e9826123be565b9050919050565b5f6123fa826123df565b9050919050565b61240a816123f0565b82525050565b5f6020820190506124235f830184612401565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061246d57607f821691505b6020821081036124805761247f612429565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6124bd82612053565b91506124c883612053565b92508282019050808211156124e0576124df612486565b5b92915050565b7f416c726561647920656e61626c656400000000000000000000000000000000005f82015250565b5f61251a600f83611f55565b9150612525826124e6565b602082019050919050565b5f6020820190508181035f8301526125478161250e565b9050919050565b7f52657175697265207461782077616c6c65742e000000000000000000000000005f82015250565b5f612582601383611f55565b915061258d8261254e565b602082019050919050565b5f6020820190508181035f8301526125af81612576565b9050919050565b5f6040820190506125c95f830185612203565b6125d660208301846120f7565b9392505050565b5f815190506125eb81612256565b92915050565b5f6020828403121561260657612605611ff5565b5b5f612613848285016125dd565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612676602583611f55565b91506126818261261c565b604082019050919050565b5f6020820190508181035f8301526126a38161266a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612704602683611f55565b915061270f826126aa565b604082019050919050565b5f6020820190508181035f830152612731816126f8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612792602483611f55565b915061279d82612738565b604082019050919050565b5f6020820190508181035f8301526127bf81612786565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612820602283611f55565b915061282b826127c6565b604082019050919050565b5f6020820190508181035f83015261284d81612814565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612888601d83611f55565b915061289382612854565b602082019050919050565b5f6020820190508181035f8301526128b58161287c565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f6f7220657175616c207468616e207a65726f0000000000000000000000000000602082015250565b5f612916603283611f55565b9150612921826128bc565b604082019050919050565b5f6020820190508181035f8301526129438161290a565b9050919050565b7f54726164696e67206e6f7420656e61626c6564000000000000000000000000005f82015250565b5f61297e601383611f55565b91506129898261294a565b602082019050919050565b5f6020820190508181035f8301526129ab81612972565b9050919050565b7f4d61785478206c696d69742065786365656465640000000000000000000000005f82015250565b5f6129e6601483611f55565b91506129f1826129b2565b602082019050919050565b5f6020820190508181035f830152612a13816129da565b9050919050565b7f57616c6c6574206c696d697420657863656564656400000000000000000000005f82015250565b5f612a4e601583611f55565b9150612a5982612a1a565b602082019050919050565b5f6020820190508181035f830152612a7b81612a42565b9050919050565b5f612a8c82612053565b9150612a9783612053565b9250828202612aa581612053565b91508282048414831517612abc57612abb612486565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612afa82612053565b9150612b0583612053565b925082612b1557612b14612ac3565b5b828204905092915050565b5f612b2a82612053565b9150612b3583612053565b9250828203905081811115612b4d57612b4c612486565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b87602083611f55565b9150612b9282612b53565b602082019050919050565b5f6020820190508181035f830152612bb481612b7b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f612bef601d83611f55565b9150612bfa82612bbb565b602082019050919050565b5f6020820190508181035f830152612c1c81612be3565b9050919050565b5f81905092915050565b50565b5f612c3b5f83612c23565b9150612c4682612c2d565b5f82019050919050565b5f612c5a82612c30565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f612cbe603a83611f55565b9150612cc982612c64565b604082019050919050565b5f6020820190508181035f830152612ceb81612cb2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612d4c602583611f55565b9150612d5782612cf2565b604082019050919050565b5f6020820190508181035f830152612d7981612d40565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612dda602383611f55565b9150612de582612d80565b604082019050919050565b5f6020820190508181035f830152612e0781612dce565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612e68602683611f55565b9150612e7382612e0e565b604082019050919050565b5f6020820190508181035f830152612e9581612e5c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612f0481612029565b92915050565b5f60208284031215612f1f57612f1e611ff5565b5b5f612f2c84828501612ef6565b91505092915050565b5f819050919050565b5f612f58612f53612f4e84612f35565b6123b5565b612053565b9050919050565b612f6881612f3e565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612fa081612018565b82525050565b5f612fb18383612f97565b60208301905092915050565b5f602082019050919050565b5f612fd382612f6e565b612fdd8185612f78565b9350612fe883612f88565b805f5b83811015613018578151612fff8882612fa6565b975061300a83612fbd565b925050600181019050612feb565b5085935050505092915050565b5f60a0820190506130385f8301886120f7565b6130456020830187612f5f565b81810360408301526130578186612fc9565b90506130666060830185612203565b61307360808301846120f7565b969550505050505056fea2646970667358221220f390b2767a97f9ae45834f8de6f059d66efb2696f95ef07a5de1927fc7d47d6564736f6c63430008160033

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.