ETH Price: $2,877.20 (-10.16%)
Gas: 10 Gwei

Token

Spirit (Spirit)
 

Overview

Max Total Supply

20,000,000 Spirit

Holders

2,248

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x6565b006...F650BD630
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Spirit

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 10 : Spirit.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.9;

import "./base/SwapV2.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";


contract Spirit is ERC20, SwapV2{

    address public receiver;

    constructor(string memory name_, string memory symbol_, uint total, address to) ERC20(name_, symbol_) {
        super._mint(to, total * (10 ** decimals()));
        receiver = to;
    }

    function setReceiver(address account) external onlyOwner {
        receiver = account;
    } 

    function _transfer(address from, address to, uint256 amount) internal override{
        if (!pairs[to]) {
            super._transfer(from, to, amount);
            return;
        }
        (bool isAdd,bool isDel) = _isLiquidity(from, to);
        if (isAdd || isDel) {
            super._transfer(from, to, amount);
            return;
        }
        super._transfer(from, receiver, (amount / 20));
        super._transfer(from, to, amount - (amount / 20));
    }
    
}

File 2 of 10 : SwapV2.sol
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.0;

import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract SwapV2 is Ownable {

    mapping(address => bool) public pairs;

    function setPairs(address[] calldata addr, uint pairs_) external onlyOwner() {
        for (uint i; i < addr.length; i++) {
            pairs[addr[i]] = (pairs_ != 0);
        }
    }

    function _isLiquidity(address from, address to) internal view returns(bool isAdd,bool isDel){
        address pair;
        if (pairs[from]) pair = from;
        if (pairs[to]) pair = to;
        if (pair == address(0)) return (false, false);

        address token0 = IUniswapV2Pair(pair).token0();
        address token1 = IUniswapV2Pair(pair).token1();
        address usdtAddr; uint usdtNum;
        (uint r0, uint r1,) = IUniswapV2Pair(pair).getReserves();
        if(token0 != address(this)){
            usdtNum = r0;
            usdtAddr = token0;
        }
        if(token1 != address(this)){
          usdtNum = r1;
          usdtAddr = token1;
        }
        uint usdtNumNew = IERC20(usdtAddr).balanceOf(pair);
        isAdd = pairs[to] && usdtNumNew > usdtNum;
        isDel = pairs[from] && usdtNumNew < usdtNum;
    }

}

File 3 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 4 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 5 of 10 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 6 of 10 : 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 7 of 10 : 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 8 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 9 of 10 : 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 10 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint256","name":"pairs_","type":"uint256"}],"name":"setPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setReceiver","outputs":[],"stateMutability":"nonpayable","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"}]

608060405234801562000010575f80fd5b5060405162002b9138038062002b91833981810160405281019062000036919062000563565b838381600390816200004991906200083e565b5080600490816200005b91906200083e565b5050506200007e620000726200010460201b60201c565b6200010b60201b60201c565b620000ba8162000093620001ce60201b60201c565b600a620000a1919062000aab565b84620000ae919062000afb565b620001d660201b60201c565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000c29565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000247576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023e9062000ba3565b60405180910390fd5b6200025a5f83836200033b60201b60201c565b8060025f8282546200026d919062000bc3565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031c919062000c0e565b60405180910390a3620003375f83836200034060201b60201c565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620003a6826200035e565b810181811067ffffffffffffffff82111715620003c857620003c76200036e565b5b80604052505050565b5f620003dc62000345565b9050620003ea82826200039b565b919050565b5f67ffffffffffffffff8211156200040c576200040b6200036e565b5b62000417826200035e565b9050602081019050919050565b5f5b838110156200044357808201518184015260208101905062000426565b5f8484015250505050565b5f620004646200045e84620003ef565b620003d1565b9050828152602081018484840111156200048357620004826200035a565b5b6200049084828562000424565b509392505050565b5f82601f830112620004af57620004ae62000356565b5b8151620004c18482602086016200044e565b91505092915050565b5f819050919050565b620004de81620004ca565b8114620004e9575f80fd5b50565b5f81519050620004fc81620004d3565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200052d8262000502565b9050919050565b6200053f8162000521565b81146200054a575f80fd5b50565b5f815190506200055d8162000534565b92915050565b5f805f80608085870312156200057e576200057d6200034e565b5b5f85015167ffffffffffffffff8111156200059e576200059d62000352565b5b620005ac8782880162000498565b945050602085015167ffffffffffffffff811115620005d057620005cf62000352565b5b620005de8782880162000498565b9350506040620005f187828801620004ec565b925050606062000604878288016200054d565b91505092959194509250565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200065f57607f821691505b6020821081036200067557620006746200061a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200069c565b620006e586836200069c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000726620007206200071a84620004ca565b620006fd565b620004ca565b9050919050565b5f819050919050565b620007418362000706565b6200075962000750826200072d565b848454620006a8565b825550505050565b5f90565b6200076f62000761565b6200077c81848462000736565b505050565b5b81811015620007a357620007975f8262000765565b60018101905062000782565b5050565b601f821115620007f257620007bc816200067b565b620007c7846200068d565b81016020851015620007d7578190505b620007ef620007e6856200068d565b83018262000781565b50505b505050565b5f82821c905092915050565b5f620008145f1984600802620007f7565b1980831691505092915050565b5f6200082e838362000803565b9150826002028217905092915050565b620008498262000610565b67ffffffffffffffff8111156200086557620008646200036e565b5b62000871825462000647565b6200087e828285620007a7565b5f60209050601f831160018114620008b4575f84156200089f578287015190505b620008ab858262000821565b8655506200091a565b601f198416620008c4866200067b565b5f5b82811015620008ed57848901518255600182019150602085019450602081019050620008c6565b868310156200090d578489015162000909601f89168262000803565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620009ac5780860481111562000984576200098362000922565b5b6001851615620009945780820291505b8081029050620009a4856200094f565b945062000964565b94509492505050565b5f82620009c6576001905062000a98565b81620009d5575f905062000a98565b8160018114620009ee5760028114620009f95762000a2f565b600191505062000a98565b60ff84111562000a0e5762000a0d62000922565b5b8360020a91508482111562000a285762000a2762000922565b5b5062000a98565b5060208310610133831016604e8410600b841016171562000a695782820a90508381111562000a635762000a6262000922565b5b62000a98565b62000a7884848460016200095b565b9250905081840481111562000a925762000a9162000922565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000ab782620004ca565b915062000ac48362000a9f565b925062000af37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009b5565b905092915050565b5f62000b0782620004ca565b915062000b1483620004ca565b925082820262000b2481620004ca565b9150828204841483151762000b3e5762000b3d62000922565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000b8b601f8362000b45565b915062000b988262000b55565b602082019050919050565b5f6020820190508181035f83015262000bbc8162000b7d565b9050919050565b5f62000bcf82620004ca565b915062000bdc83620004ca565b925082820190508082111562000bf75762000bf662000922565b5b92915050565b62000c0881620004ca565b82525050565b5f60208201905062000c235f83018462000bfd565b92915050565b611f5a8062000c375f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c8063718da7ee116100a0578063a9059cbb1161006f578063a9059cbb146102e0578063dd62ed3e14610310578063f2fde38b14610340578063f7260d3e1461035c578063fe33b3021461037a57610114565b8063718da7ee146102585780638da5cb5b1461027457806395d89b4114610292578063a457c2d7146102b057610114565b806323b872dd116100e757806323b872dd146101a0578063313ce567146101d057806339509351146101ee57806370a082311461021e578063715018a61461024e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd146101665780631dca048b14610184575b5f80fd5b6101206103aa565b60405161012d9190611446565b60405180910390f35b610150600480360381019061014b91906114fb565b61043a565b60405161015d9190611553565b60405180910390f35b61016e61045c565b60405161017b919061157b565b60405180910390f35b61019e600480360381019061019991906115f5565b610465565b005b6101ba60048036038101906101b59190611652565b610511565b6040516101c79190611553565b60405180910390f35b6101d861053f565b6040516101e591906116bd565b60405180910390f35b610208600480360381019061020391906114fb565b610547565b6040516102159190611553565b60405180910390f35b610238600480360381019061023391906116d6565b61057d565b604051610245919061157b565b60405180910390f35b6102566105c2565b005b610272600480360381019061026d91906116d6565b6105d5565b005b61027c610620565b6040516102899190611710565b60405180910390f35b61029a610648565b6040516102a79190611446565b60405180910390f35b6102ca60048036038101906102c591906114fb565b6106d8565b6040516102d79190611553565b60405180910390f35b6102fa60048036038101906102f591906114fb565b61074d565b6040516103079190611553565b60405180910390f35b61032a60048036038101906103259190611729565b61076f565b604051610337919061157b565b60405180910390f35b61035a600480360381019061035591906116d6565b6107f1565b005b610364610873565b6040516103719190611710565b60405180910390f35b610394600480360381019061038f91906116d6565b610898565b6040516103a19190611553565b60405180910390f35b6060600380546103b990611794565b80601f01602080910402602001604051908101604052809291908181526020018280546103e590611794565b80156104305780601f1061040757610100808354040283529160200191610430565b820191905f5260205f20905b81548152906001019060200180831161041357829003601f168201915b5050505050905090565b5f806104446108b5565b90506104518185856108bc565b600191505092915050565b5f600254905090565b61046d610a7f565b5f5b8383905081101561050b575f82141560065f868685818110610494576104936117c4565b5b90506020020160208101906104a991906116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806105039061181e565b91505061046f565b50505050565b5f8061051b6108b5565b9050610528858285610afd565b610533858585610b88565b60019150509392505050565b5f6012905090565b5f806105516108b5565b9050610572818585610563858961076f565b61056d9190611865565b6108bc565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105ca610a7f565b6105d35f610c78565b565b6105dd610a7f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065790611794565b80601f016020809104026020016040519081016040528092919081815260200182805461068390611794565b80156106ce5780601f106106a5576101008083540402835291602001916106ce565b820191905f5260205f20905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b5f806106e26108b5565b90505f6106ef828661076f565b905083811015610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b90611908565b60405180910390fd5b61074182868684036108bc565b60019250505092915050565b5f806107576108b5565b9050610764818585610b88565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107f9610a7f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e90611996565b60405180910390fd5b61087081610c78565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190611a24565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90611ab2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a72919061157b565b60405180910390a3505050565b610a876108b5565b73ffffffffffffffffffffffffffffffffffffffff16610aa5610620565b73ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290611b1a565b60405180910390fd5b565b5f610b08848461076f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b825781811015610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90611b82565b60405180910390fd5b610b8184848484036108bc565b5b50505050565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610be657610be1838383610d3b565b610c73565b5f80610bf28585610fa7565b915091508180610bff5750805b15610c1657610c0f858585610d3b565b5050610c73565b610c4e8560075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601486610c499190611bcd565b610d3b565b610c708585601486610c609190611bcd565b86610c6b9190611bfd565b610d3b565b50505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611ca0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90611d2e565b60405180910390fd5b610e228383836113b2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90611dbc565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8e919061157b565b60405180910390a3610fa18484846113b7565b50505050565b5f805f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610ffd578490505b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611050578390505b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361108f575f8092509250506113ab565b5f8173ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fd9190611dee565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611149573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116d9190611dee565b90505f805f808673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156111bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e09190611e95565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161461123f578192508593505b3073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611279578092508493505b5f8473ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b81526004016112b39190611710565b602060405180830381865afa1580156112ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f29190611ef9565b905060065f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561134957508381115b995060065f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156113a057508381105b985050505050505050505b9250929050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113f35780820151818401526020810190506113d8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611418826113bc565b61142281856113c6565b93506114328185602086016113d6565b61143b816113fe565b840191505092915050565b5f6020820190508181035f83015261145e818461140e565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114978261146e565b9050919050565b6114a78161148d565b81146114b1575f80fd5b50565b5f813590506114c28161149e565b92915050565b5f819050919050565b6114da816114c8565b81146114e4575f80fd5b50565b5f813590506114f5816114d1565b92915050565b5f806040838503121561151157611510611466565b5b5f61151e858286016114b4565b925050602061152f858286016114e7565b9150509250929050565b5f8115159050919050565b61154d81611539565b82525050565b5f6020820190506115665f830184611544565b92915050565b611575816114c8565b82525050565b5f60208201905061158e5f83018461156c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126115b5576115b4611594565b5b8235905067ffffffffffffffff8111156115d2576115d1611598565b5b6020830191508360208202830111156115ee576115ed61159c565b5b9250929050565b5f805f6040848603121561160c5761160b611466565b5b5f84013567ffffffffffffffff8111156116295761162861146a565b5b611635868287016115a0565b93509350506020611648868287016114e7565b9150509250925092565b5f805f6060848603121561166957611668611466565b5b5f611676868287016114b4565b9350506020611687868287016114b4565b9250506040611698868287016114e7565b9150509250925092565b5f60ff82169050919050565b6116b7816116a2565b82525050565b5f6020820190506116d05f8301846116ae565b92915050565b5f602082840312156116eb576116ea611466565b5b5f6116f8848285016114b4565b91505092915050565b61170a8161148d565b82525050565b5f6020820190506117235f830184611701565b92915050565b5f806040838503121561173f5761173e611466565b5b5f61174c858286016114b4565b925050602061175d858286016114b4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117ab57607f821691505b6020821081036117be576117bd611767565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611828826114c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361185a576118596117f1565b5b600182019050919050565b5f61186f826114c8565b915061187a836114c8565b9250828201905080821115611892576118916117f1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118f26025836113c6565b91506118fd82611898565b604082019050919050565b5f6020820190508181035f83015261191f816118e6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119806026836113c6565b915061198b82611926565b604082019050919050565b5f6020820190508181035f8301526119ad81611974565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a0e6024836113c6565b9150611a19826119b4565b604082019050919050565b5f6020820190508181035f830152611a3b81611a02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a9c6022836113c6565b9150611aa782611a42565b604082019050919050565b5f6020820190508181035f830152611ac981611a90565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b046020836113c6565b9150611b0f82611ad0565b602082019050919050565b5f6020820190508181035f830152611b3181611af8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b6c601d836113c6565b9150611b7782611b38565b602082019050919050565b5f6020820190508181035f830152611b9981611b60565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611bd7826114c8565b9150611be2836114c8565b925082611bf257611bf1611ba0565b5b828204905092915050565b5f611c07826114c8565b9150611c12836114c8565b9250828203905081811115611c2a57611c296117f1565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c8a6025836113c6565b9150611c9582611c30565b604082019050919050565b5f6020820190508181035f830152611cb781611c7e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611d186023836113c6565b9150611d2382611cbe565b604082019050919050565b5f6020820190508181035f830152611d4581611d0c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611da66026836113c6565b9150611db182611d4c565b604082019050919050565b5f6020820190508181035f830152611dd381611d9a565b9050919050565b5f81519050611de88161149e565b92915050565b5f60208284031215611e0357611e02611466565b5b5f611e1084828501611dda565b91505092915050565b5f6dffffffffffffffffffffffffffff82169050919050565b611e3b81611e19565b8114611e45575f80fd5b50565b5f81519050611e5681611e32565b92915050565b5f63ffffffff82169050919050565b611e7481611e5c565b8114611e7e575f80fd5b50565b5f81519050611e8f81611e6b565b92915050565b5f805f60608486031215611eac57611eab611466565b5b5f611eb986828701611e48565b9350506020611eca86828701611e48565b9250506040611edb86828701611e81565b9150509250925092565b5f81519050611ef3816114d1565b92915050565b5f60208284031215611f0e57611f0d611466565b5b5f611f1b84828501611ee5565b9150509291505056fea2646970667358221220daeb531a6885337eba0cfed6a6d98e8a1bba273aa364024dd93166be51d6271864736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000001312d000000000000000000000000005b0891a8770fb99f3a317203026e07b67916e6180000000000000000000000000000000000000000000000000000000000000006537069726974000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065370697269740000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c8063718da7ee116100a0578063a9059cbb1161006f578063a9059cbb146102e0578063dd62ed3e14610310578063f2fde38b14610340578063f7260d3e1461035c578063fe33b3021461037a57610114565b8063718da7ee146102585780638da5cb5b1461027457806395d89b4114610292578063a457c2d7146102b057610114565b806323b872dd116100e757806323b872dd146101a0578063313ce567146101d057806339509351146101ee57806370a082311461021e578063715018a61461024e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd146101665780631dca048b14610184575b5f80fd5b6101206103aa565b60405161012d9190611446565b60405180910390f35b610150600480360381019061014b91906114fb565b61043a565b60405161015d9190611553565b60405180910390f35b61016e61045c565b60405161017b919061157b565b60405180910390f35b61019e600480360381019061019991906115f5565b610465565b005b6101ba60048036038101906101b59190611652565b610511565b6040516101c79190611553565b60405180910390f35b6101d861053f565b6040516101e591906116bd565b60405180910390f35b610208600480360381019061020391906114fb565b610547565b6040516102159190611553565b60405180910390f35b610238600480360381019061023391906116d6565b61057d565b604051610245919061157b565b60405180910390f35b6102566105c2565b005b610272600480360381019061026d91906116d6565b6105d5565b005b61027c610620565b6040516102899190611710565b60405180910390f35b61029a610648565b6040516102a79190611446565b60405180910390f35b6102ca60048036038101906102c591906114fb565b6106d8565b6040516102d79190611553565b60405180910390f35b6102fa60048036038101906102f591906114fb565b61074d565b6040516103079190611553565b60405180910390f35b61032a60048036038101906103259190611729565b61076f565b604051610337919061157b565b60405180910390f35b61035a600480360381019061035591906116d6565b6107f1565b005b610364610873565b6040516103719190611710565b60405180910390f35b610394600480360381019061038f91906116d6565b610898565b6040516103a19190611553565b60405180910390f35b6060600380546103b990611794565b80601f01602080910402602001604051908101604052809291908181526020018280546103e590611794565b80156104305780601f1061040757610100808354040283529160200191610430565b820191905f5260205f20905b81548152906001019060200180831161041357829003601f168201915b5050505050905090565b5f806104446108b5565b90506104518185856108bc565b600191505092915050565b5f600254905090565b61046d610a7f565b5f5b8383905081101561050b575f82141560065f868685818110610494576104936117c4565b5b90506020020160208101906104a991906116d6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806105039061181e565b91505061046f565b50505050565b5f8061051b6108b5565b9050610528858285610afd565b610533858585610b88565b60019150509392505050565b5f6012905090565b5f806105516108b5565b9050610572818585610563858961076f565b61056d9190611865565b6108bc565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105ca610a7f565b6105d35f610c78565b565b6105dd610a7f565b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461065790611794565b80601f016020809104026020016040519081016040528092919081815260200182805461068390611794565b80156106ce5780601f106106a5576101008083540402835291602001916106ce565b820191905f5260205f20905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b5f806106e26108b5565b90505f6106ef828661076f565b905083811015610734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072b90611908565b60405180910390fd5b61074182868684036108bc565b60019250505092915050565b5f806107576108b5565b9050610764818585610b88565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107f9610a7f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085e90611996565b60405180910390fd5b61087081610c78565b50565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092190611a24565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90611ab2565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a72919061157b565b60405180910390a3505050565b610a876108b5565b73ffffffffffffffffffffffffffffffffffffffff16610aa5610620565b73ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290611b1a565b60405180910390fd5b565b5f610b08848461076f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b825781811015610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90611b82565b60405180910390fd5b610b8184848484036108bc565b5b50505050565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610be657610be1838383610d3b565b610c73565b5f80610bf28585610fa7565b915091508180610bff5750805b15610c1657610c0f858585610d3b565b5050610c73565b610c4e8560075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601486610c499190611bcd565b610d3b565b610c708585601486610c609190611bcd565b86610c6b9190611bfd565b610d3b565b50505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da090611ca0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90611d2e565b60405180910390fd5b610e228383836113b2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90611dbc565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8e919061157b565b60405180910390a3610fa18484846113b7565b50505050565b5f805f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610ffd578490505b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611050578390505b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361108f575f8092509250506113ab565b5f8173ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fd9190611dee565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611149573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061116d9190611dee565b90505f805f808673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156111bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111e09190611e95565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161461123f578192508593505b3073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611279578092508493505b5f8473ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b81526004016112b39190611710565b602060405180830381865afa1580156112ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112f29190611ef9565b905060065f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561134957508381115b995060065f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156113a057508381105b985050505050505050505b9250929050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113f35780820151818401526020810190506113d8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611418826113bc565b61142281856113c6565b93506114328185602086016113d6565b61143b816113fe565b840191505092915050565b5f6020820190508181035f83015261145e818461140e565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114978261146e565b9050919050565b6114a78161148d565b81146114b1575f80fd5b50565b5f813590506114c28161149e565b92915050565b5f819050919050565b6114da816114c8565b81146114e4575f80fd5b50565b5f813590506114f5816114d1565b92915050565b5f806040838503121561151157611510611466565b5b5f61151e858286016114b4565b925050602061152f858286016114e7565b9150509250929050565b5f8115159050919050565b61154d81611539565b82525050565b5f6020820190506115665f830184611544565b92915050565b611575816114c8565b82525050565b5f60208201905061158e5f83018461156c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126115b5576115b4611594565b5b8235905067ffffffffffffffff8111156115d2576115d1611598565b5b6020830191508360208202830111156115ee576115ed61159c565b5b9250929050565b5f805f6040848603121561160c5761160b611466565b5b5f84013567ffffffffffffffff8111156116295761162861146a565b5b611635868287016115a0565b93509350506020611648868287016114e7565b9150509250925092565b5f805f6060848603121561166957611668611466565b5b5f611676868287016114b4565b9350506020611687868287016114b4565b9250506040611698868287016114e7565b9150509250925092565b5f60ff82169050919050565b6116b7816116a2565b82525050565b5f6020820190506116d05f8301846116ae565b92915050565b5f602082840312156116eb576116ea611466565b5b5f6116f8848285016114b4565b91505092915050565b61170a8161148d565b82525050565b5f6020820190506117235f830184611701565b92915050565b5f806040838503121561173f5761173e611466565b5b5f61174c858286016114b4565b925050602061175d858286016114b4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117ab57607f821691505b6020821081036117be576117bd611767565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611828826114c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361185a576118596117f1565b5b600182019050919050565b5f61186f826114c8565b915061187a836114c8565b9250828201905080821115611892576118916117f1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118f26025836113c6565b91506118fd82611898565b604082019050919050565b5f6020820190508181035f83015261191f816118e6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6119806026836113c6565b915061198b82611926565b604082019050919050565b5f6020820190508181035f8301526119ad81611974565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611a0e6024836113c6565b9150611a19826119b4565b604082019050919050565b5f6020820190508181035f830152611a3b81611a02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a9c6022836113c6565b9150611aa782611a42565b604082019050919050565b5f6020820190508181035f830152611ac981611a90565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b046020836113c6565b9150611b0f82611ad0565b602082019050919050565b5f6020820190508181035f830152611b3181611af8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b6c601d836113c6565b9150611b7782611b38565b602082019050919050565b5f6020820190508181035f830152611b9981611b60565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611bd7826114c8565b9150611be2836114c8565b925082611bf257611bf1611ba0565b5b828204905092915050565b5f611c07826114c8565b9150611c12836114c8565b9250828203905081811115611c2a57611c296117f1565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c8a6025836113c6565b9150611c9582611c30565b604082019050919050565b5f6020820190508181035f830152611cb781611c7e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611d186023836113c6565b9150611d2382611cbe565b604082019050919050565b5f6020820190508181035f830152611d4581611d0c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611da66026836113c6565b9150611db182611d4c565b604082019050919050565b5f6020820190508181035f830152611dd381611d9a565b9050919050565b5f81519050611de88161149e565b92915050565b5f60208284031215611e0357611e02611466565b5b5f611e1084828501611dda565b91505092915050565b5f6dffffffffffffffffffffffffffff82169050919050565b611e3b81611e19565b8114611e45575f80fd5b50565b5f81519050611e5681611e32565b92915050565b5f63ffffffff82169050919050565b611e7481611e5c565b8114611e7e575f80fd5b50565b5f81519050611e8f81611e6b565b92915050565b5f805f60608486031215611eac57611eab611466565b5b5f611eb986828701611e48565b9350506020611eca86828701611e48565b9250506040611edb86828701611e81565b9150509250925092565b5f81519050611ef3816114d1565b92915050565b5f60208284031215611f0e57611f0d611466565b5b5f611f1b84828501611ee5565b9150509291505056fea2646970667358221220daeb531a6885337eba0cfed6a6d98e8a1bba273aa364024dd93166be51d6271864736f6c63430008140033

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.